-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgithub-credentials.coffee
More file actions
47 lines (39 loc) · 1.39 KB
/
github-credentials.coffee
File metadata and controls
47 lines (39 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Description:
# Github Credentials allows you to map your user against your GitHub user.
# This is specifically in order to work with apps that have GitHub Oauth users.
#
# Dependencies:
# None
#
# Configuration:
# None
#
# Commands:
# hubot who do you know - List all the users with github logins tracked by Hubot
# hubot i am `maddox` - map your user to the github login `maddox`
# hubot who am i - reveal your mapped github login
# hubot forget me - de-map your user to your github login
#
# Author:
# maddox
module.exports = (robot) ->
robot.respond /who do you know/i, (msg) ->
theReply = "Here is who I know:\n"
for own key, user of robot.brain.data.users
if(user.githubLogin)
theReply += user.name + " is " + user.githubLogin + "\n"
msg.send theReply
robot.respond /i am ([a-z0-9-]+)/i, (msg) ->
githubLogin = msg.match[1]
msg.message.user.githubLogin = githubLogin
msg.send "Ok, you are " + githubLogin + " on GitHub"
robot.respond /who am i/i, (msg) ->
user = msg.message.user
if user.githubLogin
msg.reply "You are known as " + user.githubLogin + " on GitHub"
else
msg.reply "I don't know who you are. You should probably identify yourself with your GitHub login"
robot.respond /forget me/i, (msg) ->
user = msg.message.user
user.githubLogin = null
msg.reply("Ok, I have no idea who you are anymore.")