918752dc28c7c93d3ff8076118a62d1f98407422
[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 # Note: most objects have Mention-type AS2 tags and no hashtags (but we can't filter them out)
143 from(
144 object in Object,
145 left_join: hashtag in assoc(object, :hashtags),
146 where: is_nil(hashtag.id),
147 where: fragment("(?)->>'tag' != '[]'", object.data),
148 select: %{
149 id: object.id,
150 tag: fragment("(?)->>'tag'", object.data)
151 }
152 )
153 |> Repo.chunk_stream(100, :batches, timeout: :infinity)
154 |> Stream.each(fn objects ->
155 Logger.info("Processing #{length(objects)} objects starting from id #{hd(objects).id}...")
156
157 failed_ids =
158 objects
159 |> Enum.map(fn object ->
160 hashtags = Object.object_data_hashtags(%{"tag" => Jason.decode!(object.tag)})
161
162 Repo.transaction(fn ->
163 with {:ok, hashtag_records} <- Hashtag.get_or_create_by_names(hashtags) do
164 for hashtag_record <- hashtag_records do
165 with {:ok, _} <-
166 Repo.query(
167 "insert into hashtags_objects(hashtag_id, object_id) values ($1, $2);",
168 [hashtag_record.id, object.id]
169 ) do
170 nil
171 else
172 {:error, e} ->
173 error =
174 "ERROR: could not link object #{object.id} and hashtag " <>
175 "#{hashtag_record.id}: #{inspect(e)}"
176
177 Logger.error(error)
178 Repo.rollback(object.id)
179 end
180 end
181
182 object.id
183 else
184 e ->
185 error = "ERROR: could not create hashtags for object #{object.id}: #{inspect(e)}"
186 Logger.error(error)
187 Repo.rollback(object.id)
188 end
189 end)
190 end)
191 |> Enum.filter(&(elem(&1, 0) == :error))
192 |> Enum.map(&elem(&1, 1))
193
194 if Enum.any?(failed_ids) do
195 Logger.error("ERROR: transfer_hashtags iteration failed for ids: #{inspect(failed_ids)}")
196 end
197 end)
198 |> Stream.run()
199
200 Logger.info("Done transferring hashtags. Please check logs to ensure no errors.")
201 end
202
203 def run(["vacuum", args]) do
204 start_pleroma()
205
206 Maintenance.vacuum(args)
207 end
208
209 def run(["ensure_expiration"]) do
210 start_pleroma()
211 days = Pleroma.Config.get([:mrf_activity_expiration, :days], 365)
212
213 Pleroma.Activity
214 |> join(:inner, [a], o in Object,
215 on:
216 fragment(
217 "(?->>'id') = COALESCE((?)->'object'->> 'id', (?)->>'object')",
218 o.data,
219 a.data,
220 a.data
221 )
222 )
223 |> where(local: true)
224 |> where([a], fragment("(? ->> 'type'::text) = 'Create'", a.data))
225 |> where([_a, o], fragment("?->>'type' = 'Note'", o.data))
226 |> Pleroma.Repo.chunk_stream(100, :batches)
227 |> Stream.each(fn activities ->
228 Enum.each(activities, fn activity ->
229 expires_at =
230 activity.inserted_at
231 |> DateTime.from_naive!("Etc/UTC")
232 |> Timex.shift(days: days)
233
234 Pleroma.Workers.PurgeExpiredActivity.enqueue(%{
235 activity_id: activity.id,
236 expires_at: expires_at
237 })
238 end)
239 end)
240 |> Stream.run()
241 end
242 end