2019-08-02 08:32:00 +00:00
const YouTube = require ( "simple-youtube-api" ) ;
module . exports = {
name : 'play' ,
description : 'Play command.' ,
usage : '[song name]' ,
args : true ,
cooldown : 3 ,
2019-10-10 13:43:04 +00:00
async execute ( message , args , client , Discord , prefix ) {
2019-08-14 12:26:33 +00:00
const youtube = new YouTube ( client . config . apikey ) ;
2019-08-02 08:32:00 +00:00
const searchString = args . slice ( 1 ) . join ( " " ) ;
const url = args [ 1 ] ? args [ 1 ] . replace ( /<(.+)>/g , "$1" ) : "" ;
const serverQueue = client . queue . get ( message . guild . id ) ;
const voiceChannel = message . member . voiceChannel ;
2019-10-10 13:43:04 +00:00
if ( ! serverQueue ) {
if ( ! voiceChannel ) return message . channel . send ( ':x: I\'m sorry but you need to be in a voice channel to play music!' ) ;
} else {
if ( voiceChannel !== serverQueue . voiceChannel ) return message . channel . send ( ':x: I\'m sorry but you need to be in the same voiceChannel as Musix to play music!' ) ;
}
2019-08-03 06:46:34 +00:00
if ( ! args [ 1 ] ) return message . channel . send ( ':x: You need to use a link or search for a song!' ) ;
2019-08-02 08:32:00 +00:00
const permissions = voiceChannel . permissionsFor ( message . client . user ) ;
if ( ! permissions . has ( 'CONNECT' ) ) {
return message . channel . send ( ':x: I cannot connect to your voice channel, make sure I have the proper permissions!' ) ;
}
if ( ! permissions . has ( 'SPEAK' ) ) {
2019-10-10 13:43:04 +00:00
return message . channel . send ( ':x: I cannot speak in your voice channel, make sure I have the proper permissions!' ) ;
2019-08-02 08:32:00 +00:00
}
if ( url . match ( /^https?:\/\/(www.youtube.com|youtube.com)\/playlist(.*)$/ ) ) {
const playlist = await youtube . getPlaylist ( url ) ;
const videos = await playlist . getVideos ( ) ;
for ( const video of Object . values ( videos ) ) {
const video2 = await youtube . getVideoByID ( video . id ) ;
2019-10-10 13:43:04 +00:00
await client . funcs . handleVideo ( video2 , message , voiceChannel , client , true ) ;
2019-08-02 08:32:00 +00:00
}
return message . channel . send ( ` :white_check_mark: Playlist: ** ${ playlist . title } ** has been added to the queue! ` ) ;
} else {
try {
var video = await youtube . getVideo ( url ) ;
} catch ( error ) {
try {
var videos = await youtube . searchVideos ( searchString , 10 ) ;
let index = 0 ;
2019-10-10 13:43:04 +00:00
const embed = new Discord . RichEmbed ( )
2019-08-02 08:32:00 +00:00
. setTitle ( "__Song Selection__" )
2019-09-15 06:18:33 +00:00
. setDescription ( ` ${ videos . map ( video2 => ` ** ${ ++ index } ** ${ video2 . title } ` ) . join ( '\n' ) } ` )
2019-08-03 07:47:12 +00:00
. setFooter ( "Please provide a number ranging from 1-10 to select one of the search results." )
2019-08-02 08:42:28 +00:00
. setColor ( "#b50002" )
2019-08-02 08:32:00 +00:00
message . channel . send ( embed ) ;
try {
var response = await message . channel . awaitMessages ( message2 => message2 . content > 0 && message2 . content < 11 , {
maxMatches : 1 ,
time : 10000 ,
errors : [ 'time' ]
} ) ;
} catch ( err ) {
console . error ( err ) ;
2019-10-11 17:36:46 +00:00
return message . channel . send ( ':x: Cancelling video selection or no results.' ) ;
2019-08-02 08:32:00 +00:00
}
const videoIndex = parseInt ( response . first ( ) . content ) ;
var video = await youtube . getVideoByID ( videos [ videoIndex - 1 ] . id ) ;
} catch ( err ) {
console . error ( err ) ;
2019-10-11 17:36:46 +00:00
return message . channel . send ( ':x: Cancelling video selection or no results' ) ;
2019-08-02 08:32:00 +00:00
}
}
2019-10-10 13:43:04 +00:00
return client . funcs . handleVideo ( video , message , voiceChannel , client , false ) ;
2019-08-02 08:32:00 +00:00
}
}
} ;