2013-01-21 12:55:48 -08:00
|
|
|
class Species < ActiveRecord::Base
|
|
|
|
translates :name
|
2010-06-22 09:42:25 -07:00
|
|
|
|
2023-07-22 14:04:01 -07:00
|
|
|
scope :alphabetical, -> { with_translations(I18n.locale).order(Species::Translation.arel_table[:name]) }
|
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)))
|
|
|
|
}
|
2013-01-21 12:55:48 -08:00
|
|
|
|
|
|
|
def as_json(options={})
|
|
|
|
{:id => id, :name => human_name}
|
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
|
2023-07-28 14:45:10 -07:00
|
|
|
|
|
|
|
# TODO: Copied from modern Rails source, can delete once we're there!
|
|
|
|
def self.sanitize_sql_like(string, escape_character = "\\")
|
|
|
|
pattern = Regexp.union(escape_character, "%", "_")
|
|
|
|
string.gsub(pattern) { |x| [escape_character, x].join }
|
|
|
|
end
|
2010-05-15 08:38:45 -07:00
|
|
|
end
|