2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-01-13 16:24:16 +00:00
|
|
|
defmodule Pleroma.Stats do
|
|
|
|
import Ecto.Query
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Repo
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.User
|
2018-01-13 16:24:16 +00:00
|
|
|
|
|
|
|
def start_link do
|
2018-01-14 06:15:11 +00:00
|
|
|
agent = Agent.start_link(fn -> {[], %{}} end, name: __MODULE__)
|
2018-01-20 17:38:30 +00:00
|
|
|
spawn(fn -> schedule_update() end)
|
2018-01-13 16:24:16 +00:00
|
|
|
agent
|
|
|
|
end
|
|
|
|
|
2018-01-14 06:15:11 +00:00
|
|
|
def get_stats do
|
|
|
|
Agent.get(__MODULE__, fn {_, stats} -> stats end)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_peers do
|
|
|
|
Agent.get(__MODULE__, fn {peers, _} -> peers end)
|
2018-01-13 16:24:16 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def schedule_update do
|
|
|
|
spawn(fn ->
|
2018-03-30 13:01:53 +00:00
|
|
|
# 1 hour
|
2019-02-03 17:44:18 +00:00
|
|
|
Process.sleep(1000 * 60 * 60)
|
2018-01-13 16:24:16 +00:00
|
|
|
schedule_update()
|
|
|
|
end)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-01-20 17:38:30 +00:00
|
|
|
update_stats()
|
2018-01-13 16:24:16 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def update_stats do
|
2018-03-30 13:01:53 +00:00
|
|
|
peers =
|
|
|
|
from(
|
|
|
|
u in Pleroma.User,
|
2019-01-16 08:07:46 +00:00
|
|
|
select: fragment("distinct split_part(?, '@', 2)", u.nickname),
|
2018-03-30 13:01:53 +00:00
|
|
|
where: u.local != ^true
|
|
|
|
)
|
|
|
|
|> Repo.all()
|
2019-01-16 08:07:46 +00:00
|
|
|
|> Enum.filter(& &1)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-01-13 16:24:16 +00:00
|
|
|
domain_count = Enum.count(peers)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
status_query =
|
|
|
|
from(u in User.local_user_query(), select: fragment("sum((?->>'note_count')::int)", u.info))
|
|
|
|
|
2018-02-12 09:13:54 +00:00
|
|
|
status_count = Repo.one(status_query)
|
2019-01-17 16:16:02 +00:00
|
|
|
user_count = Repo.aggregate(User.active_local_user_query(), :count, :id)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-01-13 16:24:16 +00:00
|
|
|
Agent.update(__MODULE__, fn _ ->
|
2018-01-14 06:15:11 +00:00
|
|
|
{peers, %{domain_count: domain_count, status_count: status_count, user_count: user_count}}
|
2018-01-13 16:24:16 +00:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
end
|