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 {
|
if urlService == nil {
|
||||||
dj.SendPrivateMessage(user, INVALID_URL_MSG)
|
dj.SendPrivateMessage(user, INVALID_URL_MSG)
|
||||||
|
} else {
|
||||||
|
urlService.NewRequest(user, url)
|
||||||
}
|
}
|
||||||
// else {
|
|
||||||
// urlService.NewRequest(user, url)
|
|
||||||
// }
|
|
||||||
|
|
||||||
youtubePatterns := []string{
|
youtubePatterns := []string{
|
||||||
`https?:\/\/www\.youtube\.com\/watch\?v=([\w-]+)(\&t=\d*m?\d*s?)?`,
|
`https?:\/\/www\.youtube\.com\/watch\?v=([\w-]+)(\&t=\d*m?\d*s?)?`,
|
||||||
|
|
|
@ -63,7 +63,27 @@ func (y YouTube) URLRegex(url string) bool {
|
||||||
|
|
||||||
// Creates the requested song/playlist and adds to the queue
|
// Creates the requested song/playlist and adds to the queue
|
||||||
func (y YouTube) NewRequest(user *gumble.User, url string) error {
|
func (y YouTube) NewRequest(user *gumble.User, url string) error {
|
||||||
return nil
|
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
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------
|
// ------------
|
||||||
|
|
Reference in a new issue