mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 08:44:27 +00:00
42 lines
790 B
Ruby
42 lines
790 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AnnualReport::Source
|
|
attr_reader :account, :year
|
|
|
|
def initialize(account, year)
|
|
@account = account
|
|
@year = year
|
|
end
|
|
|
|
def self.prepare(_year)
|
|
# Use this method if any pre-calculations must be made before individual annual reports are generated
|
|
end
|
|
|
|
def generate
|
|
raise NotImplementedError
|
|
end
|
|
|
|
protected
|
|
|
|
def report_statuses
|
|
@account
|
|
.statuses
|
|
.where(id: year_as_snowflake_range)
|
|
.reorder(nil)
|
|
end
|
|
|
|
def year_as_snowflake_range
|
|
(beginning_snowflake_id..ending_snowflake_id)
|
|
end
|
|
|
|
private
|
|
|
|
def beginning_snowflake_id
|
|
Mastodon::Snowflake.id_at DateTime.new(year).beginning_of_year
|
|
end
|
|
|
|
def ending_snowflake_id
|
|
Mastodon::Snowflake.id_at DateTime.new(year).end_of_year
|
|
end
|
|
end
|