mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
32c483316f
Add objects search by ID in smart annotations [SCI-7944]
41 lines
1.2 KiB
Ruby
41 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module SearchableByNameModel
|
|
extend ActiveSupport::Concern
|
|
# 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
|
|
|
|
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
|
|
|
|
sql_q = sql_q.where(id: viewable_by_user(user, teams))
|
|
|
|
sql_q.limit(Constants::SEARCH_LIMIT)
|
|
end
|
|
|
|
def self.search_by_name_and_id(user, teams = [], query = nil)
|
|
return if user.blank? || teams.blank?
|
|
|
|
sanitized_query = ActiveRecord::Base.sanitize_sql_like(query.to_s)
|
|
|
|
sql_q = viewable_by_user(user, teams).where(
|
|
"trim_html_tags(#{table_name}.name) ILIKE ? OR " \
|
|
" #{self::PREFIXED_ID_SQL} ILIKE ? ",
|
|
"%#{sanitized_query}%", "%#{sanitized_query}%"
|
|
)
|
|
|
|
sql_q.limit(Constants::SEARCH_LIMIT)
|
|
end
|
|
end
|
|
# rubocop:enable Metrics/BlockLength
|
|
end
|