2014-04-02 08:38:24 -04:00
|
|
|
module Issues
|
2014-04-02 12:55:23 -04:00
|
|
|
class CloseService < Issues::BaseService
|
2016-10-07 09:20:57 -04:00
|
|
|
# Closes the supplied issue if the current user is able to do so.
|
2016-03-17 04:54:16 -04:00
|
|
|
def execute(issue, commit: nil, notifications: true, system_note: true)
|
2016-08-09 11:51:40 -04:00
|
|
|
return issue unless can?(current_user, :update_issue, issue)
|
|
|
|
|
2016-10-07 09:20:57 -04:00
|
|
|
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)
|
2015-12-17 17:08:14 -05:00
|
|
|
if project.jira_tracker? && project.jira_service.active
|
|
|
|
project.jira_service.execute(commit, issue)
|
2016-02-20 08:59:59 -05:00
|
|
|
todo_service.close_issue(issue, current_user)
|
2015-12-17 17:08:14 -05:00
|
|
|
return issue
|
|
|
|
end
|
|
|
|
|
2015-06-12 01:39:50 -04:00
|
|
|
if project.default_issues_tracker? && issue.close
|
2014-04-02 08:38:24 -04:00
|
|
|
event_service.close_issue(issue, current_user)
|
2016-03-15 05:14:39 -04:00
|
|
|
create_note(issue, commit) if system_note
|
|
|
|
notification_service.close_issue(issue, current_user) if notifications
|
2016-02-20 08:59:59 -05:00
|
|
|
todo_service.close_issue(issue, current_user)
|
2014-05-23 09:16:03 -04:00
|
|
|
execute_hooks(issue, 'close')
|
2014-04-02 08:38:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
issue
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def create_note(issue, current_commit)
|
2015-05-09 18:18:50 -04:00
|
|
|
SystemNoteService.change_status(issue, issue.project, current_user, issue.state, current_commit)
|
2014-04-02 08:38:24 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|