mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-07 15:34:55 +00:00
38fc1b498d
* Add GET /api/v1/instance/peers API to reveal known domains * Add GET /api/v1/instance/activity API * Make new APIs disableable, exclude private statuses from activity stats * Fix code style issue * Fix week timestamps
32 lines
518 B
Ruby
32 lines
518 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ActivityTracker
|
|
EXPIRE_AFTER = 90.days.seconds
|
|
|
|
class << self
|
|
def increment(prefix)
|
|
key = [prefix, current_week].join(':')
|
|
|
|
redis.incrby(key, 1)
|
|
redis.expire(key, EXPIRE_AFTER)
|
|
end
|
|
|
|
def record(prefix, value)
|
|
key = [prefix, current_week].join(':')
|
|
|
|
redis.pfadd(key, value)
|
|
redis.expire(key, value)
|
|
end
|
|
|
|
private
|
|
|
|
def redis
|
|
Redis.current
|
|
end
|
|
|
|
def current_week
|
|
Time.zone.today.cweek
|
|
end
|
|
end
|
|
end
|