UNPKG

hubot-phabs

Version:

A hubot plugin for communication with a Phabricator instance.

45 lines (39 loc) 1.11 kB
# Description: # declare events usable programmaticaly by other commands # # Dependencies: # # Configuration: # PHABRICATOR_URL # PHABRICATOR_API_KEY # # Commands: # # Author: # mose Phabricator = require '../lib/phabricator' module.exports = (robot) -> robot.phab ?= new Phabricator robot, process.env phab = robot.phab # robot.respond ( # /phtest new ([-_a-zA-Z0-9]+)(?::([-_a-zA-Z0-9]+))? ([^=]+)(?: *@([^=]+))?(?: = (.*))?$/ # ), (msg) -> # data = # project: msg.match[1] # template: msg.match[2] # title: msg.match[3] # description: msg.match[5] # user: msg.envelope.user # assign: msg.match[4] # announce: msg.envelope.room # phab.getPermission(msg.envelope.user, 'phuser') # .then -> # robot.emit 'phab.createTask', data robot.on 'phab.createTask', (data) -> phab.createTask(data) .then (res) -> robot.logger.info "Task T#{res.id} created = #{res.url}" if data.announce? robot.messageRoom data.announce, "Task T#{res.id} created = #{res.url}" .catch (e) -> robot.logger.error e