2025-03-31 10:43:34 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2011-05-29 13:11:52 -07:00
|
|
|
#-- copyright
|
2020-01-15 11:31:26 +01:00
|
|
|
# OpenProject is an open source project management software.
|
2024-07-30 13:42:36 +02:00
|
|
|
# Copyright (C) the OpenProject GmbH
|
2011-05-30 20:52:25 +02:00
|
|
|
#
|
2011-05-29 13:11:52 -07:00
|
|
|
# This program is free software; you can redistribute it and/or
|
2013-06-05 16:27:56 +02:00
|
|
|
# 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.
|
|
|
|
|
#
|
2021-09-02 21:49:06 +02:00
|
|
|
# See COPYRIGHT and LICENSE files for more details.
|
2011-05-29 13:11:52 -07:00
|
|
|
#++
|
|
|
|
|
|
2007-04-30 08:52:39 +00:00
|
|
|
class SearchController < ApplicationController
|
2020-02-11 08:04:46 +01:00
|
|
|
include Layout
|
2018-08-09 14:51:49 +02:00
|
|
|
|
2024-06-10 17:19:55 +02:00
|
|
|
before_action :load_and_authorize_in_optional_project,
|
2020-03-27 16:14:21 +01:00
|
|
|
: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
|
2007-04-30 08:52:39 +00:00
|
|
|
|
|
|
|
|
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
|
2008-05-18 16:15:22 +00:00
|
|
|
end
|
2007-04-30 08:52:39 +00:00
|
|
|
end
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2025-07-09 09:19:16 +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
|
2025-03-31 10:43:34 +02:00
|
|
|
@question = (search_params[:q] || "").strip
|
2019-02-27 12:50:02 +01:00
|
|
|
@tokens = scan_query_tokens(@question).uniq
|
2019-03-13 13:31:01 +01:00
|
|
|
|
|
|
|
|
unless @tokens.any?
|
2014-11-03 21:26:12 +01:00
|
|
|
@question = ""
|
2007-04-30 08:52:39 +00:00
|
|
|
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"]
|
2014-03-25 20:51:52 +02:00
|
|
|
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
|
2014-03-25 20:51:52 +02:00
|
|
|
end
|
|
|
|
|
|
2016-09-12 15:12:01 +02:00
|
|
|
def search_params
|
|
|
|
|
@search_params ||= permitted_params.search
|
|
|
|
|
end
|
2019-03-13 13:31:01 +01:00
|
|
|
|
|
|
|
|
def offset
|
2022-06-21 08:50:15 +02:00
|
|
|
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
|
2007-04-30 08:52:39 +00:00
|
|
|
end
|