2018-09-25 23:45:43 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-06-23 12:47:22 -04:00
|
|
|
class Projects::IssuesController < Projects::ApplicationController
|
2017-03-30 23:06:09 -04:00
|
|
|
include RendersNotes
|
2016-03-15 12:18:47 -04:00
|
|
|
include ToggleSubscriptionAction
|
2016-03-21 09:12:52 -04:00
|
|
|
include IssuableActions
|
2016-04-16 15:09:08 -04:00
|
|
|
include ToggleAwardEmoji
|
2016-07-23 19:28:12 -04:00
|
|
|
include IssuableCollections
|
2018-06-12 05:35:34 -04:00
|
|
|
include IssuesCalendar
|
2019-02-05 09:55:31 -05:00
|
|
|
include RecordUserLastActivity
|
2016-03-15 12:18:47 -04:00
|
|
|
|
2020-09-09 17:08:33 -04:00
|
|
|
ISSUES_EXCEPT_ACTIONS = %i[index calendar new create bulk_update import_csv export_csv service_desk].freeze
|
2021-12-13 13:15:18 -05:00
|
|
|
SET_ISSUABLES_INDEX_ONLY_ACTIONS = %i[index calendar service_desk].freeze
|
2018-10-24 05:13:58 -04:00
|
|
|
|
2018-11-28 14:06:02 -05:00
|
|
|
prepend_before_action(only: [:index]) { authenticate_sessionless_user!(:rss) }
|
|
|
|
prepend_before_action(only: [:calendar]) { authenticate_sessionless_user!(:ics) }
|
2020-04-21 11:21:10 -04:00
|
|
|
prepend_before_action :authenticate_user!, only: [:new, :export_csv]
|
2019-09-16 05:06:25 -04:00
|
|
|
prepend_before_action :store_uri, only: [:new, :show, :designs]
|
2017-03-06 15:18:39 -05:00
|
|
|
|
2021-04-08 14:09:32 -04:00
|
|
|
before_action :disable_query_limiting, only: [:create_merge_request, :move, :bulk_update]
|
2017-06-20 07:13:04 -04:00
|
|
|
before_action :check_issues_available!
|
2020-09-09 17:08:33 -04:00
|
|
|
before_action :issue, unless: ->(c) { ISSUES_EXCEPT_ACTIONS.include?(c.action_name.to_sym) }
|
|
|
|
after_action :log_issue_show, unless: ->(c) { ISSUES_EXCEPT_ACTIONS.include?(c.action_name.to_sym) }
|
2018-10-24 05:13:58 -04:00
|
|
|
|
2021-12-13 13:15:18 -05:00
|
|
|
before_action :set_issuables_index, if: ->(c) { SET_ISSUABLES_INDEX_ONLY_ACTIONS.include?(c.action_name.to_sym) }
|
2011-12-15 16:57:46 -05:00
|
|
|
|
|
|
|
# Allow write(create) issue
|
2015-06-26 10:44:21 -04:00
|
|
|
before_action :authorize_create_issue!, only: [:new, :create]
|
2011-12-15 16:57:46 -05:00
|
|
|
|
|
|
|
# Allow modify issue
|
2019-05-31 21:19:08 -04:00
|
|
|
before_action :authorize_update_issuable!, only: [:edit, :update, :move, :reorder]
|
2014-02-10 08:36:58 -05:00
|
|
|
|
2017-05-04 04:09:21 -04:00
|
|
|
# Allow create a new branch and empty WIP merge request from current issue
|
2018-04-06 13:58:53 -04:00
|
|
|
before_action :authorize_create_merge_request_from!, only: [:create_merge_request]
|
2017-05-04 04:09:21 -04:00
|
|
|
|
2018-12-30 22:23:50 -05:00
|
|
|
before_action :authorize_import_issues!, only: [:import_csv]
|
2019-03-11 04:52:40 -04:00
|
|
|
before_action :authorize_download_code!, only: [:related_branches]
|
2018-12-30 22:23:50 -05:00
|
|
|
|
2020-04-14 11:09:44 -04:00
|
|
|
# Limit the amount of issues created per minute
|
2021-12-10 10:10:24 -05:00
|
|
|
before_action -> { check_rate_limit!(:issues_create, scope: [@project, @current_user])},
|
|
|
|
only: [:create],
|
|
|
|
if: -> { Feature.disabled?('rate_limited_service_issues_create', project, default_enabled: :yaml) }
|
2020-04-14 11:09:44 -04:00
|
|
|
|
2019-10-16 05:07:51 -04:00
|
|
|
before_action do
|
2021-03-11 07:09:28 -05:00
|
|
|
push_frontend_feature_flag(:improved_emoji_picker, project, default_enabled: :yaml)
|
2021-09-15 08:11:13 -04:00
|
|
|
push_frontend_feature_flag(:vue_issues_list, project&.group, default_enabled: :yaml)
|
2021-06-14 11:09:48 -04:00
|
|
|
push_frontend_feature_flag(:iteration_cadences, project&.group, default_enabled: :yaml)
|
2019-10-16 05:07:51 -04:00
|
|
|
end
|
|
|
|
|
2020-05-04 08:09:46 -04:00
|
|
|
before_action only: :show do
|
2021-10-27 08:09:41 -04:00
|
|
|
push_frontend_feature_flag(:real_time_issue_sidebar, @project, default_enabled: :yaml)
|
2021-12-13 01:14:51 -05:00
|
|
|
push_frontend_feature_flag(:confidential_notes, project&.group, default_enabled: :yaml)
|
2021-04-19 08:09:04 -04:00
|
|
|
push_frontend_feature_flag(:issue_assignees_widget, @project, default_enabled: :yaml)
|
2021-11-16 04:13:21 -05:00
|
|
|
push_frontend_feature_flag(:paginated_issue_discussions, @project, default_enabled: :yaml)
|
2022-01-14 01:14:22 -05:00
|
|
|
push_frontend_feature_flag(:fix_comment_scroll, @project, default_enabled: :yaml)
|
2022-01-25 10:12:32 -05:00
|
|
|
push_frontend_feature_flag(:work_items, project, default_enabled: :yaml)
|
2020-06-28 23:09:01 -04:00
|
|
|
end
|
|
|
|
|
2020-01-06 07:07:56 -05:00
|
|
|
around_action :allow_gitaly_ref_name_caching, only: [:discussions]
|
|
|
|
|
2013-11-29 08:05:32 -05:00
|
|
|
respond_to :html
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2019-09-16 05:06:25 -04:00
|
|
|
alias_method :designs, :show
|
|
|
|
|
2021-10-27 11:13:41 -04:00
|
|
|
feature_category :team_planning, [
|
2020-10-08 14:08:32 -04:00
|
|
|
:index, :calendar, :show, :new, :create, :edit, :update,
|
|
|
|
:destroy, :move, :reorder, :designs, :toggle_subscription,
|
|
|
|
:discussions, :bulk_update, :realtime_changes,
|
|
|
|
:toggle_award_emoji, :mark_as_spam, :related_branches,
|
|
|
|
:can_create_branch, :create_merge_request
|
|
|
|
]
|
|
|
|
|
|
|
|
feature_category :service_desk, [:service_desk]
|
|
|
|
feature_category :importers, [:import_csv, :export_csv]
|
|
|
|
|
2020-12-01 07:09:17 -05:00
|
|
|
attr_accessor :vulnerability_id
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def index
|
2017-11-07 08:34:12 -05:00
|
|
|
@issues = @issuables
|
2017-01-20 16:35:39 -05:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
respond_to do |format|
|
2013-11-29 08:05:32 -05:00
|
|
|
format.html
|
2017-06-12 13:21:13 -04:00
|
|
|
format.atom { render layout: 'xml.atom' }
|
2013-11-29 08:05:32 -05:00
|
|
|
format.json do
|
|
|
|
render json: {
|
2016-04-09 00:09:09 -04:00
|
|
|
html: view_to_html_string("projects/issues/_issues"),
|
2016-04-20 12:00:12 -04:00
|
|
|
labels: @labels.as_json(methods: :text_color)
|
2013-11-29 08:05:32 -05:00
|
|
|
}
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-31 10:01:04 -04:00
|
|
|
def calendar
|
2018-06-12 05:35:34 -04:00
|
|
|
render_issues_calendar(@issuables)
|
2018-05-31 10:01:04 -04:00
|
|
|
end
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def new
|
2014-07-01 08:03:49 -04:00
|
|
|
params[:issue] ||= ActionController::Parameters.new(
|
2017-05-04 08:11:15 -04:00
|
|
|
assignee_ids: ""
|
2014-07-01 08:03:49 -04:00
|
|
|
)
|
2021-04-30 05:10:21 -04:00
|
|
|
build_params = issue_params.merge(
|
2017-03-10 03:19:12 -05:00
|
|
|
merge_request_to_resolve_discussions_of: params[:merge_request_to_resolve_discussions_of],
|
2020-05-08 05:09:39 -04:00
|
|
|
discussion_to_resolve: params[:discussion_to_resolve],
|
2021-04-30 05:10:21 -04:00
|
|
|
confidential: !!Gitlab::Utils.to_boolean(issue_params[:confidential])
|
2016-12-22 07:31:12 -05:00
|
|
|
)
|
2021-05-11 23:10:21 -04:00
|
|
|
service = ::Issues::BuildService.new(project: project, current_user: current_user, params: build_params)
|
2016-12-22 07:31:12 -05:00
|
|
|
|
2017-02-27 04:23:36 -05:00
|
|
|
@issue = @noteable = service.execute
|
2020-05-08 05:09:39 -04:00
|
|
|
|
2017-03-10 03:19:12 -05:00
|
|
|
@merge_request_to_resolve_discussions_of = service.merge_request_to_resolve_discussions_of
|
2021-09-15 20:11:46 -04:00
|
|
|
|
|
|
|
if params[:discussion_to_resolve]
|
|
|
|
Gitlab::UsageDataCounters::MergeRequestActivityUniqueCounter.track_resolve_thread_in_issue_action(user: current_user)
|
|
|
|
@discussion_to_resolve = service.discussions_to_resolve.first
|
|
|
|
end
|
2014-07-01 08:03:49 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
respond_with(@issue)
|
|
|
|
end
|
|
|
|
|
2017-10-26 07:04:07 -04:00
|
|
|
def edit
|
|
|
|
respond_with(@issue)
|
|
|
|
end
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def create
|
2021-06-21 08:07:45 -04:00
|
|
|
create_params = issue_params.merge(
|
2017-03-10 03:19:12 -05:00
|
|
|
merge_request_to_resolve_discussions_of: params[:merge_request_to_resolve_discussions_of],
|
2017-02-27 04:23:36 -05:00
|
|
|
discussion_to_resolve: params[:discussion_to_resolve]
|
|
|
|
)
|
|
|
|
|
2021-06-21 08:07:45 -04:00
|
|
|
spam_params = ::Spam::SpamParams.new_from_request(request: request)
|
|
|
|
service = ::Issues::CreateService.new(project: project, current_user: current_user, params: create_params, spam_params: spam_params)
|
2017-03-08 14:16:17 -05:00
|
|
|
@issue = service.execute
|
|
|
|
|
2021-02-05 13:09:44 -05:00
|
|
|
create_vulnerability_issue_feedback(issue)
|
2020-12-01 07:09:17 -05:00
|
|
|
|
2017-03-09 08:25:54 -05:00
|
|
|
if service.discussions_to_resolve.count(&:resolved?) > 0
|
2017-03-10 07:36:50 -05:00
|
|
|
flash[:notice] = if service.discussion_to_resolve_id
|
2019-03-27 12:52:52 -04:00
|
|
|
_("Resolved 1 discussion.")
|
2017-03-09 08:25:54 -05:00
|
|
|
else
|
2019-03-27 12:52:52 -04:00
|
|
|
_("Resolved all discussions.")
|
2017-03-09 08:25:54 -05:00
|
|
|
end
|
2017-03-08 14:16:17 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2021-08-11 02:10:02 -04:00
|
|
|
if @issue.valid?
|
|
|
|
redirect_to project_issue_path(@project, @issue)
|
|
|
|
else
|
|
|
|
# NOTE: this CAPTCHA support method is indirectly included via IssuableActions
|
|
|
|
with_captcha_check_html_format { render :new }
|
2012-02-29 15:38:24 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2017-08-14 03:26:19 -04:00
|
|
|
def move
|
|
|
|
params.require(:move_to_project_id)
|
|
|
|
|
2016-03-18 09:48:55 -04:00
|
|
|
if params[:move_to_project_id].to_i > 0
|
|
|
|
new_project = Project.find(params[:move_to_project_id])
|
2016-04-30 15:14:40 -04:00
|
|
|
return render_404 unless issue.can_move?(current_user, new_project)
|
|
|
|
|
2021-05-31 02:10:40 -04:00
|
|
|
@issue = ::Issues::MoveService.new(project: project, current_user: current_user).execute(issue, new_project)
|
2016-02-17 09:59:25 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
2014-06-04 11:52:35 -04:00
|
|
|
format.json do
|
2017-08-14 03:26:19 -04:00
|
|
|
render_issue_json
|
2014-06-04 11:52:35 -04:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2016-08-01 11:34:17 -04:00
|
|
|
|
|
|
|
rescue ActiveRecord::StaleObjectError
|
2017-01-16 13:43:03 -05:00
|
|
|
render_conflict_response
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2019-05-31 21:19:08 -04:00
|
|
|
def reorder
|
2021-05-11 23:10:21 -04:00
|
|
|
service = ::Issues::ReorderService.new(project: project, current_user: current_user, params: reorder_params)
|
2019-05-31 21:19:08 -04:00
|
|
|
|
|
|
|
if service.execute(issue)
|
|
|
|
head :ok
|
|
|
|
else
|
|
|
|
head :unprocessable_entity
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-12 09:55:54 -04:00
|
|
|
def related_branches
|
2020-08-27 02:10:37 -04:00
|
|
|
@related_branches = ::Issues::RelatedBranchesService
|
2021-05-11 23:10:21 -04:00
|
|
|
.new(project: project, current_user: current_user)
|
2020-05-04 02:10:10 -04:00
|
|
|
.execute(issue)
|
|
|
|
.map { |branch| branch.merge(link: branch_link(branch)) }
|
2016-04-12 09:55:54 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.json do
|
|
|
|
render json: {
|
|
|
|
html: view_to_html_string('projects/issues/_related_branches')
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-21 10:34:00 -04:00
|
|
|
def can_create_branch
|
|
|
|
can_create = current_user &&
|
|
|
|
can?(current_user, :push_code, @project) &&
|
2018-12-05 19:51:30 -05:00
|
|
|
@issue.can_be_worked_on?
|
2016-04-21 10:34:00 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.json do
|
2018-12-05 19:51:30 -05:00
|
|
|
render json: { can_create_branch: can_create, suggested_branch_name: @issue.suggested_branch_name }
|
2016-04-21 10:34:00 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-04 04:09:21 -04:00
|
|
|
def create_merge_request
|
2017-11-25 06:33:05 -05:00
|
|
|
create_params = params.slice(:branch_name, :ref).merge(issue_iid: issue.iid)
|
2020-05-14 05:07:53 -04:00
|
|
|
create_params[:target_project_id] = params[:target_project_id]
|
2021-05-11 23:10:21 -04:00
|
|
|
result = ::MergeRequests::CreateFromIssueService.new(project: project, current_user: current_user, mr_params: create_params).execute
|
2017-05-04 04:09:21 -04:00
|
|
|
|
|
|
|
if result[:status] == :success
|
|
|
|
render json: MergeRequestCreateSerializer.new.represent(result[:merge_request])
|
|
|
|
else
|
2020-04-02 08:08:18 -04:00
|
|
|
render json: result[:message], status: :unprocessable_entity
|
2017-05-04 04:09:21 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-21 11:21:10 -04:00
|
|
|
def export_csv
|
2020-10-16 14:09:04 -04:00
|
|
|
IssuableExportCsvWorker.perform_async(:issue, current_user.id, project.id, finder_options.to_h) # rubocop:disable CodeReuse/Worker
|
2020-04-21 11:21:10 -04:00
|
|
|
|
|
|
|
index_path = project_issues_path(project)
|
2021-09-16 11:12:47 -04:00
|
|
|
message = _('Your CSV export has started. It will be emailed to %{email} when complete.') % { email: current_user.notification_email_or_default }
|
2020-04-23 11:09:55 -04:00
|
|
|
redirect_to(index_path, notice: message)
|
2020-04-21 11:21:10 -04:00
|
|
|
end
|
|
|
|
|
2018-12-04 03:42:27 -05:00
|
|
|
def import_csv
|
2018-12-30 22:23:50 -05:00
|
|
|
if uploader = UploadService.new(project, params[:file]).execute
|
2020-02-14 16:09:08 -05:00
|
|
|
ImportIssuesCsvWorker.perform_async(current_user.id, project.id, uploader.upload.id) # rubocop:disable CodeReuse/Worker
|
2018-12-05 19:51:30 -05:00
|
|
|
|
|
|
|
flash[:notice] = _("Your issues are being imported. Once finished, you'll get a confirmation email.")
|
|
|
|
else
|
|
|
|
flash[:alert] = _("File upload error.")
|
|
|
|
end
|
|
|
|
|
|
|
|
redirect_to project_issues_path(project)
|
2018-12-04 03:42:27 -05:00
|
|
|
end
|
|
|
|
|
2020-07-13 14:09:16 -04:00
|
|
|
def service_desk
|
|
|
|
@issues = @issuables # rubocop:disable Gitlab/ModuleWithInstanceVariables
|
|
|
|
@users.push(User.support_bot) # rubocop:disable Gitlab/ModuleWithInstanceVariables
|
|
|
|
end
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
protected
|
2011-10-17 06:39:03 -04:00
|
|
|
|
2019-08-21 06:13:45 -04:00
|
|
|
def sorting_field
|
2019-01-06 19:00:48 -05:00
|
|
|
Issue::SORTING_PREFERENCE_FIELD
|
|
|
|
end
|
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2011-10-17 06:39:03 -04:00
|
|
|
def issue
|
2017-06-12 12:19:39 -04:00
|
|
|
return @issue if defined?(@issue)
|
2017-11-14 04:02:39 -05:00
|
|
|
|
2016-10-06 15:09:55 -04:00
|
|
|
# The Sortable default scope causes performance issues when used with find_by
|
2020-10-01 11:10:05 -04:00
|
|
|
@issuable = @noteable = @issue ||= @project.issues.inc_relations_for_view.iid_in(params[:id]).without_order.take!
|
2017-11-01 13:35:14 -04:00
|
|
|
@note = @project.notes.new(noteable: @issuable)
|
2017-06-12 12:19:39 -04:00
|
|
|
|
|
|
|
return render_404 unless can?(current_user, :read_issue, @issue)
|
|
|
|
|
|
|
|
@issue
|
2011-10-17 06:39:03 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2020-09-02 08:10:35 -04:00
|
|
|
|
|
|
|
def log_issue_show
|
|
|
|
return unless current_user && @issue
|
|
|
|
|
|
|
|
::Gitlab::Search::RecentIssues.new(user: current_user).log_view(@issue)
|
|
|
|
end
|
|
|
|
|
2016-03-15 12:18:47 -04:00
|
|
|
alias_method :subscribable_resource, :issue
|
2016-03-21 09:12:52 -04:00
|
|
|
alias_method :issuable, :issue
|
2016-04-16 15:09:08 -04:00
|
|
|
alias_method :awardable, :issue
|
2016-08-02 17:21:57 -04:00
|
|
|
alias_method :spammable, :issue
|
2011-12-15 16:57:46 -05:00
|
|
|
|
2017-06-29 13:06:35 -04:00
|
|
|
def spammable_path
|
|
|
|
project_issue_path(@project, @issue)
|
|
|
|
end
|
|
|
|
|
2017-05-04 04:09:21 -04:00
|
|
|
def authorize_create_merge_request!
|
2018-04-05 11:17:02 -04:00
|
|
|
render_404 unless can?(current_user, :push_code, @project) && @issue.can_be_worked_on?
|
2017-05-04 04:09:21 -04:00
|
|
|
end
|
|
|
|
|
2017-08-14 03:26:19 -04:00
|
|
|
def render_issue_json
|
|
|
|
if @issue.valid?
|
|
|
|
render json: serializer.represent(@issue)
|
|
|
|
else
|
|
|
|
render json: { errors: @issue.errors.full_messages }, status: :unprocessable_entity
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-06-26 07:30:07 -04:00
|
|
|
def issue_params
|
2021-12-24 13:13:33 -05:00
|
|
|
all_params = params.require(:issue).permit(
|
2019-12-12 22:07:50 -05:00
|
|
|
*issue_params_attributes,
|
|
|
|
sentry_issue_attributes: [:sentry_issue_identifier]
|
|
|
|
)
|
2021-12-24 13:13:33 -05:00
|
|
|
|
|
|
|
clean_params(all_params)
|
2017-06-29 06:43:47 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def issue_params_attributes
|
|
|
|
%i[
|
|
|
|
title
|
|
|
|
assignee_id
|
|
|
|
position
|
|
|
|
description
|
|
|
|
confidential
|
|
|
|
milestone_id
|
|
|
|
due_date
|
|
|
|
state_event
|
|
|
|
task_num
|
|
|
|
lock_version
|
2017-08-30 10:57:50 -04:00
|
|
|
discussion_locked
|
2020-08-17 08:10:12 -04:00
|
|
|
issue_type
|
2021-04-30 05:10:21 -04:00
|
|
|
] + [{ label_ids: [], assignee_ids: [], update_task: [:index, :checked, :line_number, :line_source] }]
|
2020-08-17 08:10:12 -04:00
|
|
|
end
|
|
|
|
|
2019-05-31 21:19:08 -04:00
|
|
|
def reorder_params
|
|
|
|
params.permit(:move_before_id, :move_after_id, :group_full_path)
|
|
|
|
end
|
|
|
|
|
2018-11-28 14:06:02 -05:00
|
|
|
def store_uri
|
2020-10-16 14:09:04 -04:00
|
|
|
if request.get? && request.format.html?
|
2017-05-19 14:35:08 -04:00
|
|
|
store_location_for :user, request.fullpath
|
|
|
|
end
|
2017-03-23 13:43:47 -04:00
|
|
|
end
|
2017-06-23 18:10:05 -04:00
|
|
|
|
|
|
|
def serializer
|
|
|
|
IssueSerializer.new(current_user: current_user, project: issue.project)
|
|
|
|
end
|
2017-11-01 13:35:14 -04:00
|
|
|
|
|
|
|
def update_service
|
2021-06-21 08:07:45 -04:00
|
|
|
spam_params = ::Spam::SpamParams.new_from_request(request: request)
|
|
|
|
::Issues::UpdateService.new(project: project, current_user: current_user, params: issue_params, spam_params: spam_params)
|
2017-11-01 13:35:14 -04:00
|
|
|
end
|
2017-11-07 08:34:12 -05:00
|
|
|
|
2018-02-20 07:33:49 -05:00
|
|
|
def finder_type
|
|
|
|
IssuesFinder
|
2017-11-07 08:34:12 -05:00
|
|
|
end
|
2018-01-15 10:21:04 -05:00
|
|
|
|
2021-03-16 14:11:53 -04:00
|
|
|
def disable_query_limiting
|
2018-01-15 10:21:04 -05:00
|
|
|
# Also see the following issues:
|
|
|
|
#
|
2021-03-24 23:09:35 -04:00
|
|
|
# 1. https://gitlab.com/gitlab-org/gitlab/-/issues/20815
|
|
|
|
# 2. https://gitlab.com/gitlab-org/gitlab/-/issues/20816
|
|
|
|
# 3. https://gitlab.com/gitlab-org/gitlab/-/issues/21068
|
|
|
|
Gitlab::QueryLimiting.disable!('https://gitlab.com/gitlab-org/gitlab/-/issues/20814')
|
2018-01-15 10:21:04 -05:00
|
|
|
end
|
2020-04-14 11:09:44 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2021-12-24 13:13:33 -05:00
|
|
|
def clean_params(all_params)
|
|
|
|
issue_type = all_params[:issue_type].to_s
|
|
|
|
all_params.delete(:issue_type) unless WorkItems::Type.allowed_types_for_issues.include?(issue_type)
|
|
|
|
|
|
|
|
all_params
|
|
|
|
end
|
|
|
|
|
2020-07-13 14:09:16 -04:00
|
|
|
def finder_options
|
|
|
|
options = super
|
|
|
|
|
2020-09-17 05:09:32 -04:00
|
|
|
options[:issue_types] = Issue::TYPES_FOR_LIST
|
2020-07-13 14:09:16 -04:00
|
|
|
|
2020-09-17 05:09:32 -04:00
|
|
|
if service_desk?
|
|
|
|
options.reject! { |key| key == 'author_username' || key == 'author_id' }
|
|
|
|
options[:author_id] = User.support_bot
|
|
|
|
end
|
2020-07-13 14:09:16 -04:00
|
|
|
|
|
|
|
options
|
|
|
|
end
|
|
|
|
|
2020-05-04 02:10:10 -04:00
|
|
|
def branch_link(branch)
|
|
|
|
project_compare_path(project, from: project.default_branch, to: branch[:name])
|
|
|
|
end
|
|
|
|
|
2020-07-13 14:09:16 -04:00
|
|
|
def service_desk?
|
|
|
|
action_name == 'service_desk'
|
|
|
|
end
|
2020-12-01 07:09:17 -05:00
|
|
|
|
|
|
|
# Overridden in EE
|
2021-02-05 13:09:44 -05:00
|
|
|
def create_vulnerability_issue_feedback(issue); end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
Projects::IssuesController.prepend_mod_with('Projects::IssuesController')
|