Merge remote-tracking branch 'remotes/origin/develop' into feature/object-hashtags...
[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 from(
141 object in Object,
142 left_join: hashtag in assoc(object, :hashtags),
143 where: is_nil(hashtag.id),
144 where: fragment("(?)->>'tag' != '[]'", object.data),
145 select: %{
146 id: object.id,
147 inserted_at: object.inserted_at,
148 tag: fragment("(?)->>'tag'", object.data)
149 },
150 order_by: [desc: object.id]
151 )
152 |> Pleroma.Repo.chunk_stream(100, :batches)
153 |> Stream.each(fn objects ->
154 chunk_start = List.first(objects)
155 chunk_end = List.last(objects)
156
157 Logger.info(
158 "transfer_hashtags: " <>
159 "#{chunk_start.id} (#{chunk_start.inserted_at}) -- " <>
160 "#{chunk_end.id} (#{chunk_end.inserted_at})"
161 )
162
163 Enum.map(
164 objects,
165 fn object ->
166 hashtags =
167 object.tag
168 |> Jason.decode!()
169 |> Enum.filter(&is_bitstring(&1))
170
171 with {:ok, hashtag_records} <- Hashtag.get_or_create_by_names(hashtags) do
172 Repo.transaction(fn ->
173 for hashtag_record <- hashtag_records do
174 with {:error, _} <-
175 Ecto.Adapters.SQL.query(
176 Repo,
177 "insert into hashtags_objects(hashtag_id, object_id) values " <>
178 "(#{hashtag_record.id}, #{object.id});"
179 ) do
180 Logger.warn(
181 "ERROR: could not link object #{object.id} and hashtag #{hashtag_record.id}"
182 )
183 end
184 end
185 end)
186 else
187 e -> Logger.warn("ERROR: could not process object #{object.id}: #{inspect(e)}")
188 end
189 end
190 )
191 end)
192 |> Stream.run()
193 end
194
195 def run(["vacuum", args]) do
196 start_pleroma()
197
198 Maintenance.vacuum(args)
199 end
200
201 def run(["ensure_expiration"]) do
202 start_pleroma()
203 days = Pleroma.Config.get([:mrf_activity_expiration, :days], 365)
204
205 Pleroma.Activity
206 |> join(:inner, [a], o in Object,
207 on:
208 fragment(
209 "(?->>'id') = COALESCE((?)->'object'->> 'id', (?)->>'object')",
210 o.data,
211 a.data,
212 a.data
213 )
214 )
215 |> where(local: true)
216 |> where([a], fragment("(? ->> 'type'::text) = 'Create'", a.data))
217 |> where([_a, o], fragment("?->>'type' = 'Note'", o.data))
218 |> Pleroma.Repo.chunk_stream(100, :batches)
219 |> Stream.each(fn activities ->
220 Enum.each(activities, fn activity ->
221 expires_at =
222 activity.inserted_at
223 |> DateTime.from_naive!("Etc/UTC")
224 |> Timex.shift(days: days)
225
226 Pleroma.Workers.PurgeExpiredActivity.enqueue(%{
227 activity_id: activity.id,
228 expires_at: expires_at
229 })
230 end)
231 end)
232 |> Stream.run()
233 end
234 end