dockerfiles/hubot
kev 392b574128 update 2019-10-20 11:31:17 +08:00
..
arm update 2019-10-20 11:31:17 +08:00
data update hubot 2017-01-11 02:12:23 +08:00
Dockerfile update hubot 2019-08-03 18:08:02 +08:00
README.md update hubot 2017-04-24 18:04:33 +08:00
docker-compose.yml update hubot 2017-04-24 18:04:33 +08:00

hubot

Hubot is a customizable, life embetterment robot commissioned by github. Hubot's power comes through scripts.

docker-compse.yml

hubot:
  image: vimagick/hubot
  ports:
    - "8080:8080"
  volumes:
    - ./data:/home/hubot/scripts
  environment:
    - HUBOT_SLACK_TOKEN=xoxb-xxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxx
    - HUBOT_AUTH_ADMIN=UXXXXXXXX
  restart: always
  • Click this to generate HUBOT_SLACK_TOKEN.
  • Click this to get HUBOT_AUTH_ADMIN.

up and running

$ docker-compose up -d
$ docker-compose exec hubot sh
>>> npm install --save hubot-auth
>>> vi external-scripts.json
>>> exit
$ vi data/example.coffee
$ docker-compose restart
module.exports = (robot) ->

  robot.respond /who is @?([\w .\-]+)\?*$/i, (res) ->
    name = res.match[1].trim()
    users = robot.brain.usersForFuzzyName(name)
    for user in users
      delete user['slack']
      user = JSON.stringify user, null, 2
      res.send "```#{user}```"

  robot.respond /shell:?\s+(.+)/i, (res) ->
    cmd = res.match[1]
    user = robot.brain.userForName(res.message.user.name)
    if robot.auth.hasRole(user, ["ops"])
      cp = require "child_process"
      cp.exec cmd, (error, stdout, stderr) ->
        res.send "```#{stdout}```" if stdout
        res.send "```#{stderr}```" if stderr
    else
      res.reply "Access Denied!"

chat-ops

kevin [5:25 PM] what roles do I have
hubot [5:25 PM] kevin has the following roles: admin.

kevin [5:24 PM] who is kevin
hubot [5:24 PM] { "id": "UXXXXXXXX", "name": "kevin" }

kevin [5:26 PM] kevin has ops role
hubot [5:26 PM] OK, kevin has the 'ops' role.

kevin [5:27 PM] shell date
hubot [5:27 PM] Sat Jan 21 10:08:28 UTC 2017

kevin [5:28 PM] kevin doesn't have ops role
hubot [5:28 PM] OK, kevin doesn't have the 'ops' role.

kevin [5:29 PM] shell date
hubot [5:29 PM] Access Denied!