2023-08-02 16:05:02 -07:00
|
|
|
class Color < ApplicationRecord
|
2013-01-21 14:01:41 -08:00
|
|
|
translates :name
|
2010-05-16 13:15:21 -07:00
|
|
|
|
2023-08-02 16:29:31 -07:00
|
|
|
scope :alphabetical, -> {
|
|
|
|
ct = Color::Translation.arel_table
|
|
|
|
with_translations(I18n.locale).order(ct[:name].asc)
|
|
|
|
}
|
2023-07-22 14:04:01 -07:00
|
|
|
scope :basic, -> { where(:basic => true) }
|
|
|
|
scope :standard, -> { where(:standard => true) }
|
|
|
|
scope :nonstandard, -> { where(:standard => false) }
|
|
|
|
scope :funny, -> { order(:prank) unless pranks_funny? }
|
2023-07-28 14:45:10 -07:00
|
|
|
scope :matching_name, ->(name, locale = I18n.locale) {
|
|
|
|
ct = Color::Translation.arel_table
|
|
|
|
joins(:translations).where(ct[:locale].eq(locale)).
|
|
|
|
where(ct[:name].matches(sanitize_sql_like(name)))
|
|
|
|
}
|
2014-01-25 12:56:31 -08:00
|
|
|
|
|
|
|
validates :name, presence: true
|
2023-07-28 15:33:46 -07:00
|
|
|
|
|
|
|
# TODO: Should we consider replacing this at call sites? This used to be
|
|
|
|
# built into the globalize gem but isn't anymore!
|
|
|
|
def self.find_by_name(name)
|
|
|
|
matching_name(name).first
|
|
|
|
end
|
2010-11-27 15:41:06 -08:00
|
|
|
|
2013-01-21 14:01:41 -08:00
|
|
|
def as_json(options={})
|
2014-03-30 20:37:33 -07:00
|
|
|
{id: id, name: human_name, unfunny_name: unfunny_human_name, prank: prank?}
|
2010-11-27 15:41:06 -08:00
|
|
|
end
|
2014-03-27 20:44:18 -07:00
|
|
|
|
2013-01-21 14:01:41 -08:00
|
|
|
def human_name
|
2014-03-27 20:44:18 -07:00
|
|
|
if prank? && !Color.pranks_funny?
|
|
|
|
unfunny_human_name + ' ' + I18n.translate('colors.prank_suffix')
|
|
|
|
else
|
|
|
|
unfunny_human_name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def unfunny_human_name
|
2013-02-15 21:57:06 -08:00
|
|
|
if name
|
|
|
|
name.split(' ').map { |word| word.capitalize }.join(' ')
|
|
|
|
else
|
|
|
|
I18n.translate('colors.default_human_name')
|
|
|
|
end
|
2010-11-27 15:41:06 -08:00
|
|
|
end
|
2014-03-27 20:44:18 -07:00
|
|
|
|
|
|
|
def self.pranks_funny?
|
2014-04-01 17:10:44 -07:00
|
|
|
now = Time.now.in_time_zone('Pacific Time (US & Canada)')
|
|
|
|
now.month == 4 && now.day == 1
|
2014-03-27 20:44:18 -07:00
|
|
|
end
|
2010-05-16 12:44:32 -07:00
|
|
|
end
|