This repository was archived by the owner on Jun 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathgtalk.coffee
51 lines (44 loc) · 1.49 KB
/
gtalk.coffee
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
48
49
50
51
# Description:
# Send gtalk messages to channels via hubot
#
# Dependencies:
# "node-xmpp": "0.3.2"
#
# Configuration
# GTALK_ID
# GTALK_PASSWORD
# GTALK_ONLINE_ANNOUNCE
# GTALK_PRESENCE
# GTALK_SERVER
# GTALK_PORT
# GTALK_ROOM
#
# Commands:
# None
#
# Author:
# gstark
module.exports = (robot) ->
jid = process.env.GTALK_ID
password = process.env.GTALK_PASSWORD
online_announce = process.env.GTALK_ONLINE_ANNOUNCE
presence = process.env.GTALK_PRESENCE || "Echoing to campfire"
server = process.env.GTALK_SERVER || "talk.google.com"
port = process.env.GTALK_PORT || 5222
room = process.env.GTALK_ROOM
xmpp = require 'node-xmpp'
xmpp_client = new xmpp.Client({jid: jid, password: password, host: server, port: port });
message_handler = (stanza) ->
if stanza.is('message') and stanza.attrs.type != 'error'
message_body_element = stanza.getChild('body');
if message_body_element
robot.send { room: room }, "From: " + stanza.attrs.from + " " + message_body_element.getText()
online_handler = ->
xmpp_client.send(new xmpp.Element('presence', {}).c('show').t('chat').up().c('status').t(presence));
if (online_announce)
robot.send { room: room }, online_announce
error_handler = (error) ->
robot.send { room: room }, "Caught an error " + error
xmpp_client.on('online', online_handler)
xmpp_client.on('stanza', message_handler)
xmpp_client.on('error', error_handler)