forked from OpenNeo/impress
Matchu
d97c32b5da
Some important little upgrades but mostly straightforward! Note that there's still a known issue where item searches crash, I was hoping that this was a bug in Rails 4.2 that would be fixed on upgading to 5, but nope, oh well! Also uhh I just got a bit silly and didn't actually mean to go all the way to 5.2 in one go, I had meant to start at 5.0… but tbh the 5.1 and 5.2 changes seem small, and this seems to be working, so. Yeah ok let's roll!
35 lines
1 KiB
Ruby
35 lines
1 KiB
Ruby
class Species < ApplicationRecord
|
|
translates :name
|
|
|
|
scope :alphabetical, -> { with_translations(I18n.locale).order(Species::Translation.arel_table[:name]) }
|
|
|
|
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
|
|
|
|
# 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
|
|
end
|