2014-06-13 10:19:08 -04:00
|
|
|
module Gitlab
|
2015-04-03 12:03:26 -04:00
|
|
|
class ClosingIssueExtractor
|
2014-06-13 10:19:08 -04:00
|
|
|
ISSUE_CLOSING_REGEX = Regexp.new(Gitlab.config.gitlab.issue_closing_pattern)
|
|
|
|
|
2015-04-03 12:03:26 -04:00
|
|
|
def initialize(project, current_user = nil)
|
|
|
|
@extractor = Gitlab::ReferenceExtractor.new(project, current_user)
|
|
|
|
end
|
2014-09-17 13:08:35 -04:00
|
|
|
|
2015-04-03 12:03:26 -04:00
|
|
|
def closed_by_message(message)
|
|
|
|
return [] if message.nil?
|
2015-05-21 16:35:15 -04:00
|
|
|
|
2015-04-03 12:03:26 -04:00
|
|
|
closing_statements = message.scan(ISSUE_CLOSING_REGEX).
|
|
|
|
map { |ref| ref[0] }.join(" ")
|
2014-09-17 13:08:35 -04:00
|
|
|
|
2015-04-03 12:03:26 -04:00
|
|
|
@extractor.analyze(closing_statements)
|
2014-09-17 13:08:35 -04:00
|
|
|
|
2015-04-03 12:03:26 -04:00
|
|
|
@extractor.issues
|
2014-06-13 10:19:08 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|