Created
January 10, 2013 03:25
-
-
Save kyleslattery/4499168 to your computer and use it in GitHub Desktop.
Hubot script for getting current weather/forecast from Dark Sky
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Description | |
# Grabs the current forecast from Dark Sky | |
# | |
# Dependencies | |
# None | |
# | |
# Configuration | |
# HUBOT_DARK_SKY_API_KEY | |
# HUBOT_DARK_SKY_DEFAULT_LOCATION | |
# | |
# Commands: | |
# hubot weather - Get the weather for HUBOT_DARK_SKY_DEFAULT_LOCATION | |
# hubot weather <location> - Get the weather for <location> | |
# | |
# Notes: | |
# If HUBOT_DARK_SKY_DEFAULT_LOCATION is blank, weather commands without a location will be ignored | |
# | |
# Author: | |
# kyleslattery | |
module.exports = (robot) -> | |
robot.respond /weather ?(.+)?/i, (msg) -> | |
location = msg.match[1] || process.env.HUBOT_DARK_SKY_DEFAULT_LOCATION | |
return if not location | |
googleurl = "http://maps.googleapis.com/maps/api/geocode/json" | |
q = sensor: false, address: location | |
msg.http(googleurl) | |
.query(q) | |
.get() (err, res, body) -> | |
result = JSON.parse(body) | |
if result.results.length > 0 | |
lat = result.results[0].geometry.location.lat | |
lng = result.results[0].geometry.location.lng | |
darkSkyMe msg, lat,lng , (darkSkyText) -> | |
response = "Weather for #{result.results[0].formatted_address}\n#{darkSkyText}" | |
msg.send response | |
else | |
msg.send "Couldn't find #{location}" | |
darkSkyMe = (msg, lat, lng, cb) -> | |
url = "https://api.darkskyapp.com/v1/brief_forecast/#{process.env.HUBOT_DARK_SKY_API_KEY}/#{lat},#{lng}/" | |
msg.http(url) | |
.get() (err, res, body) -> | |
result = JSON.parse(body) | |
if result.error | |
cb "#{result.error}" | |
return | |
response = "Currently: #{result.currentSummary} (#{result.currentTemp}F)" | |
response += "\nNext hour: #{result.hourSummary}" | |
response += "\nToday: #{result.daySummary}" | |
cb response |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment