2017-12-29 18:52:04 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::Instances::ActivityController < Api::BaseController
|
|
|
|
before_action :require_enabled_api!
|
2019-07-30 09:10:46 +00:00
|
|
|
|
2019-05-03 18:39:19 +00:00
|
|
|
skip_before_action :set_cache_headers
|
2019-10-06 20:11:29 +00:00
|
|
|
skip_before_action :require_authenticated_user!, unless: :whitelist_mode?
|
2017-12-29 18:52:04 +00:00
|
|
|
|
|
|
|
def show
|
2019-07-21 20:32:16 +00:00
|
|
|
expires_in 1.day, public: true
|
|
|
|
render_with_cache json: :activity, expires_in: 1.day
|
2017-12-29 18:52:04 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def activity
|
2021-10-14 18:44:59 +00: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 18:52:04 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def require_enabled_api!
|
2019-07-30 09:10:46 +00:00
|
|
|
head 404 unless Setting.activity_api_enabled && !whitelist_mode?
|
2017-12-29 18:52:04 +00:00
|
|
|
end
|
|
|
|
end
|