mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-14 00:08:06 +02:00
Remove SoundCloud (no longer works)
This commit is contained in:
@@ -47,7 +47,6 @@ IMGUR_KEY=
|
|||||||
OPENWEATHERMAP_KEY=
|
OPENWEATHERMAP_KEY=
|
||||||
OSU_KEY=
|
OSU_KEY=
|
||||||
PERSONAL_GOOGLE_CALENDAR_ID=
|
PERSONAL_GOOGLE_CALENDAR_ID=
|
||||||
SOUNDCLOUD_KEY=
|
|
||||||
STACKOVERFLOW_KEY=
|
STACKOVERFLOW_KEY=
|
||||||
TENOR_KEY=
|
TENOR_KEY=
|
||||||
TMDB_KEY=
|
TMDB_KEY=
|
||||||
|
|||||||
@@ -132,7 +132,7 @@ in the appropriate channel's topic to use it.
|
|||||||
|
|
||||||
## Commands
|
## Commands
|
||||||
|
|
||||||
Total: 408
|
Total: 407
|
||||||
|
|
||||||
### Utility:
|
### Utility:
|
||||||
|
|
||||||
@@ -331,7 +331,6 @@ Total: 408
|
|||||||
* **rotten-tomatoes:** Searches Rotten Tomatoes for your query.
|
* **rotten-tomatoes:** Searches Rotten Tomatoes for your query.
|
||||||
* **rule:** Responds with a rule of the internet.
|
* **rule:** Responds with a rule of the internet.
|
||||||
* **safebooru:** Responds with an image from Safebooru, with optional query.
|
* **safebooru:** Responds with an image from Safebooru, with optional query.
|
||||||
* **soundcloud:** Searches SoundCloud for your query.
|
|
||||||
* **stack-overflow:** Searches Stack Overflow for your query.
|
* **stack-overflow:** Searches Stack Overflow for your query.
|
||||||
* **steam:** Searches Steam for your query.
|
* **steam:** Searches Steam for your query.
|
||||||
* **stocks:** Responds with the current stocks for a company.
|
* **stocks:** Responds with the current stocks for a company.
|
||||||
@@ -1099,8 +1098,6 @@ here.
|
|||||||
* steam-card ([Template](https://www.deviantart.com/sinkillerj/art/Steam-Trading-Card-Template-GIMP-372156984))
|
* steam-card ([Template](https://www.deviantart.com/sinkillerj/art/Steam-Trading-Card-Template-GIMP-372156984))
|
||||||
- [SMWiki](http://www.smwiki.net/)
|
- [SMWiki](http://www.smwiki.net/)
|
||||||
* smw-level ([Level Name Data](http://old.smwiki.net/wiki/List_of_Super_Mario_World_levels))
|
* smw-level ([Level Name Data](http://old.smwiki.net/wiki/List_of_Super_Mario_World_levels))
|
||||||
- [SoundCloud](https://soundcloud.com/)
|
|
||||||
* soundcloud ([API](https://developers.soundcloud.com/))
|
|
||||||
- [SPAM Brand](https://www.spam.com/)
|
- [SPAM Brand](https://www.spam.com/)
|
||||||
* spam (Image)
|
* spam (Image)
|
||||||
- [speak lolcat](https://speaklolcat.com/)
|
- [speak lolcat](https://speaklolcat.com/)
|
||||||
|
|||||||
@@ -1,61 +0,0 @@
|
|||||||
const Command = require('../../structures/Command');
|
|
||||||
const moment = require('moment');
|
|
||||||
const { MessageEmbed } = require('discord.js');
|
|
||||||
const request = require('node-superfetch');
|
|
||||||
const { shorten, formatNumber, embedURL } = require('../../util/Util');
|
|
||||||
const { SOUNDCLOUD_KEY } = process.env;
|
|
||||||
|
|
||||||
module.exports = class SoundcloudCommand extends Command {
|
|
||||||
constructor(client) {
|
|
||||||
super(client, {
|
|
||||||
name: 'soundcloud',
|
|
||||||
aliases: ['scloud', 'sc'],
|
|
||||||
group: 'search',
|
|
||||||
memberName: 'soundcloud',
|
|
||||||
description: 'Searches SoundCloud for your query.',
|
|
||||||
clientPermissions: ['EMBED_LINKS'],
|
|
||||||
credit: [
|
|
||||||
{
|
|
||||||
name: 'SoundCloud',
|
|
||||||
url: 'https://soundcloud.com/',
|
|
||||||
reason: 'API',
|
|
||||||
reasonURL: 'https://developers.soundcloud.com/'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
args: [
|
|
||||||
{
|
|
||||||
key: 'query',
|
|
||||||
prompt: 'What song would you like to search for?',
|
|
||||||
type: 'string'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
async run(msg, { query }) {
|
|
||||||
try {
|
|
||||||
const { body } = await request
|
|
||||||
.get('http://api.soundcloud.com/tracks')
|
|
||||||
.query({
|
|
||||||
q: query,
|
|
||||||
client_id: SOUNDCLOUD_KEY
|
|
||||||
});
|
|
||||||
if (!body.length) return msg.say('Could not find any results.');
|
|
||||||
const data = body[0];
|
|
||||||
const embed = new MessageEmbed()
|
|
||||||
.setColor(0xFF5500)
|
|
||||||
.setAuthor('SoundCloud', 'https://i.imgur.com/ctft3v7.png', 'https://soundcloud.com/')
|
|
||||||
.setURL(data.permalink_url)
|
|
||||||
.setThumbnail(data.artwork_url)
|
|
||||||
.setTitle(data.title)
|
|
||||||
.setDescription(data.description ? shorten(data.description) : 'No description available.')
|
|
||||||
.addField('❯ Artist', embedURL(data.user.username, data.user.permalink_url), true)
|
|
||||||
.addField('❯ Release Date', moment.utc(new Date(data.created_at)).format('MM/DD/YYYY'), true)
|
|
||||||
.addField('❯ Genre', data.genre || '???', true)
|
|
||||||
.addField('❯ Likes', formatNumber(data.likes_count), true);
|
|
||||||
return msg.embed(embed);
|
|
||||||
} catch (err) {
|
|
||||||
return msg.reply(`Oh no, an error occurred: \`${err.message}\`. Try again later!`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "xiao",
|
"name": "xiao",
|
||||||
"version": "113.22.3",
|
"version": "114.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