mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-12 15:57:43 +02:00
Forgot to remove forecast
This commit is contained in:
@@ -47,7 +47,7 @@ Xiao is a Discord bot coded in JavaScript with
|
|||||||
7. Run `npm i -g pm2` to install PM2.
|
7. Run `npm i -g pm2` to install PM2.
|
||||||
8. Run `pm2 start Xiao.js --name xiao` to run the bot.
|
8. Run `pm2 start Xiao.js --name xiao` to run the bot.
|
||||||
|
|
||||||
## Commands (332)
|
## Commands (331)
|
||||||
### Utility:
|
### Utility:
|
||||||
|
|
||||||
* **eval:** Executes JavaScript code.
|
* **eval:** Executes JavaScript code.
|
||||||
@@ -167,7 +167,6 @@ Xiao is a Discord bot coded in JavaScript with
|
|||||||
* **eshop:** Searches the Nintendo eShop for your query.
|
* **eshop:** Searches the Nintendo eShop for your query.
|
||||||
* **esrb:** Searches ESRB for your query.
|
* **esrb:** Searches ESRB for your query.
|
||||||
* **flickr:** Searches Flickr for your query.
|
* **flickr:** Searches Flickr for your query.
|
||||||
* **forecast:** Responds with the seven-day forecast for a specific location.
|
|
||||||
* **giphy:** Searches Giphy for your query.
|
* **giphy:** Searches Giphy for your query.
|
||||||
* **github:** Responds with information on a GitHub repository.
|
* **github:** Responds with information on a GitHub repository.
|
||||||
* **google-autofill:** Responds with a list of the Google Autofill results for a particular query.
|
* **google-autofill:** Responds with a list of the Google Autofill results for a particular query.
|
||||||
|
|||||||
@@ -1,54 +0,0 @@
|
|||||||
const Command = require('../../structures/Command');
|
|
||||||
const { stripIndents } = require('common-tags');
|
|
||||||
const { MessageEmbed } = require('discord.js');
|
|
||||||
const request = require('node-superfetch');
|
|
||||||
|
|
||||||
module.exports = class ForecastCommand extends Command {
|
|
||||||
constructor(client) {
|
|
||||||
super(client, {
|
|
||||||
name: 'forecast',
|
|
||||||
aliases: ['yahoo-forecast', 'weather-forecast', 'yahoo-weather-forecast'],
|
|
||||||
group: 'search',
|
|
||||||
memberName: 'forecast',
|
|
||||||
description: 'Responds with the seven-day forecast for a specific location.',
|
|
||||||
clientPermissions: ['EMBED_LINKS'],
|
|
||||||
args: [
|
|
||||||
{
|
|
||||||
key: 'location',
|
|
||||||
prompt: 'What location would you like to get the forecast for?',
|
|
||||||
type: 'string'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
async run(msg, { location }) {
|
|
||||||
try {
|
|
||||||
const { body } = await request
|
|
||||||
.get('https://query.yahooapis.com/v1/public/yql')
|
|
||||||
.query({
|
|
||||||
// eslint-disable-next-line max-len
|
|
||||||
q: `select * from weather.forecast where u='f' AND woeid in (select woeid from geo.places(1) where text="${location}")`,
|
|
||||||
format: 'json'
|
|
||||||
});
|
|
||||||
if (!body.query.count) return msg.say('Could not find any results.');
|
|
||||||
const data = body.query.results.channel;
|
|
||||||
const embed = new MessageEmbed()
|
|
||||||
.setColor(0x0000FF)
|
|
||||||
.setAuthor(data.title, 'https://i.imgur.com/IYF2Pfa.jpg', 'https://www.yahoo.com/news/weather')
|
|
||||||
.setURL(data.link)
|
|
||||||
.setTimestamp();
|
|
||||||
for (let i = 0; i < 7; i++) {
|
|
||||||
const forecast = data.item.forecast[i];
|
|
||||||
embed.addField(`❯ ${forecast.day} - ${forecast.date}`, stripIndents`
|
|
||||||
**High:** ${forecast.high}°F
|
|
||||||
**Low:** ${forecast.low}°F
|
|
||||||
**Condition:** ${forecast.text}
|
|
||||||
`);
|
|
||||||
}
|
|
||||||
return msg.embed(embed);
|
|
||||||
} catch (err) {
|
|
||||||
return msg.say(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
@@ -7,7 +7,7 @@ module.exports = class WeatherCommand extends Command {
|
|||||||
constructor(client) {
|
constructor(client) {
|
||||||
super(client, {
|
super(client, {
|
||||||
name: 'weather',
|
name: 'weather',
|
||||||
aliases: ['open-weather-map'],
|
aliases: ['open-weather-map', 'owm'],
|
||||||
group: 'search',
|
group: 'search',
|
||||||
memberName: 'weather',
|
memberName: 'weather',
|
||||||
description: 'Responds with weather information for a specific location.',
|
description: 'Responds with weather information for a specific location.',
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "xiao",
|
"name": "xiao",
|
||||||
"version": "100.0.1",
|
"version": "101.0.0",
|
||||||
"description": "Your personal server companion.",
|
"description": "Your personal server companion.",
|
||||||
"main": "Xiao.js",
|
"main": "Xiao.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user