2018-12-23 21:04:54 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 07:49:20 +01:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 21:04:54 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-01-13 17:24:16 +01:00
|
|
|
defmodule Pleroma.Stats do
|
2020-09-06 11:13:26 +02:00
|
|
|
use GenServer
|
|
|
|
|
2018-01-13 17:24:16 +01:00
|
|
|
import Ecto.Query
|
2020-09-06 11:13:26 +02:00
|
|
|
|
2020-01-09 20:18:55 +01:00
|
|
|
alias Pleroma.CounterCache
|
2019-02-09 16:16:26 +01:00
|
|
|
alias Pleroma.Repo
|
2019-03-05 03:52:23 +01:00
|
|
|
alias Pleroma.User
|
2018-01-13 17:24:16 +01:00
|
|
|
|
2020-09-06 11:13:26 +02:00
|
|
|
@interval :timer.seconds(60)
|
2019-08-14 17:59:33 +02:00
|
|
|
|
2019-08-14 17:55:17 +02:00
|
|
|
def start_link(_) do
|
2019-11-26 08:53:07 +01:00
|
|
|
GenServer.start_link(
|
|
|
|
__MODULE__,
|
2020-03-04 20:33:26 +01:00
|
|
|
nil,
|
2019-11-26 08:53:07 +01:00
|
|
|
name: __MODULE__
|
|
|
|
)
|
2019-08-14 17:59:33 +02:00
|
|
|
end
|
|
|
|
|
2020-09-06 11:13:26 +02:00
|
|
|
@impl true
|
|
|
|
def init(_args) do
|
2021-02-27 07:39:15 +01:00
|
|
|
if Pleroma.Config.get(:env) != :test do
|
|
|
|
{:ok, nil, {:continue, :calculate_stats}}
|
|
|
|
else
|
|
|
|
{:ok, calculate_stat_data()}
|
|
|
|
end
|
2020-09-06 11:13:26 +02:00
|
|
|
end
|
|
|
|
|
2019-11-26 08:53:07 +01:00
|
|
|
@doc "Performs update stats"
|
2019-08-14 17:59:33 +02:00
|
|
|
def force_update do
|
|
|
|
GenServer.call(__MODULE__, :force_update)
|
2018-01-13 17:24:16 +01:00
|
|
|
end
|
|
|
|
|
2019-11-26 08:53:07 +01:00
|
|
|
@doc "Returns stats data"
|
2020-09-06 11:13:26 +02:00
|
|
|
@spec get_stats() :: %{
|
|
|
|
domain_count: non_neg_integer(),
|
|
|
|
status_count: non_neg_integer(),
|
|
|
|
user_count: non_neg_integer()
|
|
|
|
}
|
2018-01-14 07:15:11 +01:00
|
|
|
def get_stats do
|
2019-08-14 17:59:33 +02:00
|
|
|
%{stats: stats} = GenServer.call(__MODULE__, :get_state)
|
|
|
|
|
|
|
|
stats
|
2018-01-14 07:15:11 +01:00
|
|
|
end
|
|
|
|
|
2019-11-26 08:53:07 +01:00
|
|
|
@doc "Returns list peers"
|
|
|
|
@spec get_peers() :: list(String.t())
|
2018-01-14 07:15:11 +01:00
|
|
|
def get_peers do
|
2019-08-14 17:59:33 +02:00
|
|
|
%{peers: peers} = GenServer.call(__MODULE__, :get_state)
|
|
|
|
|
|
|
|
peers
|
|
|
|
end
|
|
|
|
|
2020-09-06 11:13:26 +02:00
|
|
|
@spec calculate_stat_data() :: %{
|
|
|
|
peers: list(),
|
|
|
|
stats: %{
|
|
|
|
domain_count: non_neg_integer(),
|
|
|
|
status_count: non_neg_integer(),
|
|
|
|
user_count: non_neg_integer()
|
|
|
|
}
|
|
|
|
}
|
2020-04-22 15:31:37 +02:00
|
|
|
def calculate_stat_data do
|
2018-03-30 15:01:53 +02:00
|
|
|
peers =
|
|
|
|
from(
|
2019-05-08 16:34:36 +02:00
|
|
|
u in User,
|
2019-01-16 09:07:46 +01:00
|
|
|
select: fragment("distinct split_part(?, '@', 2)", u.nickname),
|
2018-03-30 15:01:53 +02:00
|
|
|
where: u.local != ^true
|
|
|
|
)
|
|
|
|
|> Repo.all()
|
2019-01-16 09:07:46 +01:00
|
|
|
|> Enum.filter(& &1)
|
2018-03-30 15:01:53 +02:00
|
|
|
|
2018-01-13 17:24:16 +01:00
|
|
|
domain_count = Enum.count(peers)
|
2018-03-30 15:01:53 +02:00
|
|
|
|
2019-10-16 20:59:21 +02:00
|
|
|
status_count = Repo.aggregate(User.Query.build(%{local: true}), :sum, :note_count)
|
2019-05-08 16:34:36 +02:00
|
|
|
|
2020-04-22 15:31:37 +02:00
|
|
|
users_query =
|
|
|
|
from(u in User,
|
2020-10-13 00:42:27 +02:00
|
|
|
where: u.is_active == true,
|
2020-04-22 15:31:37 +02:00
|
|
|
where: u.local == true,
|
|
|
|
where: not is_nil(u.nickname),
|
2020-04-22 19:02:22 +02:00
|
|
|
where: not u.invisible
|
2020-04-22 15:31:37 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
user_count = Repo.aggregate(users_query, :count, :id)
|
2018-03-30 15:01:53 +02:00
|
|
|
|
2019-08-14 17:59:33 +02:00
|
|
|
%{
|
|
|
|
peers: peers,
|
2019-11-26 08:53:07 +01:00
|
|
|
stats: %{
|
|
|
|
domain_count: domain_count,
|
2020-05-05 15:24:16 +02:00
|
|
|
status_count: status_count || 0,
|
2019-11-26 08:53:07 +01:00
|
|
|
user_count: user_count
|
|
|
|
}
|
2019-08-14 17:59:33 +02:00
|
|
|
}
|
2018-01-13 17:24:16 +01:00
|
|
|
end
|
2020-01-09 20:18:55 +01:00
|
|
|
|
2020-09-06 11:13:26 +02:00
|
|
|
@spec get_status_visibility_count(String.t() | nil) :: map()
|
2020-05-09 10:30:37 +02:00
|
|
|
def get_status_visibility_count(instance \\ nil) do
|
|
|
|
if is_nil(instance) do
|
|
|
|
CounterCache.get_sum()
|
|
|
|
else
|
|
|
|
CounterCache.get_by_instance(instance)
|
|
|
|
end
|
2020-01-09 20:18:55 +01:00
|
|
|
end
|
2020-09-06 11:13:26 +02:00
|
|
|
|
|
|
|
@impl true
|
|
|
|
def handle_continue(:calculate_stats, _) do
|
|
|
|
stats = calculate_stat_data()
|
2020-09-09 08:52:07 +02:00
|
|
|
|
|
|
|
unless Pleroma.Config.get(:env) == :test do
|
|
|
|
Process.send_after(self(), :run_update, @interval)
|
|
|
|
end
|
|
|
|
|
2020-09-06 11:13:26 +02:00
|
|
|
{:noreply, stats}
|
|
|
|
end
|
|
|
|
|
|
|
|
@impl true
|
|
|
|
def handle_call(:force_update, _from, _state) do
|
|
|
|
new_stats = calculate_stat_data()
|
|
|
|
{:reply, new_stats, new_stats}
|
|
|
|
end
|
|
|
|
|
|
|
|
@impl true
|
|
|
|
def handle_call(:get_state, _from, state) do
|
|
|
|
{:reply, state, state}
|
|
|
|
end
|
|
|
|
|
|
|
|
@impl true
|
|
|
|
def handle_info(:run_update, _) do
|
|
|
|
new_stats = calculate_stat_data()
|
|
|
|
Process.send_after(self(), :run_update, @interval)
|
|
|
|
{:noreply, new_stats}
|
|
|
|
end
|
2018-01-13 17:24:16 +01:00
|
|
|
end
|