2015-04-14 08:40:39 +02:00
|
|
|
/*
|
|
|
|
* MumbleDJ
|
|
|
|
* By Matthieu Grieger
|
|
|
|
* service_youtube.go
|
|
|
|
* Copyright (c) 2014, 2015 Matthieu Grieger (MIT License)
|
|
|
|
*/
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
2015-05-13 07:47:14 +02:00
|
|
|
"regexp"
|
2015-04-14 08:40:39 +02:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2015-09-26 15:52:39 +02:00
|
|
|
"time"
|
2015-04-14 08:40:39 +02:00
|
|
|
|
|
|
|
"github.com/jmoiron/jsonq"
|
2015-07-27 23:29:50 +02:00
|
|
|
"github.com/layeh/gumble/gumble"
|
2015-04-14 08:40:39 +02:00
|
|
|
)
|
|
|
|
|
2015-07-28 13:35:52 +02:00
|
|
|
// Regular expressions for youtube urls
|
2015-07-28 01:11:35 +02:00
|
|
|
var youtubePlaylistPattern = `https?:\/\/www\.youtube\.com\/playlist\?list=([\w-]+)`
|
|
|
|
var youtubeVideoPatterns = []string{
|
|
|
|
`https?:\/\/www\.youtube\.com\/watch\?v=([\w-]+)(\&t=\d*m?\d*s?)?`,
|
|
|
|
`https?:\/\/youtube\.com\/watch\?v=([\w-]+)(\&t=\d*m?\d*s?)?`,
|
|
|
|
`https?:\/\/youtu.be\/([\w-]+)(\?t=\d*m?\d*s?)?`,
|
|
|
|
`https?:\/\/youtube.com\/v\/([\w-]+)(\?t=\d*m?\d*s?)?`,
|
|
|
|
`https?:\/\/www.youtube.com\/v\/([\w-]+)(\?t=\d*m?\d*s?)?`,
|
|
|
|
}
|
|
|
|
|
2015-07-28 22:38:35 +02:00
|
|
|
// YouTube implements the Service interface
|
|
|
|
type YouTube struct{}
|
|
|
|
|
2015-09-26 15:52:39 +02:00
|
|
|
// ServiceName is the human readable version of the service name
|
|
|
|
func (yt YouTube) ServiceName() string {
|
|
|
|
return "YouTube"
|
|
|
|
}
|
|
|
|
|
|
|
|
// TrackName is the human readable version of the service name
|
|
|
|
func (yt YouTube) TrackName() string {
|
|
|
|
return "Video"
|
|
|
|
}
|
|
|
|
|
2015-08-15 20:17:26 +02:00
|
|
|
// URLRegex checks to see if service will accept URL
|
2015-07-28 22:38:35 +02:00
|
|
|
func (yt YouTube) URLRegex(url string) bool {
|
2015-07-28 01:11:35 +02:00
|
|
|
return RegexpFromURL(url, append(youtubeVideoPatterns, []string{youtubePlaylistPattern}...)) != nil
|
|
|
|
}
|
2015-07-27 23:13:40 +02:00
|
|
|
|
2015-08-15 20:17:26 +02:00
|
|
|
// NewRequest creates the requested song/playlist and adds to the queue
|
2015-09-26 15:52:39 +02:00
|
|
|
func (yt YouTube) NewRequest(user *gumble.User, url string) ([]Song, error) {
|
|
|
|
var songArray []Song
|
2015-07-28 01:13:13 +02:00
|
|
|
var shortURL, startOffset = "", ""
|
2015-07-28 00:30:59 +02:00
|
|
|
if re, err := regexp.Compile(youtubePlaylistPattern); err == nil {
|
|
|
|
if re.MatchString(url) {
|
2015-09-26 15:52:39 +02:00
|
|
|
shortURL = re.FindStringSubmatch(url)[1]
|
|
|
|
return yt.NewPlaylist(user, shortURL)
|
2015-07-28 00:30:59 +02:00
|
|
|
} else {
|
2015-07-28 01:11:35 +02:00
|
|
|
re = RegexpFromURL(url, youtubeVideoPatterns)
|
2015-07-28 00:36:50 +02:00
|
|
|
matches := re.FindAllStringSubmatch(url, -1)
|
2015-07-28 00:30:59 +02:00
|
|
|
shortURL = matches[0][1]
|
|
|
|
if len(matches[0]) == 3 {
|
|
|
|
startOffset = matches[0][2]
|
|
|
|
}
|
2015-07-28 22:38:35 +02:00
|
|
|
song, err := yt.NewSong(user.Name, shortURL, startOffset, nil)
|
2015-08-03 14:58:49 +02:00
|
|
|
if !isNil(song) {
|
2015-09-26 15:52:39 +02:00
|
|
|
<<<<<<< HEAD
|
2015-08-03 14:58:49 +02:00
|
|
|
return song.Title(), err
|
2015-09-26 15:52:39 +02:00
|
|
|
=======
|
|
|
|
return append(songArray, song), nil
|
|
|
|
>>>>>>> abf98ad... Song conditions are now checked in Service
|
2015-08-03 14:58:49 +02:00
|
|
|
} else {
|
2015-09-26 15:52:39 +02:00
|
|
|
return nil, err
|
2015-08-03 14:58:49 +02:00
|
|
|
}
|
2015-07-28 00:30:59 +02:00
|
|
|
}
|
2015-07-28 00:37:52 +02:00
|
|
|
} else {
|
2015-09-26 15:52:39 +02:00
|
|
|
return nil, err
|
2015-07-28 00:30:59 +02:00
|
|
|
}
|
2015-07-27 23:13:40 +02:00
|
|
|
}
|
|
|
|
|
2015-08-15 20:17:26 +02:00
|
|
|
// NewSong gathers the metadata for a song extracted from a YouTube video, and returns the song.
|
2015-08-03 14:58:49 +02:00
|
|
|
func (yt YouTube) NewSong(user *gumble.User, id, offset string, playlist Playlist) (Song, error) {
|
2015-09-26 15:52:39 +02:00
|
|
|
url := fmt.Sprintf("https://www.googleapis.com/youtube/v3/videos?part=snippet,contentDetails&id=%s&key=%s", id, os.Getenv("YOUTUBE_API_KEY"))
|
|
|
|
if apiResponse, err := PerformGetRequest(url); err == nil {
|
|
|
|
title, _ := apiResponse.String("items", "0", "snippet", "title")
|
|
|
|
thumbnail, _ := apiResponse.String("items", "0", "snippet", "thumbnails", "high", "url")
|
|
|
|
duration, _ := apiResponse.String("items", "0", "contentDetails", "duration")
|
2015-04-14 08:40:39 +02:00
|
|
|
|
2015-08-15 20:17:26 +02:00
|
|
|
song := &YouTubeSong{
|
2015-04-16 08:32:32 +02:00
|
|
|
submitter: user,
|
|
|
|
title: title,
|
|
|
|
id: id,
|
2015-08-03 14:58:49 +02:00
|
|
|
url: "https://youtu.be/" + id,
|
2015-09-26 15:52:39 +02:00
|
|
|
offset: int(yt.parseTime(offset, `\?T\=(?P<days>\d+D)?(?P<hours>\d+H)?(?P<minutes>\d+M)?(?P<seconds>\d+S)?`).Seconds()),
|
|
|
|
duration: int(yt.parseTime(duration, `P(?P<days>\d+D)?T(?P<hours>\d+H)?(?P<minutes>\d+M)?(?P<seconds>\d+S)?`).Seconds()),
|
2015-04-16 08:32:32 +02:00
|
|
|
thumbnail: thumbnail,
|
2015-08-03 14:58:49 +02:00
|
|
|
format: "m4a",
|
2015-04-16 08:32:32 +02:00
|
|
|
skippers: make([]string, 0),
|
2015-07-28 14:29:14 +02:00
|
|
|
playlist: playlist,
|
2015-04-16 08:32:32 +02:00
|
|
|
dontSkip: false,
|
2015-09-26 15:52:39 +02:00
|
|
|
service: yt,
|
2015-04-14 08:40:39 +02:00
|
|
|
}
|
2015-07-27 21:44:09 +02:00
|
|
|
|
2015-08-03 14:58:49 +02:00
|
|
|
<<<<<<< HEAD
|
2015-04-14 08:40:39 +02:00
|
|
|
return song, nil
|
2015-08-03 14:58:49 +02:00
|
|
|
=======
|
2015-04-14 08:40:39 +02:00
|
|
|
// Download downloads the song via youtube-dl if it does not already exist on disk.
|
|
|
|
// All downloaded songs are stored in ~/.mumbledj/songs and should be automatically cleaned.
|
|
|
|
func (s *YouTubeSong) Download() error {
|
2015-04-18 01:30:13 +02:00
|
|
|
if _, err := os.Stat(fmt.Sprintf("%s/.mumbledj/songs/%s", dj.homeDir, s.Filename())); os.IsNotExist(err) {
|
2015-08-03 14:58:49 +02:00
|
|
|
cmd := exec.Command("youtube-dl", "--no-mtime", "--output", fmt.Sprintf(`~/.mumbledj/songs/%s`, s.Filename()), "--format", "m4a", "--", s.ID())
|
2015-04-14 08:40:39 +02:00
|
|
|
if err := cmd.Run(); err == nil {
|
|
|
|
if dj.conf.Cache.Enabled {
|
|
|
|
dj.cache.CheckMaximumDirectorySize()
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return errors.New("Song download failed.")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Play plays the song. Once the song is playing, a notification is displayed in a text message that features the video
|
|
|
|
// thumbnail, URL, title, duration, and submitter.
|
|
|
|
func (s *YouTubeSong) Play() {
|
2015-05-10 06:45:00 +02:00
|
|
|
if s.offset != 0 {
|
|
|
|
offsetDuration, _ := time.ParseDuration(fmt.Sprintf("%ds", s.offset))
|
|
|
|
dj.audioStream.Offset = offsetDuration
|
|
|
|
}
|
|
|
|
dj.audioStream.Source = gumble_ffmpeg.SourceFile(fmt.Sprintf("%s/.mumbledj/songs/%s", dj.homeDir, s.Filename()))
|
|
|
|
if err := dj.audioStream.Play(); err != nil {
|
2015-04-14 08:40:39 +02:00
|
|
|
panic(err)
|
|
|
|
} else {
|
2015-08-03 14:58:49 +02:00
|
|
|
if s.Playlist() == nil {
|
2015-04-14 08:40:39 +02:00
|
|
|
message := `
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td align="center"><img src="%s" width=150 /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td align="center"><b><a href="http://youtu.be/%s">%s</a> (%s)</b></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td align="center">Added by %s</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
`
|
2015-04-18 01:30:13 +02:00
|
|
|
dj.client.Self.Channel.Send(fmt.Sprintf(message, s.Thumbnail(), s.ID(), s.Title(),
|
|
|
|
s.Duration(), s.Submitter()), false)
|
2015-04-14 08:40:39 +02:00
|
|
|
} else {
|
|
|
|
message := `
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td align="center"><img src="%s" width=150 /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td align="center"><b><a href="http://youtu.be/%s">%s</a> (%s)</b></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td align="center">Added by %s</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td align="center">From playlist "%s"</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
`
|
2015-04-18 01:30:13 +02:00
|
|
|
dj.client.Self.Channel.Send(fmt.Sprintf(message, s.Thumbnail(), s.ID(),
|
|
|
|
s.Title(), s.Duration(), s.Submitter(), s.Playlist().Title()), false)
|
2015-04-14 08:40:39 +02:00
|
|
|
}
|
2015-05-10 06:45:00 +02:00
|
|
|
go func() {
|
|
|
|
dj.audioStream.Wait()
|
|
|
|
dj.queue.OnSongFinished()
|
|
|
|
}()
|
2015-04-14 08:40:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete deletes the song from ~/.mumbledj/songs if the cache is disabled.
|
|
|
|
func (s *YouTubeSong) Delete() error {
|
|
|
|
if dj.conf.Cache.Enabled == false {
|
2015-04-18 01:30:13 +02:00
|
|
|
filePath := fmt.Sprintf("%s/.mumbledj/songs/%s.m4a", dj.homeDir, s.ID())
|
2015-04-14 08:40:39 +02:00
|
|
|
if _, err := os.Stat(filePath); err == nil {
|
|
|
|
if err := os.Remove(filePath); err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return errors.New("Error occurred while deleting audio file.")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddSkip adds a skip to the skippers slice. If the user is already in the slice, AddSkip
|
|
|
|
// returns an error and does not add a duplicate skip.
|
|
|
|
func (s *YouTubeSong) AddSkip(username string) error {
|
|
|
|
for _, user := range s.skippers {
|
|
|
|
if username == user {
|
|
|
|
return errors.New("This user has already skipped the current song.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s.skippers = append(s.skippers, username)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveSkip removes a skip from the skippers slice. If username is not in slice, an error is
|
|
|
|
// returned.
|
|
|
|
func (s *YouTubeSong) RemoveSkip(username string) error {
|
|
|
|
for i, user := range s.skippers {
|
|
|
|
if username == user {
|
|
|
|
s.skippers = append(s.skippers[:i], s.skippers[i+1:]...)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return errors.New("This user has not skipped the song.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// SkipReached calculates the current skip ratio based on the number of users within MumbleDJ's
|
|
|
|
// channel and the number of usernames in the skippers slice. If the value is greater than or equal
|
|
|
|
// to the skip ratio defined in the config, the function returns true, and returns false otherwise.
|
|
|
|
func (s *YouTubeSong) SkipReached(channelUsers int) bool {
|
|
|
|
if float32(len(s.skippers))/float32(channelUsers) >= dj.conf.General.SkipRatio {
|
|
|
|
return true
|
2015-08-03 14:58:49 +02:00
|
|
|
>>>>>>> 2df3613... Fixed cache clearing earlier than expected
|
2015-04-14 08:40:39 +02:00
|
|
|
}
|
2015-09-26 15:52:39 +02:00
|
|
|
return nil, errors.New(fmt.Sprintf(INVALID_API_KEY, yt.ServiceName()))
|
|
|
|
}
|
|
|
|
|
|
|
|
// parseTime converts from the string youtube returns to a time.Duration
|
|
|
|
func (yt YouTube) parseTime(duration, regex string) time.Duration {
|
|
|
|
var days, hours, minutes, seconds, totalSeconds int64
|
|
|
|
if duration != "" {
|
|
|
|
timestampExp := regexp.MustCompile(regex)
|
|
|
|
timestampMatch := timestampExp.FindStringSubmatch(strings.ToUpper(duration))
|
|
|
|
timestampResult := make(map[string]string)
|
|
|
|
for i, name := range timestampExp.SubexpNames() {
|
|
|
|
if i < len(timestampMatch) {
|
|
|
|
timestampResult[name] = timestampMatch[i]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if timestampResult["days"] != "" {
|
|
|
|
days, _ = strconv.ParseInt(strings.TrimSuffix(timestampResult["days"], "D"), 10, 32)
|
|
|
|
}
|
|
|
|
if timestampResult["hours"] != "" {
|
|
|
|
hours, _ = strconv.ParseInt(strings.TrimSuffix(timestampResult["hours"], "H"), 10, 32)
|
|
|
|
}
|
|
|
|
if timestampResult["minutes"] != "" {
|
|
|
|
minutes, _ = strconv.ParseInt(strings.TrimSuffix(timestampResult["minutes"], "M"), 10, 32)
|
|
|
|
}
|
|
|
|
if timestampResult["seconds"] != "" {
|
|
|
|
seconds, _ = strconv.ParseInt(strings.TrimSuffix(timestampResult["seconds"], "S"), 10, 32)
|
|
|
|
}
|
|
|
|
|
|
|
|
totalSeconds = int64((days * 86400) + (hours * 3600) + (minutes * 60) + seconds)
|
|
|
|
} else {
|
|
|
|
totalSeconds = 0
|
|
|
|
}
|
|
|
|
output, _ := time.ParseDuration(strconv.Itoa(int(totalSeconds)) + "s")
|
|
|
|
return output
|
2015-04-16 08:32:32 +02:00
|
|
|
}
|
|
|
|
|
2015-08-03 14:58:49 +02:00
|
|
|
// NewPlaylist gathers the metadata for a YouTube playlist and returns it.
|
2015-09-26 15:52:39 +02:00
|
|
|
func (yt YouTube) NewPlaylist(user *gumble.User, id string) ([]Song, error) {
|
2015-08-03 14:58:49 +02:00
|
|
|
var apiResponse *jsonq.JsonQuery
|
2015-09-26 15:52:39 +02:00
|
|
|
var songArray []Song
|
2015-08-03 14:58:49 +02:00
|
|
|
var err error
|
|
|
|
// Retrieve title of playlist
|
|
|
|
url := fmt.Sprintf("https://www.googleapis.com/youtube/v3/playlists?part=snippet&id=%s&key=%s", id, os.Getenv("YOUTUBE_API_KEY"))
|
|
|
|
if apiResponse, err = PerformGetRequest(url); err != nil {
|
|
|
|
return nil, err
|
2015-04-14 08:40:39 +02:00
|
|
|
}
|
2015-08-03 14:58:49 +02:00
|
|
|
title, _ := apiResponse.String("items", "0", "snippet", "title")
|
2015-04-14 08:40:39 +02:00
|
|
|
|
2015-08-15 20:17:26 +02:00
|
|
|
playlist := &YouTubePlaylist{
|
2015-08-03 14:58:49 +02:00
|
|
|
id: id,
|
|
|
|
title: title,
|
2015-04-14 08:40:39 +02:00
|
|
|
}
|
|
|
|
|
2015-08-03 14:58:49 +02:00
|
|
|
// Retrieve items in playlist
|
|
|
|
url = fmt.Sprintf("https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&maxResults=50&playlistId=%s&key=%s",
|
|
|
|
id, os.Getenv("YOUTUBE_API_KEY"))
|
|
|
|
if apiResponse, err = PerformGetRequest(url); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
numVideos, _ := apiResponse.Int("pageInfo", "totalResults")
|
|
|
|
if numVideos > 50 {
|
|
|
|
numVideos = 50
|
2015-04-14 08:40:39 +02:00
|
|
|
}
|
|
|
|
|
2015-08-03 14:58:49 +02:00
|
|
|
for i := 0; i < numVideos; i++ {
|
|
|
|
index := strconv.Itoa(i)
|
|
|
|
videoID, _ := apiResponse.String("items", index, "snippet", "resourceId", "videoId")
|
2015-09-26 15:52:39 +02:00
|
|
|
if song, err := yt.NewSong(user, videoID, "", playlist); err == nil {
|
|
|
|
songArray = append(songArray, song)
|
2015-04-14 08:40:39 +02:00
|
|
|
}
|
|
|
|
}
|
2015-09-26 15:52:39 +02:00
|
|
|
return songArray, nil
|
2015-04-14 08:40:39 +02:00
|
|
|
}
|