2017-12-29 19:52:04 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityTracker
|
|
|
|
EXPIRE_AFTER = 90.days.seconds
|
|
|
|
|
|
|
|
class << self
|
2019-02-02 19:11:38 +01:00
|
|
|
include Redisable
|
|
|
|
|
2017-12-29 19:52:04 +01:00
|
|
|
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)
|
2018-01-02 14:02:53 +01:00
|
|
|
redis.expire(key, EXPIRE_AFTER)
|
2017-12-29 19:52:04 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def current_week
|
|
|
|
Time.zone.today.cweek
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|