-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
68 lines (48 loc) · 2.38 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
const { lavender } = require('color-name');
const TelegramApi = require('node-telegram-bot-api');
const token = '1798820061:AAG3hRTNiJwCZfCzDOkxtFahEyRytUeXDA0';
const { Keyboard } = require('telegram-keyboard');
var fetch = require('node-fetch');
const request = require('request');
const bot = new TelegramApi(token, { polling: true });
//ключ привязан к почте [email protected]//
const apiKey = "";
//город который ввел пользователь//
//ссылка на api//
var url = `http://api.openweathermap.org/data/2.5/weather?q=москва&lang=ru&units=metric&appid=c1917a906f9e5843a7ae004bf25efef6`;
//получаем данные api JSON//
bot.setMyCommands([
{ command: '/start', description: 'Начальное приветсвие' },
{ command: '/info', description: 'Информация о БОТЕ' },
])
const start = () => {
bot.on('message', async msg => {
const text = msg.text;
const chatId = msg.chat.id;
if (text === "/start") {
await bot.sendSticker(chatId, 'https://tlgrm.ru/_/stickers/b23/18d/b2318d70-5188-3faf-927d-b1be87d2e83f/2.webp')
await bot.sendMessage(chatId, 'Добро пожаловать! Давай я подскажу тебе, какая погода на улице?')
return bot.sendMessage(chatId, 'напиши города на английском :)')
}
if (text === "/info") {
await bot.sendMessage(chatId,
'Я бот, который подскажет тебе, какая погода на улице!'
)
return bot.sendMessage(chatId,
'Для того, что бы узнать погоду напиши слово ПОГОДА и следуй дальнейшим инструкциям'
)
}
if (text) {
const text = msg.text;
var city = text;
fetch(`http://api.openweathermap.org/data/2.5/weather?q=${city}&appid=6e93b3d15872f914c6929fed9ea71e9a`)
.then(data => data.json())
.then(data => {
if (data !== null)
var temp = Math.round(data.main.temp - 273);
return bot.sendMessage(chatId, `температура воздуха: ${temp} градусов`)
})
}
})
}
start()