2023-08-02 16:05:02 -07:00
|
|
|
class Species < ApplicationRecord
|
2013-01-21 12:55:48 -08:00
|
|
|
translates :name
|
2023-11-11 07:54:56 -08:00
|
|
|
has_many :pet_types
|
2010-06-22 09:42:25 -07:00
|
|
|
|
2023-08-02 16:29:31 -07:00
|
|
|
scope :alphabetical, -> {
|
|
|
|
st = Species::Translation.arel_table
|
|
|
|
with_translations(I18n.locale).order(st[:name].asc)
|
|
|
|
}
|
2023-07-28 14:45:10 -07:00
|
|
|
|
|
|
|
scope :matching_name, ->(name, locale = I18n.locale) {
|
|
|
|
st = Species::Translation.arel_table
|
|
|
|
joins(:translations).where(st[:locale].eq(locale)).
|
|
|
|
where(st[:name].matches(sanitize_sql_like(name)))
|
|
|
|
}
|
2023-07-28 15:33:46 -07:00
|
|
|
|
2023-11-11 07:54:56 -08:00
|
|
|
scope :with_body_id, -> body_id {
|
|
|
|
pt = PetType.arel_table
|
|
|
|
joins(:pet_types).where(pt[:body_id].eq(body_id)).limit(1)
|
|
|
|
}
|
|
|
|
|
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
|
2013-01-21 12:55:48 -08:00
|
|
|
|
|
|
|
def as_json(options={})
|
2023-11-11 07:54:56 -08:00
|
|
|
super({only: [:id, :name], methods: [:human_name]}.merge(options))
|
2010-06-22 09:42:25 -07:00
|
|
|
end
|
2010-11-18 20:25:34 -08:00
|
|
|
|
2013-01-21 12:55:48 -08:00
|
|
|
def human_name
|
2013-02-15 21:57:06 -08:00
|
|
|
if name
|
|
|
|
name.capitalize
|
|
|
|
else
|
|
|
|
I18n.translate('species.default_human_name')
|
|
|
|
end
|
2013-01-21 12:55:48 -08:00
|
|
|
end
|
2010-05-15 08:38:45 -07:00
|
|
|
end
|