Fixing build issues
This commit is contained in:
parent
31f467591c
commit
13feac24bd
|
@ -175,10 +175,9 @@ func add(user *gumble.User, username, url string) {
|
|||
|
||||
if urlService == nil {
|
||||
dj.SendPrivateMessage(user, INVALID_URL_MSG)
|
||||
} else {
|
||||
urlService.NewRequest(user, url)
|
||||
}
|
||||
// else {
|
||||
// urlService.NewRequest(user, url)
|
||||
// }
|
||||
|
||||
youtubePatterns := []string{
|
||||
`https?:\/\/www\.youtube\.com\/watch\?v=([\w-]+)(\&t=\d*m?\d*s?)?`,
|
||||
|
|
|
@ -63,8 +63,28 @@ func (y YouTube) URLRegex(url string) bool {
|
|||
|
||||
// Creates the requested song/playlist and adds to the queue
|
||||
func (y YouTube) NewRequest(user *gumble.User, url string) error {
|
||||
var matches, shortURL, startOffset
|
||||
youtubePlaylistPattern := `https?:\/\/www\.youtube\.com\/playlist\?list=([\w-]+)`
|
||||
if re, err := regexp.Compile(youtubePlaylistPattern); err == nil {
|
||||
if re.MatchString(url) {
|
||||
if dj.HasPermission(username, dj.conf.Permissions.AdminAddPlaylists) {
|
||||
shortURL = re.FindStringSubmatch(url)[1]
|
||||
NewYouTubePlaylist(username, shortURL)
|
||||
} else {
|
||||
return errors.new("NO_PLAYLIST_PERMISSION")
|
||||
}
|
||||
} else {
|
||||
matches = re.FindAllStringSubmatch(url, -1)
|
||||
shortURL = matches[0][1]
|
||||
if len(matches[0]) == 3 {
|
||||
startOffset = matches[0][2]
|
||||
}
|
||||
NewYouTubeSong(user, shortURL, startOffset, nil)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
return err
|
||||
}
|
||||
|
||||
// ------------
|
||||
// YOUTUBE SONG
|
||||
|
|
Reference in a new issue