1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Mix.Tasks.Pleroma.Database do
6 alias Mix.Tasks.Pleroma.Common
7 alias Pleroma.Conversation
14 @shortdoc "A collection of database related tasks"
16 A collection of database related tasks
18 ## Replace embedded objects with their references
20 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.
22 mix pleroma.database remove_embedded_objects
25 - `--vacuum` - run `VACUUM FULL` after the embedded objects are replaced with their references
27 ## Prune old objects from the database
29 mix pleroma.database prune_objects
31 ## Create a conversation for all existing DMs. Can be safely re-run.
33 mix pleroma.database bump_all_conversations
35 ## Remove duplicated items from following and update followers count for all users
37 mix pleroma.database update_users_following_followers_counts
39 def run(["remove_embedded_objects" | args]) do
48 Common.start_pleroma()
49 Logger.info("Removing embedded objects")
52 "update activities set data = jsonb_set(data, '{object}'::text[], data->'object'->'id') where data->'object'->>'id' is not null;",
57 if Keyword.get(options, :vacuum) do
58 Logger.info("Runnning VACUUM FULL")
68 def run(["bump_all_conversations"]) do
69 Common.start_pleroma()
70 Conversation.bump_for_all_activities()
73 def run(["update_users_following_followers_counts"]) do
74 Common.start_pleroma()
76 users = Repo.all(User)
77 Enum.each(users, &User.remove_duplicated_following/1)
78 Enum.each(users, &User.update_follower_count/1)
81 def run(["prune_objects" | args]) do
92 Common.start_pleroma()
94 deadline = Pleroma.Config.get([:instance, :remote_post_retention_days])
96 Logger.info("Pruning objects older than #{deadline} days")
99 NaiveDateTime.utc_now()
100 |> NaiveDateTime.add(-(deadline * 86_400))
102 public = "https://www.w3.org/ns/activitystreams#Public"
105 where: fragment("?->'to' \\? ? OR ?->'cc' \\? ?", o.data, ^public, o.data, ^public),
106 where: o.inserted_at < ^time_deadline,
108 fragment("split_part(?->>'actor', '/', 3) != ?", o.data, ^Pleroma.Web.Endpoint.host())
110 |> Repo.delete_all(timeout: :infinity)
112 if Keyword.get(options, :vacuum) do
113 Logger.info("Runnning VACUUM FULL")