2024-04-26 12:59:58 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2025-08-13 14:25:48 -04:00
|
|
|
class User < ApplicationRecord # rubocop:disable Metrics/ClassLength
|
2022-04-06 14:46:10 -04:00
|
|
|
devise :database_authenticatable, :registerable,
|
2024-12-05 11:37:50 -05:00
|
|
|
:recoverable, :rememberable, :validatable, :trackable
|
2024-03-15 18:27:31 -04:00
|
|
|
|
2025-08-21 16:32:29 -04:00
|
|
|
has_many :points, dependent: :destroy, counter_cache: true
|
2024-08-25 14:19:02 -04:00
|
|
|
has_many :imports, dependent: :destroy
|
|
|
|
|
has_many :stats, dependent: :destroy
|
|
|
|
|
has_many :exports, dependent: :destroy
|
|
|
|
|
has_many :notifications, dependent: :destroy
|
|
|
|
|
has_many :areas, dependent: :destroy
|
|
|
|
|
has_many :visits, dependent: :destroy
|
|
|
|
|
has_many :places, through: :visits
|
2025-01-23 10:03:21 -05:00
|
|
|
has_many :trips, dependent: :destroy
|
2025-07-03 14:18:18 -04:00
|
|
|
has_many :tracks, dependent: :destroy
|
2024-03-23 16:16:11 -04:00
|
|
|
|
2024-04-04 14:14:11 -04:00
|
|
|
after_create :create_api_key
|
2025-02-24 18:16:42 -05:00
|
|
|
after_commit :activate, on: :create, if: -> { DawarichSettings.self_hosted? }
|
2025-08-13 14:25:48 -04:00
|
|
|
after_commit :start_trial, on: :create, if: -> { !DawarichSettings.self_hosted? }
|
2025-08-26 10:37:21 -04:00
|
|
|
|
2025-02-10 14:37:20 -05:00
|
|
|
before_save :sanitize_input
|
2024-04-04 14:14:11 -04:00
|
|
|
|
2024-12-26 15:34:10 -05:00
|
|
|
validates :email, presence: true
|
|
|
|
|
validates :reset_password_token, uniqueness: true, allow_nil: true
|
|
|
|
|
|
|
|
|
|
attribute :admin, :boolean, default: false
|
2025-08-29 04:07:00 -04:00
|
|
|
attribute :points_count, :integer, default: 0
|
2024-12-26 15:34:10 -05:00
|
|
|
|
2025-09-08 14:46:30 -04:00
|
|
|
scope :active_or_trial, -> { where(status: %i[active trial]) }
|
|
|
|
|
|
2025-08-19 12:55:22 -04:00
|
|
|
enum :status, { inactive: 0, active: 1, trial: 2 }
|
2025-02-19 15:23:11 -05:00
|
|
|
|
2025-02-10 14:37:20 -05:00
|
|
|
def safe_settings
|
|
|
|
|
Users::SafeSettings.new(settings)
|
|
|
|
|
end
|
|
|
|
|
|
2024-04-26 12:59:58 -04:00
|
|
|
def countries_visited
|
2025-08-21 16:32:29 -04:00
|
|
|
points
|
2025-07-29 15:17:33 -04:00
|
|
|
.where.not(country_name: [nil, ''])
|
|
|
|
|
.distinct
|
|
|
|
|
.pluck(:country_name)
|
|
|
|
|
.compact
|
2024-04-26 12:59:58 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def cities_visited
|
2025-08-21 16:32:29 -04:00
|
|
|
points.where.not(city: [nil, '']).distinct.pluck(:city).compact
|
2024-03-23 16:46:18 -04:00
|
|
|
end
|
|
|
|
|
|
2024-08-28 17:54:00 -04:00
|
|
|
def total_distance
|
2025-07-08 12:10:10 -04:00
|
|
|
total_distance_meters = stats.sum(:distance)
|
|
|
|
|
Stat.convert_distance(total_distance_meters, safe_settings.distance_unit)
|
2024-03-23 16:16:11 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def total_countries
|
2024-04-26 12:59:58 -04:00
|
|
|
countries_visited.size
|
2024-03-23 16:16:11 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def total_cities
|
2024-04-26 12:59:58 -04:00
|
|
|
cities_visited.size
|
2024-03-23 16:16:11 -04:00
|
|
|
end
|
2024-03-24 13:55:35 -04:00
|
|
|
|
2024-12-02 08:44:22 -05:00
|
|
|
def total_reverse_geocoded_points
|
2025-08-21 16:32:29 -04:00
|
|
|
points.where.not(reverse_geocoded_at: nil).count
|
2024-12-02 08:44:22 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def total_reverse_geocoded_points_without_data
|
2025-08-21 16:32:29 -04:00
|
|
|
points.where(geodata: {}).count
|
2024-03-24 13:55:35 -04:00
|
|
|
end
|
2024-04-04 14:14:11 -04:00
|
|
|
|
2024-12-02 11:34:16 -05:00
|
|
|
def immich_integration_configured?
|
|
|
|
|
settings['immich_url'].present? && settings['immich_api_key'].present?
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def photoprism_integration_configured?
|
|
|
|
|
settings['photoprism_url'].present? && settings['photoprism_api_key'].present?
|
|
|
|
|
end
|
|
|
|
|
|
2024-12-06 10:52:36 -05:00
|
|
|
def years_tracked
|
|
|
|
|
Rails.cache.fetch("dawarich/user_#{id}_years_tracked", expires_in: 1.day) do
|
2025-01-07 09:02:35 -05:00
|
|
|
# Use select_all for better performance with large datasets
|
|
|
|
|
sql = <<-SQL
|
|
|
|
|
SELECT DISTINCT
|
|
|
|
|
EXTRACT(YEAR FROM TO_TIMESTAMP(timestamp)) AS year,
|
|
|
|
|
TO_CHAR(TO_TIMESTAMP(timestamp), 'Mon') AS month
|
|
|
|
|
FROM points
|
|
|
|
|
WHERE user_id = #{id}
|
|
|
|
|
ORDER BY year DESC, month ASC
|
|
|
|
|
SQL
|
|
|
|
|
|
|
|
|
|
result = ActiveRecord::Base.connection.select_all(sql)
|
|
|
|
|
|
|
|
|
|
result
|
|
|
|
|
.map { |r| [r['year'].to_i, r['month']] }
|
|
|
|
|
.group_by { |year, _| year }
|
|
|
|
|
.transform_values { |year_data| year_data.map { |_, month| month } }
|
2024-12-11 14:34:49 -05:00
|
|
|
.map { |year, months| { year: year, months: months } }
|
2024-12-06 10:52:36 -05:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2025-04-04 15:39:59 -04:00
|
|
|
def can_subscribe?
|
2025-08-14 14:50:22 -04:00
|
|
|
(trial? || !active_until&.future?) && !DawarichSettings.self_hosted?
|
2025-04-04 15:39:59 -04:00
|
|
|
end
|
|
|
|
|
|
2025-02-26 16:08:12 -05:00
|
|
|
def generate_subscription_token
|
|
|
|
|
payload = {
|
|
|
|
|
user_id: id,
|
|
|
|
|
email: email,
|
|
|
|
|
exp: 30.minutes.from_now.to_i
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
secret_key = ENV['JWT_SECRET_KEY']
|
|
|
|
|
|
|
|
|
|
JWT.encode(payload, secret_key, 'HS256')
|
|
|
|
|
end
|
|
|
|
|
|
2025-06-25 15:14:33 -04:00
|
|
|
def export_data
|
|
|
|
|
Users::ExportDataJob.perform_later(id)
|
|
|
|
|
end
|
|
|
|
|
|
2025-08-13 14:25:48 -04:00
|
|
|
def trial_state?
|
2025-08-29 04:43:49 -04:00
|
|
|
(points_count || 0).zero? && trial?
|
2025-08-13 14:25:48 -04:00
|
|
|
end
|
|
|
|
|
|
2024-04-04 14:14:11 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
|
|
def create_api_key
|
|
|
|
|
self.api_key = SecureRandom.hex(16)
|
2024-05-23 14:12:23 -04:00
|
|
|
|
2024-04-04 14:14:11 -04:00
|
|
|
save
|
|
|
|
|
end
|
2024-12-02 10:52:05 -05:00
|
|
|
|
2025-02-19 15:23:11 -05:00
|
|
|
def activate
|
2025-04-04 15:12:42 -04:00
|
|
|
update(status: :active, active_until: 1000.years.from_now)
|
2025-02-19 15:23:11 -05:00
|
|
|
end
|
|
|
|
|
|
2025-02-10 14:37:20 -05:00
|
|
|
def sanitize_input
|
2024-12-02 11:22:36 -05:00
|
|
|
settings['immich_url']&.gsub!(%r{/+\z}, '')
|
|
|
|
|
settings['photoprism_url']&.gsub!(%r{/+\z}, '')
|
2025-02-10 14:48:16 -05:00
|
|
|
settings.try(:[], 'maps')&.try(:[], 'url')&.strip!
|
2024-12-02 10:52:05 -05:00
|
|
|
end
|
2025-08-13 14:25:48 -04:00
|
|
|
|
|
|
|
|
def start_trial
|
|
|
|
|
update(status: :trial, active_until: 7.days.from_now)
|
2025-08-26 10:37:21 -04:00
|
|
|
schedule_welcome_emails
|
2025-08-13 14:25:48 -04:00
|
|
|
|
|
|
|
|
Users::TrialWebhookJob.perform_later(id)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def schedule_welcome_emails
|
|
|
|
|
Users::MailerSendingJob.perform_later(id, 'welcome')
|
|
|
|
|
Users::MailerSendingJob.set(wait: 2.days).perform_later(id, 'explore_features')
|
|
|
|
|
Users::MailerSendingJob.set(wait: 5.days).perform_later(id, 'trial_expires_soon')
|
|
|
|
|
Users::MailerSendingJob.set(wait: 7.days).perform_later(id, 'trial_expired')
|
|
|
|
|
end
|
2022-04-06 14:46:10 -04:00
|
|
|
end
|