mirror of
https://github.com/abocn/TelegramBot.git
synced 2025-03-10 12:49:57 +00:00
Make all animal commands into one file
This commit is contained in:
parent
f8c54da5a2
commit
5b78e542de
82
src/commands/animal.js
Normal file
82
src/commands/animal.js
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
const Resources = require('../props/resources.json');
|
||||||
|
const { getStrings } = require('../plugins/checklang.js');
|
||||||
|
const { isOnSpamWatch } = require('../plugins/lib-spamwatch/spamwatch.js');
|
||||||
|
const spamwatchMiddleware = require('../plugins/lib-spamwatch/Middleware.js')(isOnSpamWatch);
|
||||||
|
const axios = require("axios");
|
||||||
|
|
||||||
|
module.exports = (bot) => {
|
||||||
|
bot.command("duck", spamwatchMiddleware, async (ctx) => {
|
||||||
|
const Strings = getStrings(ctx.from.language_code);
|
||||||
|
try {
|
||||||
|
const response = await axios(Resources.duckApi);
|
||||||
|
ctx.replyWithPhoto(response.data.url, {
|
||||||
|
caption: "🦆",
|
||||||
|
reply_to_message_id: ctx.message.message_id
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
const message = Strings.duckApiErr.replace('{error}', error.message);
|
||||||
|
ctx.reply(message, {
|
||||||
|
parse_mode: 'Markdown',
|
||||||
|
reply_to_message_id: ctx.message.message_id
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
bot.command("fox", spamwatchMiddleware, async (ctx) => {
|
||||||
|
const Strings = getStrings(ctx.from.language_code);
|
||||||
|
try {
|
||||||
|
const response = await axios(Resources.foxApi);
|
||||||
|
ctx.replyWithPhoto(response.data.image, {
|
||||||
|
caption: "🦊",
|
||||||
|
reply_to_message_id: ctx.message.message_id
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
const message = Strings.foxApiErr.replace('{error}', error.message);
|
||||||
|
ctx.reply(message, {
|
||||||
|
parse_mode: 'Markdown',
|
||||||
|
reply_to_message_id: ctx.message.message_id
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
bot.command("dog", spamwatchMiddleware, async (ctx) => {
|
||||||
|
const Strings = getStrings(ctx.from.language_code);
|
||||||
|
try {
|
||||||
|
const response = await axios(Resources.dogApi);
|
||||||
|
ctx.replyWithPhoto(response.data.message, {
|
||||||
|
caption: "🐶",
|
||||||
|
reply_to_message_id: ctx.message.message_id
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
const message = Strings.foxApiErr.replace('{error}', error.message);
|
||||||
|
ctx.reply(message, {
|
||||||
|
parse_mode: 'Markdown',
|
||||||
|
reply_to_message_id: ctx.message.message_id
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
bot.command("cat", spamwatchMiddleware, async (ctx) => {
|
||||||
|
const Strings = getStrings(ctx.from.language_code);
|
||||||
|
const apiUrl = `${Resources.catApi}?json=true`;
|
||||||
|
const response = await axios.get(apiUrl);
|
||||||
|
const data = response.data;
|
||||||
|
const imageUrl = `${Resources.catApi}/${data._id}`;
|
||||||
|
|
||||||
|
try {
|
||||||
|
await ctx.replyWithPhoto(imageUrl, {
|
||||||
|
caption: `🐱`,
|
||||||
|
parse_mode: 'Markdown',
|
||||||
|
reply_to_message_id: ctx.message.message_id
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
ctx.reply(Strings.catImgErr, {
|
||||||
|
parse_mode: 'Markdown',
|
||||||
|
reply_to_message_id: ctx.message.message_id
|
||||||
|
});
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
@ -1,68 +0,0 @@
|
|||||||
const Resources = require('../props/resources.json');
|
|
||||||
const { getStrings } = require('../plugins/checklang.js');
|
|
||||||
const { isOnSpamWatch } = require('../plugins/lib-spamwatch/spamwatch.js');
|
|
||||||
const spamwatchMiddleware = require('../plugins/lib-spamwatch/Middleware.js')(isOnSpamWatch);
|
|
||||||
const axios = require('axios');
|
|
||||||
|
|
||||||
module.exports = (bot) => {
|
|
||||||
// bot.command("cat", spamwatchMiddleware, async (ctx) => {
|
|
||||||
// const Strings = getStrings(ctx.from.language_code);
|
|
||||||
// const userInput = ctx.message.text.split(' ').slice(1).join(' ').replace(/\s+/g, '');
|
|
||||||
// let request = "";
|
|
||||||
|
|
||||||
// if (userInput && userInput.includes("gif")) {
|
|
||||||
// request = `/gif${userInput.replace("gif", "")}`;
|
|
||||||
// const apiUrl = `https://cataas.com/cat${request}`;
|
|
||||||
|
|
||||||
// try {
|
|
||||||
// await ctx.replyWithAnimation(apiUrl, {
|
|
||||||
// caption: `🐱`,
|
|
||||||
// parse_mode: 'Markdown',
|
|
||||||
// reply_to_message_id: ctx.message.message_id
|
|
||||||
// });
|
|
||||||
// } catch (error) {
|
|
||||||
// ctx.reply(Strings.catGifErr, {
|
|
||||||
// parse_mode: 'Markdown',
|
|
||||||
// reply_to_message_id: ctx.message.message_id
|
|
||||||
// });
|
|
||||||
// };
|
|
||||||
// } else {
|
|
||||||
// request = userInput ? `/${userInput}` : '';
|
|
||||||
// const apiUrl = `https://cataas.com/cat${request}`;
|
|
||||||
|
|
||||||
// try {
|
|
||||||
// await ctx.replyWithPhoto(apiUrl, {
|
|
||||||
// caption: `🐱`,
|
|
||||||
// parse_mode: 'Markdown',
|
|
||||||
// reply_to_message_id: ctx.message.message_id
|
|
||||||
// });
|
|
||||||
// } catch (error) {
|
|
||||||
// ctx.reply(Strings.catImgErr, {
|
|
||||||
// parse_mode: 'Markdown',
|
|
||||||
// reply_to_message_id: ctx.message.message_id
|
|
||||||
// });
|
|
||||||
// };
|
|
||||||
// };
|
|
||||||
// });
|
|
||||||
|
|
||||||
bot.command("cat", spamwatchMiddleware, async (ctx) => {
|
|
||||||
const Strings = getStrings(ctx.from.language_code);
|
|
||||||
const apiUrl = `${Resources.catApi}?json=true`;
|
|
||||||
const response = await axios.get(apiUrl);
|
|
||||||
const data = response.data;
|
|
||||||
const imageUrl = `${Resources.catApi}/${data._id}`;
|
|
||||||
|
|
||||||
try {
|
|
||||||
await ctx.replyWithPhoto(imageUrl, {
|
|
||||||
caption: `🐱`,
|
|
||||||
parse_mode: 'Markdown',
|
|
||||||
reply_to_message_id: ctx.message.message_id
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
ctx.reply(Strings.catImgErr, {
|
|
||||||
parse_mode: 'Markdown',
|
|
||||||
reply_to_message_id: ctx.message.message_id
|
|
||||||
});
|
|
||||||
};
|
|
||||||
});
|
|
||||||
};
|
|
@ -1,27 +0,0 @@
|
|||||||
const Resources = require('../props/resources.json');
|
|
||||||
const { getStrings } = require('../plugins/checklang.js');
|
|
||||||
const { isOnSpamWatch } = require('../plugins/lib-spamwatch/spamwatch.js');
|
|
||||||
const spamwatchMiddleware = require('../plugins/lib-spamwatch/Middleware.js')(isOnSpamWatch);
|
|
||||||
const axios = require('axios');
|
|
||||||
|
|
||||||
module.exports = (bot) => {
|
|
||||||
bot.command("dog", spamwatchMiddleware, async (ctx) => {
|
|
||||||
const Strings = getStrings(ctx.from.language_code);
|
|
||||||
const apiUrl = Resources.dogApi;
|
|
||||||
const response = await axios.get(apiUrl);
|
|
||||||
const data = response.data;
|
|
||||||
|
|
||||||
try {
|
|
||||||
await ctx.replyWithPhoto(data.message, {
|
|
||||||
caption: `🐶`,
|
|
||||||
parse_mode: 'Markdown',
|
|
||||||
reply_to_message_id: ctx.message.message_id
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
ctx.reply(Strings.dogImgErr, {
|
|
||||||
parse_mode: 'Markdown',
|
|
||||||
reply_to_message_id: ctx.message.message_id
|
|
||||||
});
|
|
||||||
};
|
|
||||||
});
|
|
||||||
};
|
|
@ -1,25 +0,0 @@
|
|||||||
const Resources = require('../props/resources.json');
|
|
||||||
const { getStrings } = require('../plugins/checklang.js');
|
|
||||||
const { isOnSpamWatch } = require('../plugins/lib-spamwatch/spamwatch.js');
|
|
||||||
const spamwatchMiddleware = require('../plugins/lib-spamwatch/Middleware.js')(isOnSpamWatch);
|
|
||||||
const axios = require("axios");
|
|
||||||
|
|
||||||
module.exports = (bot) => {
|
|
||||||
bot.command("duck", spamwatchMiddleware, async (ctx) => {
|
|
||||||
const Strings = getStrings(ctx.from.language_code);
|
|
||||||
try {
|
|
||||||
const response = await axios(Resources.duckApi);
|
|
||||||
ctx.replyWithPhoto(response.data.url, {
|
|
||||||
caption: response.data.message,
|
|
||||||
reply_to_message_id: ctx.message.message_id
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
const message = Strings.duckApiErr.replace('{error}', error.message);
|
|
||||||
ctx.reply(message, {
|
|
||||||
parse_mode: 'Markdown',
|
|
||||||
reply_to_message_id: ctx.message.message_id
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
@ -1,25 +0,0 @@
|
|||||||
const Resources = require('../props/resources.json');
|
|
||||||
const { getStrings } = require('../plugins/checklang.js');
|
|
||||||
const { isOnSpamWatch } = require('../plugins/lib-spamwatch/spamwatch.js');
|
|
||||||
const spamwatchMiddleware = require('../plugins/lib-spamwatch/Middleware.js')(isOnSpamWatch);
|
|
||||||
const axios = require("axios");
|
|
||||||
|
|
||||||
module.exports = (bot) => {
|
|
||||||
bot.command("fox", spamwatchMiddleware, async (ctx) => {
|
|
||||||
const Strings = getStrings(ctx.from.language_code);
|
|
||||||
try {
|
|
||||||
const response = await axios(Resources.foxApi);
|
|
||||||
ctx.replyWithPhoto(response.data.image, {
|
|
||||||
caption: response.data.link,
|
|
||||||
reply_to_message_id: ctx.message.message_id
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
const message = Strings.foxApiErr.replace('{error}', error.message);
|
|
||||||
ctx.reply(message, {
|
|
||||||
parse_mode: 'Markdown',
|
|
||||||
reply_to_message_id: ctx.message.message_id
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user