1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Mix.Tasks.Pleroma.Database do
6 alias Pleroma.Conversation
11 require Pleroma.Constants
15 @shortdoc "A collection of database related tasks"
17 A collection of database related tasks
19 ## Replace embedded objects with their references
21 Replaces embedded objects with references to them in the `objects` table. Only needs to be ran once. The reason why this is not a migration is because it could significantly increase the database size after being ran, however after this `VACUUM FULL` will be able to reclaim about 20% (really depends on what is in the database, your mileage may vary) of the db size before the migration.
23 mix pleroma.database remove_embedded_objects
26 - `--vacuum` - run `VACUUM FULL` after the embedded objects are replaced with their references
28 ## Prune old objects from the database
30 mix pleroma.database prune_objects
32 ## Create a conversation for all existing DMs. Can be safely re-run.
34 mix pleroma.database bump_all_conversations
36 ## Remove duplicated items from following and update followers count for all users
38 mix pleroma.database update_users_following_followers_counts
40 ## Fix the pre-existing "likes" collections for all objects
42 mix pleroma.database fix_likes_collections
44 def run(["remove_embedded_objects" | args]) do
54 Logger.info("Removing embedded objects")
57 "update activities set data = jsonb_set(data, '{object}'::text[], data->'object'->'id') where data->'object'->>'id' is not null;",
62 if Keyword.get(options, :vacuum) do
63 Logger.info("Runnning VACUUM FULL")
73 def run(["bump_all_conversations"]) do
75 Conversation.bump_for_all_activities()
78 def run(["update_users_following_followers_counts"]) do
81 users = Repo.all(User)
82 Enum.each(users, &User.remove_duplicated_following/1)
83 Enum.each(users, &User.update_follower_count/1)
86 def run(["prune_objects" | args]) do
99 deadline = Pleroma.Config.get([:instance, :remote_post_retention_days])
101 Logger.info("Pruning objects older than #{deadline} days")
104 NaiveDateTime.utc_now()
105 |> NaiveDateTime.add(-(deadline * 86_400))
110 "?->'to' \\? ? OR ?->'cc' \\? ?",
112 ^Pleroma.Constants.as_public(),
114 ^Pleroma.Constants.as_public()
116 where: o.inserted_at < ^time_deadline,
118 fragment("split_part(?->>'actor', '/', 3) != ?", o.data, ^Pleroma.Web.Endpoint.host())
120 |> Repo.delete_all(timeout: :infinity)
122 if Keyword.get(options, :vacuum) do
123 Logger.info("Runnning VACUUM FULL")
133 def run(["fix_likes_collections"]) do
138 from(object in Object,
139 where: fragment("(?)->>'likes' is not null", object.data),
140 select: %{id: object.id, likes: fragment("(?)->>'likes'", object.data)}
142 |> Pleroma.RepoStreamer.chunk_stream(100)
143 |> Stream.each(fn objects ->
146 |> Enum.filter(fn object -> object.likes |> Jason.decode!() |> is_map() end)
150 |> where([object], object.id in ^ids)
155 "jsonb_set(?, '{likes}', '[]'::jsonb, true)",
160 |> Repo.update_all([], timeout: :infinity)