# frozen_string_literal: true module Issues class ReopenService < Issues::BaseService # TODO: this is to be removed once we get to rename the IssuableBaseService project param to container def initialize(container:, current_user: nil, params: {}) super(project: container, current_user: current_user, params: params) end def execute(issue, skip_authorization: false) return issue unless can_reopen?(issue, skip_authorization: skip_authorization) if issue.reopen event_service.reopen_issue(issue, current_user) create_note(issue, 'reopened') notification_service.async.reopen_issue(issue, current_user) perform_incident_management_actions(issue) execute_hooks(issue, 'reopen') invalidate_cache_counts(issue, users: issue.assignees) issue.update_project_counter_caches delete_milestone_closed_issue_counter_cache(issue.milestone) track_incident_action(current_user, issue, :incident_reopened) end issue end private # overriding this because IssuableBaseService#constructor_container_arg returns { project: value } # Issues::ReopenService constructor signature is different now, it takes container instead of project also # IssuableBaseService#change_state dynamically picks one of the `Issues::ReopenService`, `Epics::ReopenService` or # MergeRequests::ReopenService, so we need this method to return { }container: value } for Issues::ReopenService def self.constructor_container_arg(value) { container: value } end def can_reopen?(issue, skip_authorization: false) skip_authorization || can?(current_user, :reopen_issue, issue) end def perform_incident_management_actions(issue) return unless issue.incident? create_timeline_event(issue) end def create_note(issue, state = issue.state) SystemNoteService.change_status(issue, issue.project, current_user, state, nil) end def create_timeline_event(issue) IncidentManagement::TimelineEvents::CreateService.reopen_incident(issue, current_user) end end end Issues::ReopenService.prepend_mod_with('Issues::ReopenService')