2024-03-24 13:55:35 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2024-03-23 15:29:55 -04:00
|
|
|
class Stat < ApplicationRecord
|
2025-07-08 12:10:10 -04:00
|
|
|
include DistanceConvertible
|
|
|
|
|
|
2024-03-23 15:29:55 -04:00
|
|
|
validates :year, :month, presence: true
|
|
|
|
|
|
|
|
|
|
belongs_to :user
|
2024-03-24 13:55:35 -04:00
|
|
|
|
2025-09-11 14:41:43 -04:00
|
|
|
before_create :generate_sharing_uuid
|
|
|
|
|
|
2024-03-24 13:55:35 -04:00
|
|
|
def distance_by_day
|
2024-12-06 10:52:36 -05:00
|
|
|
monthly_points = points
|
|
|
|
|
calculate_daily_distances(monthly_points)
|
2024-03-24 13:55:35 -04:00
|
|
|
end
|
2024-03-24 14:46:55 -04:00
|
|
|
|
2024-05-25 07:45:49 -04:00
|
|
|
def self.year_distance(year, user)
|
2024-12-06 10:52:36 -05:00
|
|
|
stats_by_month = where(year:, user:).order(:month).index_by(&:month)
|
2024-03-28 10:11:59 -04:00
|
|
|
|
2024-12-06 10:52:36 -05:00
|
|
|
(1..12).map do |month|
|
2024-03-28 10:11:59 -04:00
|
|
|
month_name = Date::MONTHNAMES[month]
|
2024-12-06 10:52:36 -05:00
|
|
|
distance = stats_by_month[month]&.distance || 0
|
2024-03-28 10:11:59 -04:00
|
|
|
|
|
|
|
|
[month_name, distance]
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2024-12-06 10:52:36 -05:00
|
|
|
def points
|
2025-08-21 16:32:29 -04:00
|
|
|
user.points
|
2024-12-06 10:52:36 -05:00
|
|
|
.without_raw_data
|
|
|
|
|
.where(timestamp: timespan)
|
|
|
|
|
.order(timestamp: :asc)
|
|
|
|
|
end
|
|
|
|
|
|
2025-09-11 14:41:43 -04:00
|
|
|
def sharing_enabled?
|
|
|
|
|
sharing_settings['enabled'] == true
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def sharing_expired?
|
|
|
|
|
return false unless sharing_settings['expiration']
|
|
|
|
|
return false if sharing_settings['expiration'] == 'permanent'
|
|
|
|
|
|
|
|
|
|
Time.current > sharing_settings['expires_at']
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def public_accessible?
|
|
|
|
|
sharing_enabled? && !sharing_expired?
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def generate_new_sharing_uuid!
|
|
|
|
|
update!(sharing_uuid: SecureRandom.uuid)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def enable_sharing!(expiration: '1h')
|
|
|
|
|
expires_at = case expiration
|
|
|
|
|
when '1h'
|
|
|
|
|
1.hour.from_now
|
|
|
|
|
when '12h'
|
|
|
|
|
12.hours.from_now
|
|
|
|
|
when '24h'
|
|
|
|
|
24.hours.from_now
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
update!(
|
|
|
|
|
sharing_settings: {
|
|
|
|
|
'enabled' => true,
|
|
|
|
|
'expiration' => expiration,
|
|
|
|
|
'expires_at' => expires_at&.iso8601
|
|
|
|
|
},
|
|
|
|
|
sharing_uuid: sharing_uuid || SecureRandom.uuid
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def disable_sharing!
|
|
|
|
|
update!(
|
|
|
|
|
sharing_settings: {
|
|
|
|
|
'enabled' => false,
|
|
|
|
|
'expiration' => nil,
|
|
|
|
|
'expires_at' => nil
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
|
2024-04-02 17:20:25 -04:00
|
|
|
private
|
|
|
|
|
|
2025-09-11 14:41:43 -04:00
|
|
|
def generate_sharing_uuid
|
|
|
|
|
self.sharing_uuid ||= SecureRandom.uuid
|
|
|
|
|
end
|
|
|
|
|
|
2024-04-02 17:20:25 -04:00
|
|
|
def timespan
|
|
|
|
|
DateTime.new(year, month).beginning_of_month..DateTime.new(year, month).end_of_month
|
|
|
|
|
end
|
2024-12-06 10:52:36 -05:00
|
|
|
|
|
|
|
|
def calculate_daily_distances(monthly_points)
|
2025-07-22 17:57:25 -04:00
|
|
|
Stats::DailyDistanceQuery.new(monthly_points, timespan, user_timezone).call
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def user_timezone
|
|
|
|
|
# Future: Once user.timezone column exists, uncomment the line below
|
|
|
|
|
# user.timezone.presence || Time.zone.name
|
|
|
|
|
|
|
|
|
|
# For now, use application timezone
|
|
|
|
|
Time.zone.name
|
2024-12-06 10:52:36 -05:00
|
|
|
end
|
2024-03-23 15:29:55 -04:00
|
|
|
end
|