123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- class Organization
- module Search
- extend ActiveSupport::Concern
- # methods defined here are going to extend the class, not the instance of it
- class_methods do
- =begin
- search organizations preferences
- result = Organization.search_preferences(user_model)
- returns if user has permissions to search
- result = {
- prio: 1000,
- direct_search_index: true
- }
- returns if user has no permissions to search
- result = false
- =end
- def search_preferences(current_user)
- return false if !current_user.permissions?(['ticket.agent', 'ticket.customer', 'admin.organization'])
- {
- prio: 1500,
- direct_search_index: !customer_only?(current_user),
- }
- end
- def customer_only?(current_user)
- return true if current_user.permissions?('ticket.customer') && !current_user.permissions?(['admin.organization', 'ticket.agent'])
- false
- end
- =begin
- search organizations
- result = Organization.search(
- current_user: User.find(123),
- query: 'search something',
- limit: 15,
- offset: 100,
- # sort single column
- sort_by: 'created_at',
- order_by: 'asc',
- # sort multiple columns
- sort_by: [ 'created_at', 'updated_at' ],
- order_by: [ 'asc', 'desc' ],
- )
- returns
- result = [organization_model1, organization_model2]
- =end
- def search(params)
- # get params
- query = params[:query]
- limit = params[:limit] || 10
- offset = params[:offset] || 0
- current_user = params[:current_user]
- sql_helper = ::SqlHelper.new(object: self)
- # check sort - positions related to order by
- sort_by = sql_helper.get_sort_by(params, %w[active updated_at])
- # check order - positions related to sort by
- order_by = sql_helper.get_order_by(params, %w[desc desc])
- # enable search only for permitted users
- return [] if !search_preferences(current_user)
- # make sure customers always only can search their own organizations
- if customer_only?(current_user)
- params[:ids] = current_user.all_organization_ids
- end
- # try search index backend
- if SearchIndexBackend.enabled?
- items = SearchIndexBackend.search(query, 'Organization', limit: limit,
- from: offset,
- sort_by: sort_by,
- order_by: order_by,
- ids: params[:ids])
- organizations = []
- items.each do |item|
- organization = Organization.lookup(id: item[:id])
- next if !organization
- organizations.push organization
- end
- return organizations
- end
- order_select_sql = sql_helper.get_order_select(sort_by, order_by, 'organizations.updated_at')
- order_sql = sql_helper.get_order(sort_by, order_by, 'organizations.updated_at ASC')
- # fallback do sql query
- # - stip out * we already search for *query* -
- query.delete! '*'
- organizations = Organization.where_or_cis(%i[name note], "%#{query}%")
- .reorder(Arel.sql(order_sql))
- .offset(offset)
- .limit(limit)
- if params[:ids].present?
- organizations = organizations.where(id: params[:ids])
- end
- organizations = organizations.to_a
- # use result independent of size if an explicit offset is given
- # this is the case for e.g. paginated searches
- return organizations if params[:offset].present?
- return organizations if organizations.length > 3
- # if only a few organizations are found, search for names of users
- organizations_by_user = Organization.select("DISTINCT(organizations.id), #{order_select_sql}")
- .joins('LEFT OUTER JOIN users ON users.organization_id = organizations.id')
- .where(User.or_cis(%i[firstname lastname email], "%#{query}%"))
- .reorder(Arel.sql(order_sql))
- .limit(limit)
- if params[:ids].present?
- organizations_by_user = organizations_by_user.where(id: params[:ids])
- end
- organizations_by_user.each do |organization_by_user|
- organization_exists = false
- organizations.each do |organization|
- next if organization.id != organization_by_user.id
- organization_exists = true
- break
- end
- # get model with full data
- next if organization_exists
- organizations.push Organization.find(organization_by_user.id)
- end
- organizations
- end
- end
- end
- end
|