Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Now with cat breeds! #85

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion scripts/cat_fact.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,29 @@ module.exports = function (robot) {
robot.respond(/catfact/i, function(msg) {
return msg.http(`https://catfact.ninja/fact?max_length=140`)
.get()(function(err, res, body) {
let jsonBody = JSON.parse(body);
if (err) {
return msg.send(`The doggos stole the catfacts!`);
} else {
return msg.send(res.facts[0]);
return msg.send(jsonBody.fact);
}
});
});

robot.respond(/catbreed/i, function(msg) {
return msg.http(`https://catfact.ninja/breeds?limit=1`)
.get()(function(err, res, body) {
const data = JSON.parse(body);
if (err) {
return msg.send(`Silly hooman! Only doggos have breeds!`);
} else {
let breed = data.breed
let country = data.country
let origin = data.origin
let coat = data.coat
let pattern = data.pattern
let reply = `Today's Cat Breed is ${breed}!\nThey are from ${country}, have a ${origin} origin and a ${coat} coat with ${pattern} patterns.`
return msg.send(reply);
}
});
});
Expand Down