Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

172 lines
4.5 KiB
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
#-- copyright
2020-01-15 11:31:26 +01:00
# OpenProject is an open source project management software.
# Copyright (C) the OpenProject GmbH
2011-05-30 20:52:25 +02:00
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
2011-05-30 20:52:25 +02:00
#
2013-09-16 17:59:31 +02:00
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
2021-01-13 17:47:45 +01:00
# Copyright (C) 2006-2013 Jean-Philippe Lang
2013-09-16 17:59:31 +02:00
# Copyright (C) 2010-2013 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# See COPYRIGHT and LICENSE files for more details.
#++
class SearchController < ApplicationController
2020-02-11 08:04:46 +01:00
include Layout
2024-06-10 17:19:55 +02:00
before_action :load_and_authorize_in_optional_project,
:prepare_tokens
2019-03-13 13:31:01 +01:00
2025-07-22 14:28:00 +02:00
helper_method :search_types, :search_params
2019-03-13 13:31:01 +01:00
LIMIT = 10
def index
2019-03-13 13:31:01 +01:00
if @tokens.any?
@results, @results_count = search_results(@tokens)
2011-05-30 20:52:25 +02:00
2019-03-13 13:31:01 +01:00
if search_params[:previous].nil?
limit_results_first_page
2018-11-23 13:37:17 +01:00
else
2019-03-13 13:31:01 +01:00
limit_results_subsequent_page
end
end
2011-05-30 20:52:25 +02:00
render "index", locals: { menu_name: project_or_global_menu }
2019-03-13 13:31:01 +01:00
end
private
2011-05-30 20:52:25 +02:00
2019-03-13 13:31:01 +01:00
def prepare_tokens
@question = (search_params[:q] || "").strip
@tokens = scan_query_tokens(@question).uniq
2019-03-13 13:31:01 +01:00
unless @tokens.any?
@question = ""
end
end
2019-03-13 13:31:01 +01:00
def limit_results_first_page
@pagination_previous_date = @results[0].event_datetime if offset && @results[0]
if @results.size > LIMIT
@pagination_next_date = @results[LIMIT - 1].event_datetime
@results = @results[0, LIMIT]
end
end
def limit_results_subsequent_page
@pagination_next_date = @results[-1].event_datetime if offset && @results[-1]
if @results.size > LIMIT
2021-02-11 16:02:18 +01:00
@pagination_previous_date = @results[-LIMIT].event_datetime
@results = @results[-LIMIT, LIMIT]
2019-03-13 13:31:01 +01:00
end
end
# extract tokens from the question
# eg. hello "bye bye" => ["hello", "bye bye"]
def scan_query_tokens(query)
2019-03-13 13:31:01 +01:00
tokens = query.scan(%r{((\s|^)"[\s\w]+"(\s|$)|\S+)}).map { |m| m.first.gsub(%r{(^\s*"\s*|\s*"\s*$)}, "") }
# no more than 5 tokens to search for
tokens.slice! 5..-1 if tokens.size > 5
tokens
end
def search_params
@search_params ||= permitted_params.search
end
2019-03-13 13:31:01 +01:00
def offset
value = Rational(search_params[:offset], exception: false)
Time.zone.at(value) if value
2019-03-13 13:31:01 +01:00
end
def projects_to_search
case search_params[:scope]
when "all"
nil
when "current_project"
@project
else
@project ? @project.self_and_descendants.active : nil
end
end
def search_results(tokens)
results = []
results_count = Hash.new(0)
search_classes.each do |scope, klass|
r, c = klass.search(tokens,
projects_to_search,
limit: (LIMIT + 1),
offset:,
before: search_params[:previous].nil?)
results += r
results_count[scope] += c
end
results = sort_by_event_datetime(results)
[results, results_count]
end
def sort_by_event_datetime(results)
results.sort { |a, b| b.event_datetime <=> a.event_datetime }
end
def search_types
2025-07-22 14:28:00 +02:00
@search_types ||= begin
types = Redmine::Search.available_search_types.dup
if projects_to_search.is_a? Project
# don't search projects
types.delete("projects")
# only show what the user is allowed to view
types = types.select { |o| User.current.allowed_in_project?(:"view_#{o}", projects_to_search) }
end
2019-03-13 13:31:01 +01:00
2025-07-22 14:28:00 +02:00
types
2019-03-13 13:31:01 +01:00
end
end
def search_classes
2025-07-22 14:37:10 +02:00
scope =
if search_params[:filter] == "work_packages"
[] # work packages are handled in the frontend
elsif search_params[:filter].present?
[search_params[:filter]] & search_types
else
search_types
end
2019-03-13 13:31:01 +01:00
2025-07-22 14:52:47 +02:00
scope
.index_with { |s| scope_class(s) }
2019-03-13 13:31:01 +01:00
end
def scope_class(scope)
scope.singularize.camelcase.constantize
end
end