Skip to content
Snippets Groups Projects

Better support for referencing and closing issues in asana_service.rb

Merged username-removed-303001 requested to merge mikew1/gitlab-ce:better-asana-refs into master
+ 111
48
Compare changes
  • Side-by-side
  • Inline
Files
@@ -40,8 +40,8 @@ get the commit comment added to it.
@@ -40,8 +40,8 @@ get the commit comment added to it.
You can also close a task with a message containing: `fix #123456`.
You can also close a task with a message containing: `fix #123456`.
You can find your Api Keys here:
You can create a Personal Access Token here:
http://developer.asana.com/documentation/#api_keys'
http://app.asana.com/-/account_api'
end
end
def to_param
def to_param
@@ -53,14 +53,12 @@ http://developer.asana.com/documentation/#api_keys'
@@ -53,14 +53,12 @@ http://developer.asana.com/documentation/#api_keys'
{
{
type: 'text',
type: 'text',
name: 'api_key',
name: 'api_key',
placeholder: 'User API token. User must have access to task,
placeholder: 'User Personal Access Token. User must have access to task, all comments will be attributed to this user.'
all comments will be attributed to this user.'
},
},
{
{
type: 'text',
type: 'text',
name: 'restrict_to_branch',
name: 'restrict_to_branch',
placeholder: 'Comma-separated list of branches which will be
placeholder: 'Comma-separated list of branches which will be automatically inspected. Leave blank to include all branches.'
automatically inspected. Leave blank to include all branches.'
}
}
]
]
end
end
@@ -69,58 +67,58 @@ automatically inspected. Leave blank to include all branches.'
@@ -69,58 +67,58 @@ automatically inspected. Leave blank to include all branches.'
%w(push)
%w(push)
end
end
 
def client
 
@_client ||= begin
 
Asana::Client.new do |c|
 
c.authentication :access_token, api_key
 
end
 
end
 
end
 
def execute(data)
def execute(data)
return unless supported_events.include?(data[:object_kind])
return unless supported_events.include?(data[:object_kind])
Asana.configure do |client|
# check the branch restriction is poplulated and branch is not included
client.api_key = api_key
end
user = data[:user_name]
branch = Gitlab::Git.ref_name(data[:ref])
branch = Gitlab::Git.ref_name(data[:ref])
branch_restriction = restrict_to_branch.to_s
branch_restriction = restrict_to_branch.to_s
# check the branch restriction is poplulated and branch is not included
if branch_restriction.length > 0 && branch_restriction.index(branch).nil?
if branch_restriction.length > 0 && branch_restriction.index(branch).nil?
return
return
end
end
 
user = data[:user_name]
project_name = project.name_with_namespace
project_name = project.name_with_namespace
push_msg = user + ' pushed to branch ' + branch + ' of ' + project_name
data[:commits].each do |commit|
data[:commits].each do |commit|
check_commit(' ( ' + commit[:url] + ' ): ' + commit[:message], push_msg)
push_msg = "#{user} pushed to branch #{branch} of #{project_name} ( #{commit[:url]} ):"
 
check_commit(commit[:message], push_msg)
end
end
end
end
def check_commit(message, push_msg)
def check_commit(message, push_msg)
task_list = []
# matches either:
close_list = []
# - #1234
# - https://app.asana.com/0/0/1234
message.split("\n").each do |line|
# optionally preceded with:
# look for a task ID or a full Asana url
# - fix/ed/es/ing
task_list.concat(line.scan(/#(\d+)/))
# - close/s/d
task_list.concat(line.scan(/https:\/\/app\.asana\.com\/\d+\/\d+\/(\d+)/))
# - closing
# look for a word starting with 'fix' followed by a task ID
issue_finder = /(fix\w*|clos[ei]\w*+)?\W*(?:https:\/\/app\.asana\.com\/\d+\/\d+\/(\d+)|#(\d+))/i
close_list.concat(line.scan(/(fix\w*)\W*#(\d+)/i))
end
message.scan(issue_finder).each do |tuple|
# tuple will be
# post commit to every taskid found
# [ 'fix', 'id_from_url', 'id_from_pound' ]
task_list.each do |taskid|
taskid = tuple[2] || tuple[1]
task = Asana::Task.find(taskid[0])
begin
if task
task = Asana::Task.find_by_id(client, taskid)
task.create_story(text: push_msg + ' ' + message)
task.add_comment(text: "#{push_msg} #{message}")
end
end
if tuple[0]
task.update(completed: true)
# close all tasks that had 'fix(ed/es/ing) #:id' in them
end
close_list.each do |taskid|
rescue => e
task = Asana::Task.find(taskid.last)
Rails.logger.error(e.message)
next
if task
task.modify(completed: true)
end
end
end
end
end
end
Loading