1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/models/federal_subject.rb

51 lines
950 B
Ruby
Raw Normal View History

2018-11-30 11:24:05 -05:00
# frozen_string_literal: true
2019-06-23 11:54:41 -04:00
class FederalSubject < ApplicationRecord
2019-07-19 22:40:56 -04:00
TIMEZONE_RE = /\A-?\d\d:\d\d:00\z/.freeze
##########
# Scopes #
##########
scope :order_by_display_name, lambda { |dir = :asc|
if I18n.locale == :ru
order(native_name: dir)
else
order(english_name: dir)
end
}
2019-03-25 20:56:31 -04:00
################
# Associations #
################
has_one :regional_office
2018-12-06 17:49:50 -05:00
2019-03-25 20:56:31 -04:00
###############
# Validations #
###############
2019-03-24 16:52:10 -04:00
validates :english_name, presence: true, uniqueness: true
2019-03-24 17:10:10 -04:00
validates :native_name, presence: true, uniqueness: true
2019-03-24 17:37:36 -04:00
2019-07-19 18:52:14 -04:00
validates :number,
presence: true,
uniqueness: true,
numericality: { only_integer: true, greater_than: 0 }
2019-07-19 22:40:56 -04:00
validates :timezone, presence: true, format: { with: TIMEZONE_RE }
2019-03-25 20:56:31 -04:00
###########
# Methods #
###########
2019-03-24 17:37:36 -04:00
def display_name
2019-07-18 15:43:12 -04:00
if I18n.locale == :ru
native_name
else
english_name
end
2019-03-24 17:37:36 -04:00
end
2018-11-30 11:24:05 -05:00
end