fixes and bugsearch
This commit is contained in:
parent
3d195dea48
commit
0f6cca8fbc
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "hubot-raumgirl-new",
|
||||
"description": "ctdo raumgirl",
|
||||
"version": "0.0.1",
|
||||
"version": "0.0.2",
|
||||
"author": "henne@ctdo.de",
|
||||
"license": "MIT",
|
||||
|
||||
|
|
|
@ -38,6 +38,9 @@ module.exports = function(robot) {
|
|||
robot.hear(/^raumgirl: (rotgruen|gruenrot)$/i, function(r) {
|
||||
setLampel(1,0,1);
|
||||
});
|
||||
robot.hear(/^raumgirl: (aus|off)$/i, function(r) {
|
||||
setLampel(0,0,0);
|
||||
}
|
||||
// topic
|
||||
robot.adapter.bot.addListener('topic', function(channel, topic) {
|
||||
if(typeof(robot.brain.data.topics) !== 'Object') {
|
||||
|
@ -102,10 +105,12 @@ module.exports = function(robot) {
|
|||
});
|
||||
// new stuff
|
||||
robot.respond(/^raumgirl: status$/i, function(r) {
|
||||
console.log("status");
|
||||
robot.http("http://status.ctdo.de/api/simple/v2")
|
||||
.header('Accept', 'application/json')
|
||||
.get()(function(err, res, body) {
|
||||
var data = JSON.parse(body);
|
||||
console.log(body);
|
||||
r.reply("Derzeit im Treff: " + data.names.join(', '));
|
||||
})
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue