Created
December 16, 2013 19:55
-
-
Save luads/7993274 to your computer and use it in GitHub Desktop.
A post-receive hook to interact with asana tasks, refering the commits with a link to gitlist.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
To use this you have to include the task ID on the commit message. | |
Example: Fixing typo, #9283764018 | |
You can as well close a task within the commit message. | |
Example: Improving the docs, closes #9823761989 | |
""" | |
import sys | |
import subprocess | |
import re | |
from asana import asana | |
API_KEY = 'YOURKEY' | |
def get_commit_info(hash): | |
p = subprocess.Popen(['git', 'show', '--pretty=format:%cn%n%B', '-s', hash], | |
stdout=subprocess.PIPE) | |
lines = p.stdout.read().strip().split("\n") | |
author = lines[0].strip() | |
description = "\n".join([l.strip() for l in lines[1:]]) | |
task = re.findall('#(\d+)', description) | |
closes = re.findall('closes #(\d+)', description) | |
if len(task) > 0: | |
task = int(task[0]) | |
else: | |
return None | |
closes = len(closes) > 0 | |
return dict( | |
author = author, | |
task = task, | |
description = description, | |
closes = closes, | |
) | |
def post_to_asana(task, hash, author, description, ref, close=False): | |
api = asana.AsanaAPI(API_KEY, debug=False) | |
message = "%s commited on %s branch\n%s\nhttp://gitlist.example.com/repository.git/commit/%s" % (author, ref, description, hash) | |
api.add_story(task, message) | |
if close: | |
api.update_task(task, completed=True) | |
if __name__ == '__main__': | |
for line in sys.stdin.xreadlines(): | |
old, new, ref = line.strip().split(' ') | |
commit = get_commit_info(new) | |
if commit != None: | |
post_to_asana(task=commit['task'], author=commit['author'], hash=new, close=commit['closes'], | |
description=commit['description'], ref=ref.replace('refs/heads/', '')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment