trabajo-afectivo/app/models/application_model/can_lookup.rb

62 lines
1.5 KiB
Ruby
Raw Normal View History

# Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
module ApplicationModel::CanLookup
extend ActiveSupport::Concern
class_methods do
=begin
lookup model from cache (if exists) or retrieve it from db, id, name, login or email possible
result = Model.lookup(id: 123)
result = Model.lookup(name: 'some name')
result = Model.lookup(login: 'some login')
result = Model.lookup(email: 'some login')
returns
result = model # with all attributes
=end
2018-07-04 12:57:10 +00:00
def lookup(**attr)
raise ArgumentError, "Multiple lookup attributes given (#{attr.keys.join(', ')}), only support (#{lookup_keys.join(', ')})" if attr.many?
2018-07-04 12:57:10 +00:00
attr.transform_keys!(&:to_sym).slice!(*lookup_keys)
raise ArgumentError, "Valid lookup attribute required (#{lookup_keys.join(', ')})" if attr.empty?
2019-06-28 11:38:49 +00:00
cache_get(attr.values.first) || find_and_save_to_cache_by(attr)
2018-07-04 12:57:10 +00:00
end
=begin
return possible lookup keys for model
result = Model.lookup_keys
returns
[:id, :name] # or fror users [:id, :login, :email]
=end
2018-07-04 12:57:10 +00:00
def lookup_keys
@lookup_keys ||= %i[id name login email number] & attribute_names.map(&:to_sym)
end
private
2018-07-04 12:57:10 +00:00
def find_and_save_to_cache_by(attr)
if !Rails.application.config.db_case_sensitive && string_key?(attr.keys.first)
where(attr).find { |r| r[attr.keys.first] == attr.values.first }
else
find_by(attr)
end.tap { |r| cache_set(attr.values.first, r) }
end
2018-07-04 12:57:10 +00:00
def string_key?(key)
type_for_attribute(key.to_s).type == :string
end
end
end