impress/app/models/color.rb

43 lines
1.1 KiB
Ruby
Raw Normal View History

class Color < ApplicationRecord
has_many :pet_types
scope :alphabetical, -> { order(:name) }
scope :basic, -> { where(basic: true) }
scope :standard, -> { where(standard: true) }
scope :nonstandard, -> { where(standard: false) }
scope :funny, -> { order(:prank) unless pranks_funny? }
2014-01-25 12:56:31 -08:00
validates :name, presence: true
2010-11-27 15:41:06 -08:00
2013-01-21 14:01:41 -08:00
def as_json(options={})
{id: id, name: name, human_name: human_name}
2010-11-27 15:41:06 -08:00
end
2013-01-21 14:01:41 -08:00
def human_name
if prank? && !Color.pranks_funny?
unfunny_human_name + ' ' + I18n.translate('colors.prank_suffix')
else
unfunny_human_name
end
end
def example_pet_type(preferred_species: nil)
preferred_species ||= Species.first
pet_types.order([Arel.sql("species_id = ? DESC"), preferred_species.id],
"species_id ASC").first
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
def self.pranks_funny?
now = Time.now.in_time_zone('Pacific Time (US & Canada)')
now.month == 4 && now.day == 1
end
end