This commit is contained in:
Lukian LEIZOUR 2022-11-19 01:49:12 +01:00
parent be4fd23bcf
commit 0bd53741af
728 changed files with 86573 additions and 0 deletions

50
app.js Normal file
View file

@ -0,0 +1,50 @@
const { Telegraf } = require('telegraf');
const google = require('googlethis');
//bot initialization
const bot = new Telegraf(process.env.TELEGRAM);
//variable
var last = "";
//function to search google
function image_search(query, ctx) {
const images = google.image(query, { safe: false });
images.then((results) => {
var imgLink = results[Math.floor(Math.random() * results.length)].url
last = imgLink;
console.log("--> sent the image for the query: " + query);
bot.telegram.sendPhoto(ctx.chat.id, imgLink, {"caption": "This is a random image for the query : " + query});
});
}
//bot commands
bot.command('start', ctx => {
console.log(ctx.from)
bot.telegram.sendMessage(ctx.chat.id, 'hello there! Welcome to my new telegram bot.\nType /help for help.', {
})
})
bot.help(ctx => {
console.log(ctx.from)
ctx.reply('This is the help message :\nhelp command : \n -/help\nAnime command : \n -/anime\nimage search command : \n -/search or /s')
})
bot.command('anime', ctx => {
console.log(ctx.from)
bot.telegram.sendMessage(ctx.chat.id, 'List of anime :\nKonosuba 1 : \nhttps://mega.nz/folder/M4gFRYbT#jiHwPRtkf7YyN6-MoguQcw\nKonosuba 2 :\nhttps://mega.nz/folder/JgZgiZbS#S0J1SoUd_TFKKun6SSJgmQ', {})
})
bot.command('search', ctx => {
console.log(ctx.from)
image_search(ctx.message.text.slice(+8), ctx)
})
bot.command('s', ctx => {
console.log(ctx.from)
image_search(ctx.message.text.slice(+3), ctx)
})
//bot launch
bot.launch();