2017-12-29 19:52:04 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-11-10 13:46:00 +01:00
|
|
|
class Api::V1::Instances::ActivityController < Api::V1::Instances::BaseController
|
2017-12-29 19:52:04 +01:00
|
|
|
before_action :require_enabled_api!
|
2019-07-30 11:10:46 +02:00
|
|
|
|
2017-12-29 19:52:04 +01:00
|
|
|
def show
|
2023-04-25 15:41:34 +02:00
|
|
|
cache_even_if_authenticated!
|
2019-07-21 22:32:16 +02:00
|
|
|
render_with_cache json: :activity, expires_in: 1.day
|
2017-12-29 19:52:04 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def activity
|
2021-10-14 20:44:59 +02:00
|
|
|
statuses_tracker = ActivityTracker.new('activity:statuses:local', :basic)
|
|
|
|
logins_tracker = ActivityTracker.new('activity:logins', :unique)
|
|
|
|
registrations_tracker = ActivityTracker.new('activity:accounts:local', :basic)
|
|
|
|
|
|
|
|
(0...12).map do |i|
|
|
|
|
start_of_week = i.weeks.ago
|
|
|
|
end_of_week = start_of_week + 6.days
|
|
|
|
|
|
|
|
{
|
|
|
|
week: start_of_week.to_i.to_s,
|
|
|
|
statuses: statuses_tracker.sum(start_of_week, end_of_week).to_s,
|
|
|
|
logins: logins_tracker.sum(start_of_week, end_of_week).to_s,
|
|
|
|
registrations: registrations_tracker.sum(start_of_week, end_of_week).to_s,
|
2017-12-29 19:52:04 +01:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def require_enabled_api!
|
2023-08-02 19:32:48 +02:00
|
|
|
head 404 unless Setting.activity_api_enabled && !limited_federation_mode?
|
2017-12-29 19:52:04 +01:00
|
|
|
end
|
|
|
|
end
|