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 pathmta.coffee
50 lines (47 loc) · 1.51 KB
/
mta.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
# Description:
# See the status of NYC subways
#
# Dependencies:
# "xml2js": "0.1.14"
#
# Configuration:
# None
#
# Commands:
# hubot mta me <train> - the status of a nyc subway line
#
# Author:
# jgv
xml2js = require('xml2js')
module.exports = (robot) ->
robot.respond /mta\s*(?:me)?\s*(\w+)?/i, (msg) ->
mtaMe msg
mtaMe = (msg) ->
msg.http('http://web.mta.info/status/serviceStatus.txt')
.get() (err, res, body) ->
if err
throw err
parser = new xml2js.Parser({'explicitRoot' : 'service', 'normalize' : 'false' })
parser.parseString body, (err, res) ->
if err
throw err
re = new RegExp(msg.match[1], 'gi')
if msg.match[1].length is 1 or msg.match[1].toUpperCase() is 'SIR'
for j in res.service.subway
for k in j.line
if k.name.length > 0
str = k.name[0]
if str.match(re)
switch k.status
when "GOOD SERVICE"
msg.send "the #{str} train is ok!"
when "PLANNED WORK"
msg.send "heads up, the #{str} train has planned work (updated #{k.Time})"
when "SERVICE CHANGE"
msg.send "the #{str} train has service changes (updated #{k.Time})"
when "DELAYS"
msg.send "the #{str} train is delayed (updated #{k.Time})"
else
msg.send "the #{str} train status is #{k.status}"
else
msg.send "that's not a valid subway line!"