Skip to content

Instantly share code, notes, and snippets.

@ryanbateman
Last active August 29, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanbateman/11272384 to your computer and use it in GitHub Desktop.
Save ryanbateman/11272384 to your computer and use it in GitHub Desktop.
Hubot Underground status
# Description:
# See the current list of delays or incidents on the London Underground
#
# Dependencies:
# "cheerio": "0.12.1"
#
# Commands:
# hubot tube - Replies with a list of current incidents/delays on the London Underground
#
cheerio = require("cheerio")
module.exports = (robot) ->
robot.respond /tube$/i, (msg) ->
query msg, (body, err) ->
return msg.send "I couldn't seem to retrieve the current status of the Tube. Oh dear." if err
$ = cheerio.load body, { ignoreWhitespace: true, xmlMode: true, lowerCaseTags: true };
if $('linestatus').length == 0
return msg.send "Everything is fine on the Underground, it seems."
delays = []
$('linestatus').each (index, delay) ->
status = $(delay).attr('StatusDetails')
name = $(delay).children('line').attr('Name')
delays.push "#{name} - #{status}"
msg.send "Current issues on the Underground:\n #{delays.join('\n')}"
query = (msg, cb) ->
msg.http("http://cloud.tfl.gov.uk/TrackerNet/LineStatus/incidentsonly")
.get() (err, res, body) ->
cb(body, err)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment