dawarich/app/models/place.rb
2025-11-22 19:45:53 +01:00

55 lines
1.1 KiB
Ruby

# frozen_string_literal: true
class Place < ApplicationRecord
include Nearable
include Distanceable
include Taggable
DEFAULT_NAME = 'Suggested place'
belongs_to :user, optional: true # Optional during migration period
has_many :visits, dependent: :destroy
has_many :place_visits, dependent: :destroy
has_many :suggested_visits, -> { distinct }, through: :place_visits, source: :visit
before_validation :build_lonlat, if: -> { latitude.present? && longitude.present? }
validates :name, presence: true
validates :lonlat, presence: true
enum :source, { manual: 0, photon: 1 }
scope :for_user, ->(user) { where(user: user) }
scope :global, -> { where(user: nil) }
scope :ordered, -> { order(:name) }
def lon
lonlat.x
end
def lat
lonlat.y
end
def osm_id
geodata.dig('properties', 'osm_id')
end
def osm_key
geodata.dig('properties', 'osm_key')
end
def osm_value
geodata.dig('properties', 'osm_value')
end
def osm_type
geodata.dig('properties', 'osm_type')
end
private
def build_lonlat
self.lonlat = "POINT(#{longitude} #{latitude})"
end
end