mirror of
https://github.com/abocn/TelegramBot.git
synced 2025-03-10 12:49:57 +00:00
Put /httpcat into http.js
This commit is contained in:
parent
08bd1e32db
commit
baf988b5b6
@ -42,31 +42,4 @@ module.exports = (bot) => {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
bot.command("httpcat", spamwatchMiddleware, async (ctx) => {
|
|
||||||
const Strings = getStrings(ctx.from.language_code);
|
|
||||||
const userInput = ctx.message.text.split(' ').slice(1).join(' ').replace(/\s+/g, '');
|
|
||||||
|
|
||||||
if (!userInput || isNaN(userInput)) {
|
|
||||||
return ctx.reply(Strings.catImgErr, {
|
|
||||||
parse_mode: 'Markdown',
|
|
||||||
reply_to_message_id: ctx.message.message_id
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
const apiUrl = `https://http.cat/${userInput}`;
|
|
||||||
|
|
||||||
try {
|
|
||||||
await ctx.replyWithPhoto(apiUrl, {
|
|
||||||
caption: `🐱 ${apiUrl}`,
|
|
||||||
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
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
};
|
||||||
|
@ -45,4 +45,31 @@ module.exports = (bot) => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
bot.command("httpcat", spamwatchMiddleware, async (ctx) => {
|
||||||
|
const Strings = getStrings(ctx.from.language_code);
|
||||||
|
const userInput = ctx.message.text.split(' ').slice(1).join(' ').replace(/\s+/g, '');
|
||||||
|
|
||||||
|
if (!userInput || isNaN(userInput)) {
|
||||||
|
return ctx.reply(Strings.catImgErr, {
|
||||||
|
parse_mode: 'Markdown',
|
||||||
|
reply_to_message_id: ctx.message.message_id
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const apiUrl = `https://http.cat/${userInput}`;
|
||||||
|
|
||||||
|
try {
|
||||||
|
await ctx.replyWithPhoto(apiUrl, {
|
||||||
|
caption: `🐱 ${apiUrl}`,
|
||||||
|
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
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user