mirror of
https://github.com/reality/dbot.git
synced 2024-11-23 20:39:25 +01:00
gmaps
This commit is contained in:
parent
d0db3b6a53
commit
0a6f1bd82a
2
install
2
install
@ -14,7 +14,7 @@ then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
npm install feedparser node-units tvdb crypto-js method-override 500px process async wordnik node-uuid underscore request sandbox express moment-timezone moment jade databank databank-redis ent passport passport-local password-hash connect-flash
|
npm install googlemaps feedparser node-units tvdb crypto-js method-override 500px process async wordnik node-uuid underscore request sandbox express moment-timezone moment jade databank databank-redis ent passport passport-local password-hash connect-flash
|
||||||
|
|
||||||
cd public/
|
cd public/
|
||||||
#wget http://twitter.github.com/bootstrap/assets/bootstrap.zip
|
#wget http://twitter.github.com/bootstrap/assets/bootstrap.zip
|
||||||
|
29
modules/gmaps/gmaps.js
Normal file
29
modules/gmaps/gmaps.js
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
/**
|
||||||
|
* Module Name: Google Maps
|
||||||
|
* Description: GMaps and ting
|
||||||
|
*/
|
||||||
|
var gm = require('googlemaps'),
|
||||||
|
_ = require('underscore')._;
|
||||||
|
|
||||||
|
var gmaps = function(dbot) {
|
||||||
|
this.commands = {
|
||||||
|
'~from': function(event) {
|
||||||
|
var from = event.input[1],
|
||||||
|
to = event.input[2],
|
||||||
|
departureNow = Math.floor((new Date()).getTime()/1000);
|
||||||
|
|
||||||
|
gm.directions(from, to, function(err, result) {
|
||||||
|
if(!err && result && result.status !== 'ZERO_RESULTS') {
|
||||||
|
event.reply('If you leave right now, it will take ' + result.routes[0].legs[0].duration.text + ' to get from ' + from + ' to ' + to + ' via public transport.');
|
||||||
|
} else {
|
||||||
|
event.reply('Apparently one cannot get from ' + from + ' to ' + to + ' using public transport. Do you accept the challenge?');
|
||||||
|
}
|
||||||
|
}, 'false', 'transit', null, null,null, null, null, departureNow);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
this.commands['~from'].regex = [/^from (.*) to (.*)/, 3];
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.fetch = function(dbot) {
|
||||||
|
return new gmaps(dbot);
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user