debian-mirror-gitlab/app/services/issues/close_service.rb

45 lines
1.6 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
module Issues
class CloseService < Issues::BaseService
2017-08-17 22:00:37 +05:30
# Closes the supplied issue if the current user is able to do so.
2016-06-02 11:05:42 +05:30
def execute(issue, commit: nil, notifications: true, system_note: true)
2016-09-13 17:45:13 +05:30
return issue unless can?(current_user, :update_issue, issue)
2017-08-17 22:00:37 +05:30
close_issue(issue,
commit: commit,
notifications: notifications,
system_note: system_note)
end
# Closes the supplied issue without checking if the user is authorized to
# do so.
#
# The code calling this method is responsible for ensuring that a user is
# allowed to close the given issue.
def close_issue(issue, commit: nil, notifications: true, system_note: true)
2017-09-10 17:25:29 +05:30
if project.jira_tracker? && project.jira_service.active && issue.is_a?(ExternalIssue)
2017-08-17 22:00:37 +05:30
project.jira_service.close_issue(commit, issue)
2016-04-02 18:10:28 +05:30
todo_service.close_issue(issue, current_user)
2015-12-23 02:04:40 +05:30
return issue
end
2017-09-10 17:25:29 +05:30
if project.issues_enabled? && issue.close
2014-09-02 18:07:02 +05:30
event_service.close_issue(issue, current_user)
2016-06-02 11:05:42 +05:30
create_note(issue, commit) if system_note
notification_service.close_issue(issue, current_user) if notifications
2016-04-02 18:10:28 +05:30
todo_service.close_issue(issue, current_user)
2014-09-02 18:07:02 +05:30
execute_hooks(issue, 'close')
2017-09-10 17:25:29 +05:30
invalidate_cache_counts(issue, users: issue.assignees)
2018-03-17 18:26:18 +05:30
issue.update_project_counter_caches
2014-09-02 18:07:02 +05:30
end
issue
end
private
def create_note(issue, current_commit)
2015-09-11 14:41:01 +05:30
SystemNoteService.change_status(issue, issue.project, current_user, issue.state, current_commit)
2014-09-02 18:07:02 +05:30
end
end
end