mirror of
https://github.com/abocn/TelegramBot.git
synced 2025-03-10 12:49:57 +00:00
111 lines
4.2 KiB
JavaScript
111 lines
4.2 KiB
JavaScript
// Ported and improved from BubbalooTeam's PyCoala bot
|
|
// Copyright (c) 2024 BubbalooTeam. (https://github.com/BubbalooTeam)
|
|
// Minor code changes by lucmsilva (https://github.com/lucmsilva651)
|
|
|
|
const axios = require('axios');
|
|
const Config = require('../props/config.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 statusEmojis = {
|
|
0: '⛈', 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: 'n/a', 45: '🌧', 46: '🌨', 47: '🌩'
|
|
};
|
|
|
|
const getStatusEmoji = (statusCode) => statusEmojis[statusCode] || 'n/a';
|
|
|
|
function getLocaleUnit(userLang) {
|
|
const fahrenheitCountries = ['US', 'BS', 'BZ', 'KY', 'LR'];
|
|
const languagePrefix = userLang.split('-')[0];
|
|
const countryCode = userLang.split('-')[1];
|
|
|
|
if (languagePrefix === 'en' || (countryCode && fahrenheitCountries.includes(countryCode))) {
|
|
return { temperatureUnit: 'F', speedUnit: 'mph', apiUnit: 'e' };
|
|
} else {
|
|
return { temperatureUnit: 'C', speedUnit: 'km/h', apiUnit: 'm' };
|
|
}
|
|
}
|
|
|
|
module.exports = (bot) => {
|
|
bot.command(['clima', 'weather'], spamwatchMiddleware, async (ctx) => {
|
|
const userLang = ctx.from.language_code || "en-US";
|
|
const Strings = getStrings(userLang);
|
|
const args = ctx.message.text.split(' ');
|
|
|
|
if (args.length !== 2) {
|
|
return ctx.reply(Strings.provideLocation, {
|
|
parse_mode: "Markdown",
|
|
reply_to_message_id: ctx.message.message_id
|
|
});
|
|
}
|
|
|
|
const location = args[1];
|
|
const apiKey = Config.weatherKey;
|
|
|
|
try {
|
|
const locationResponse = await axios.get('https://api.weather.com/v3/location/search', {
|
|
params: {
|
|
apiKey: apiKey,
|
|
format: 'json',
|
|
language: userLang,
|
|
query: location,
|
|
},
|
|
});
|
|
|
|
const locationData = locationResponse.data.location;
|
|
if (!locationData || !locationData.address) {
|
|
return ctx.reply(Strings.invalidLocation, {
|
|
parse_mode: "Markdown",
|
|
reply_to_message_id: ctx.message.message_id
|
|
});
|
|
}
|
|
|
|
const addressFirst = locationData.address[0];
|
|
const latFirst = locationData.latitude[0];
|
|
const lonFirst = locationData.longitude[0];
|
|
const { temperatureUnit, speedUnit, apiUnit } = getLocaleUnit(userLang);
|
|
|
|
const weatherResponse = await axios.get('https://api.weather.com/v3/aggcommon/v3-wx-observations-current', {
|
|
params: {
|
|
apiKey: apiKey,
|
|
format: 'json',
|
|
language: userLang,
|
|
geocode: `${latFirst},${lonFirst}`,
|
|
units: apiUnit,
|
|
},
|
|
});
|
|
|
|
const weatherData = weatherResponse.data['v3-wx-observations-current'];
|
|
const { temperature, temperatureFeelsLike, relativeHumidity, windSpeed, iconCode, wxPhraseLong } = weatherData;
|
|
|
|
const weatherMessage = Strings.weatherStatus
|
|
.replace('{addressFirst}', addressFirst)
|
|
.replace('{getStatusEmoji(iconCode)}', getStatusEmoji(iconCode))
|
|
.replace('{wxPhraseLong}', wxPhraseLong)
|
|
.replace('{temperature}', temperature)
|
|
.replace('{temperatureFeelsLike}', temperatureFeelsLike)
|
|
.replace('{temperatureUnit}', temperatureUnit)
|
|
.replace('{temperatureUnit2}', temperatureUnit)
|
|
.replace('{relativeHumidity}', relativeHumidity)
|
|
.replace('{windSpeed}', windSpeed)
|
|
.replace('{speedUnit}', speedUnit);
|
|
|
|
ctx.reply(weatherMessage, {
|
|
parse_mode: "Markdown",
|
|
reply_to_message_id: ctx.message.message_id
|
|
});
|
|
} catch (error) {
|
|
const message = Strings.weatherErr.replace('{error}', error.message);
|
|
ctx.reply(message, {
|
|
parse_mode: "Markdown",
|
|
reply_to_message_id: ctx.message.message_id
|
|
});
|
|
}
|
|
});
|
|
}; |