1
0
Fork 0
forked from OpenNeo/impress
impress/app/models/species.rb
Matchu 0e4cc80ac8 Remove sanitize_sql_like monkey-patch
I had added this many Rails versions ago during the recent upgrade process, because it was in latest Rails but not in the version of Rails I was using when replacing Elasticsearch with MySQL queries. We can remove it now!
2023-10-23 19:05:07 -07:00

32 lines
798 B
Ruby

class Species < ApplicationRecord
translates :name
scope :alphabetical, -> {
st = Species::Translation.arel_table
with_translations(I18n.locale).order(st[:name].asc)
}
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)))
}
# 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
def as_json(options={})
{:id => id, :name => human_name}
end
def human_name
if name
name.capitalize
else
I18n.translate('species.default_human_name')
end
end
end