f903cf75bdc18fac39119cd44a0761f9ed2a8f88
[akkoma] / lib / mix / tasks / pleroma / database.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Mix.Tasks.Pleroma.Database do
6 alias Pleroma.Conversation
7 alias Pleroma.Hashtag
8 alias Pleroma.Maintenance
9 alias Pleroma.Object
10 alias Pleroma.Repo
11 alias Pleroma.User
12
13 require Logger
14 require Pleroma.Constants
15
16 import Ecto.Query
17 import Mix.Pleroma
18
19 use Mix.Task
20
21 @shortdoc "A collection of database related tasks"
22 @moduledoc File.read!("docs/administration/CLI_tasks/database.md")
23
24 def run(["remove_embedded_objects" | args]) do
25 {options, [], []} =
26 OptionParser.parse(
27 args,
28 strict: [
29 vacuum: :boolean
30 ]
31 )
32
33 start_pleroma()
34 Logger.info("Removing embedded objects")
35
36 Repo.query!(
37 "update activities set data = safe_jsonb_set(data, '{object}'::text[], data->'object'->'id') where data->'object'->>'id' is not null;",
38 [],
39 timeout: :infinity
40 )
41
42 if Keyword.get(options, :vacuum) do
43 Maintenance.vacuum("full")
44 end
45 end
46
47 def run(["bump_all_conversations"]) do
48 start_pleroma()
49 Conversation.bump_for_all_activities()
50 end
51
52 def run(["update_users_following_followers_counts"]) do
53 start_pleroma()
54
55 Repo.transaction(
56 fn ->
57 from(u in User, select: u)
58 |> Repo.stream()
59 |> Stream.each(&User.update_follower_count/1)
60 |> Stream.run()
61 end,
62 timeout: :infinity
63 )
64 end
65
66 def run(["prune_objects" | args]) do
67 {options, [], []} =
68 OptionParser.parse(
69 args,
70 strict: [
71 vacuum: :boolean
72 ]
73 )
74
75 start_pleroma()
76
77 deadline = Pleroma.Config.get([:instance, :remote_post_retention_days])
78
79 Logger.info("Pruning objects older than #{deadline} days")
80
81 time_deadline =
82 NaiveDateTime.utc_now()
83 |> NaiveDateTime.add(-(deadline * 86_400))
84
85 from(o in Object,
86 where:
87 fragment(
88 "?->'to' \\? ? OR ?->'cc' \\? ?",
89 o.data,
90 ^Pleroma.Constants.as_public(),
91 o.data,
92 ^Pleroma.Constants.as_public()
93 ),
94 where: o.inserted_at < ^time_deadline,
95 where:
96 fragment("split_part(?->>'actor', '/', 3) != ?", o.data, ^Pleroma.Web.Endpoint.host())
97 )
98 |> Repo.delete_all(timeout: :infinity)
99
100 if Keyword.get(options, :vacuum) do
101 Maintenance.vacuum("full")
102 end
103 end
104
105 def run(["fix_likes_collections"]) do
106 start_pleroma()
107
108 from(object in Object,
109 where: fragment("(?)->>'likes' is not null", object.data),
110 select: %{id: object.id, likes: fragment("(?)->>'likes'", object.data)}
111 )
112 |> Pleroma.Repo.chunk_stream(100, :batches)
113 |> Stream.each(fn objects ->
114 ids =
115 objects
116 |> Enum.filter(fn object -> object.likes |> Jason.decode!() |> is_map() end)
117 |> Enum.map(& &1.id)
118
119 Object
120 |> where([object], object.id in ^ids)
121 |> update([object],
122 set: [
123 data:
124 fragment(
125 "safe_jsonb_set(?, '{likes}', '[]'::jsonb, true)",
126 object.data
127 )
128 ]
129 )
130 |> Repo.update_all([], timeout: :infinity)
131 end)
132 |> Stream.run()
133 end
134
135 def run(["transfer_hashtags"]) do
136 import Ecto.Query
137
138 start_pleroma()
139
140 Logger.info("Starting transferring object embedded hashtags to `hashtags` table...")
141
142 from(
143 object in Object,
144 left_join: hashtag in assoc(object, :hashtags),
145 where: is_nil(hashtag.id),
146 where: fragment("(?)->>'tag' != '[]'", object.data),
147 select: %{
148 id: object.id,
149 tag: fragment("(?)->>'tag'", object.data)
150 }
151 )
152 |> Repo.chunk_stream(100, :batches, timeout: :infinity)
153 |> Stream.each(fn objects ->
154 Logger.info("Processing #{length(objects)} objects starting from id #{hd(objects).id}...")
155
156 Enum.map(
157 objects,
158 fn object ->
159 hashtags =
160 object.tag
161 |> Jason.decode!()
162 |> Enum.filter(&is_bitstring(&1))
163
164 Repo.transaction(fn ->
165 with {:ok, hashtag_records} <- Hashtag.get_or_create_by_names(hashtags) do
166 for hashtag_record <- hashtag_records do
167 with {:ok, _} <-
168 Repo.query(
169 "insert into hashtags_objects(hashtag_id, object_id) values ($1, $2);",
170 [hashtag_record.id, object.id]
171 ) do
172 :noop
173 else
174 {:error, e} ->
175 error =
176 "ERROR: could not link object #{object.id} and hashtag " <>
177 "#{hashtag_record.id}: #{inspect(e)}"
178
179 Logger.error(error)
180 Repo.rollback(error)
181 end
182 end
183 else
184 e ->
185 error = "ERROR: could not create hashtags for object #{object.id}: #{inspect(e)}"
186 Logger.error(error)
187 Repo.rollback(error)
188 end
189 end)
190 end
191 )
192 end)
193 |> Stream.run()
194
195 Logger.info("Done transferring hashtags. Please check logs to ensure no errors.")
196 end
197
198 def run(["vacuum", args]) do
199 start_pleroma()
200
201 Maintenance.vacuum(args)
202 end
203
204 def run(["ensure_expiration"]) do
205 start_pleroma()
206 days = Pleroma.Config.get([:mrf_activity_expiration, :days], 365)
207
208 Pleroma.Activity
209 |> join(:inner, [a], o in Object,
210 on:
211 fragment(
212 "(?->>'id') = COALESCE((?)->'object'->> 'id', (?)->>'object')",
213 o.data,
214 a.data,
215 a.data
216 )
217 )
218 |> where(local: true)
219 |> where([a], fragment("(? ->> 'type'::text) = 'Create'", a.data))
220 |> where([_a, o], fragment("?->>'type' = 'Note'", o.data))
221 |> Pleroma.Repo.chunk_stream(100, :batches)
222 |> Stream.each(fn activities ->
223 Enum.each(activities, fn activity ->
224 expires_at =
225 activity.inserted_at
226 |> DateTime.from_naive!("Etc/UTC")
227 |> Timex.shift(days: days)
228
229 Pleroma.Workers.PurgeExpiredActivity.enqueue(%{
230 activity_id: activity.id,
231 expires_at: expires_at
232 })
233 end)
234 end)
235 |> Stream.run()
236 end
237 end