scinote-web/app/models/concerns/searchable_by_name_model.rb

28 lines
784 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module SearchableByNameModel
extend ActiveSupport::Concern
2020-09-17 19:15:40 +08:00
# rubocop:disable Metrics/BlockLength
included do
def self.search_by_name(user, teams = [], query = nil, options = {})
return if user.blank? || teams.blank?
sql_q = self
2020-09-17 19:15:40 +08:00
if options[:intersect]
query_array = query.gsub(/[[:space:]]+/, ' ').split(' ')
query_array.each do |string|
sql_q = sql_q.where("trim_html_tags(#{table_name}.name) ILIKE ?", "%#{string}%")
end
else
sql_q = sql_q.where_attributes_like("#{table_name}.name", query, options)
end
2020-09-17 19:15:40 +08:00
sql_q = sql_q.where(id: viewable_by_user(user, teams))
sql_q.limit(Constants::SEARCH_LIMIT)
end
end
2020-09-17 19:15:40 +08:00
# rubocop:enable Metrics/BlockLength
end