2023-08-02 16:05:02 -07:00
|
|
|
class Species < ApplicationRecord
|
2023-11-11 07:54:56 -08:00
|
|
|
has_many :pet_types
|
2024-01-28 07:30:06 -08:00
|
|
|
has_many :alt_styles
|
2010-06-22 09:42:25 -07:00
|
|
|
|
2024-01-23 05:23:57 -08:00
|
|
|
scope :alphabetical, -> { order(:name) }
|
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
|
2024-09-05 17:52:35 -07:00
|
|
|
|
|
|
|
# Given a list of body IDs, return a hash from body ID to Species.
|
|
|
|
# (We assume that each body ID belongs to just one species; if not, which
|
|
|
|
# species we return for that body ID is undefined.)
|
|
|
|
def self.with_body_ids(body_ids)
|
|
|
|
species_ids_by_body_id = PetType.where(body_id: body_ids).distinct.
|
|
|
|
pluck(:body_id, :species_id).to_h
|
|
|
|
species_by_id = Species.where(id: species_ids_by_body_id.values).
|
|
|
|
to_h { |s| [s.id, s] }
|
|
|
|
species_ids_by_body_id.transform_values { |id| species_by_id[id] }
|
|
|
|
end
|
2010-05-15 08:38:45 -07:00
|
|
|
end
|