Files

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

79 lines
2.4 KiB
Ruby
Raw Permalink Normal View History

2025-07-18 17:36:37 +01:00
# frozen_string_literal: true
# -- copyright
# OpenProject is an open source project management software.
# Copyright (C) the OpenProject GmbH
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
# Copyright (C) 2006-2013 Jean-Philippe Lang
# 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.
# ++
module Queries
module Loading
2024-02-07 18:54:00 +01:00
private
def load_query(duplicate:)
::Queries::Factory.find(params[:query_id],
query_class:,
params: permitted_query_params,
user: current_user,
duplicate:)
end
2024-02-07 18:54:00 +01:00
def load_query_or_deny_access
@query = load_query(duplicate: false)
render_403 unless @query
end
def build_query_or_deny_access
@query = load_query(duplicate: true)
2024-02-07 18:54:00 +01:00
render_403 unless @query
2024-01-23 16:48:37 +01:00
end
def permitted_query_params
query_params = {}
if params[:query]
query_params.merge!(params.require(:query).permit(:name))
end
2024-01-23 16:48:37 +01:00
query_params.merge!(::Queries::ParamsParser.parse(params))
2024-01-23 16:48:37 +01:00
query_params.with_indifferent_access
end
def query_class
controller_name = self.class.name.demodulize
model_name = if controller_name == "QueriesController"
self.class.name.deconstantize
else
controller_name.chomp("Controller")
end
"#{model_name.singularize}Query".constantize
end
end
end