This repository has been archived on 2019-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
mumbledj/service_youtube.go

178 lines
5.6 KiB
Go
Raw Normal View History

/*
* MumbleDJ
* By Matthieu Grieger
* service_youtube.go
* Copyright (c) 2014, 2015 Matthieu Grieger (MIT License)
*/
2015-07-30 18:28:01 +02:00
package main
import (
"errors"
"fmt"
"os"
"regexp"
"strconv"
"strings"
"time"
"github.com/jmoiron/jsonq"
2015-07-27 23:29:50 +02:00
"github.com/layeh/gumble/gumble"
)
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{
2015-08-16 02:28:22 +02:00
`https?:\/\/www\.youtube\.com\/watch\?v=([\w-]+)(\&t=\d*m?\d*s?)?`,
`https?:\/\/youtube\.com\/watch\?v=([\w-]+)(\&t=\d*m?\d*s?)?`,
2015-07-28 01:11:35 +02:00
`https?:\/\/youtu.be\/([\w-]+)(\?t=\d*m?\d*s?)?`,
2015-08-16 02:28:22 +02:00
`https?:\/\/youtube.com\/v\/([\w-]+)(\?t=\d*m?\d*s?)?`,
`https?:\/\/www.youtube.com\/v\/([\w-]+)(\?t=\d*m?\d*s?)?`,
2015-07-28 01:11:35 +02:00
}
2015-07-30 14:48:53 +02:00
// YouTube implements the Service interface
type YouTube struct{}
// 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 23:22:59 +02:00
// URLRegex checks to see if service will accept URL
2015-07-30 14:48:53 +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 23:22:59 +02:00
// NewRequest creates the requested song/playlist and adds to the queue
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) {
shortURL = re.FindStringSubmatch(url)[1]
2015-09-26 17:04:39 +02:00
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]
}
song, err := yt.NewSong(user, shortURL, startOffset, nil)
if isNil(song) {
songArray = append(songArray, song)
return songArray, nil
2015-08-07 14:54:44 +02:00
} else {
return nil, err
2015-08-07 14:54:44 +02:00
}
2015-07-28 00:30:59 +02:00
}
2015-07-28 00:37:52 +02:00
} else {
2015-09-26 16:09:07 +02:00
return nil, err
2015-07-28 00:30:59 +02:00
}
2015-07-27 23:13:40 +02:00
}
2015-08-15 23:22:59 +02:00
// NewSong gathers the metadata for a song extracted from a YouTube video, and returns the song.
func (yt YouTube) NewSong(user *gumble.User, id, offset string, playlist Playlist) (Song, error) {
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")
song := &YouTubeSong{
submitter: user,
title: title,
id: id,
url: "https://youtu.be/" + id,
2015-09-26 16:09:07 +02:00
offset: int(yt.parseTime(offset).Seconds()),
2015-09-26 17:06:48 +02:00
duration: int(yt.parseTime(duration).Seconds()),
thumbnail: thumbnail,
2015-08-13 15:33:37 +02:00
format: "m4a",
skippers: make([]string, 0),
2015-07-28 14:29:14 +02:00
playlist: playlist,
dontSkip: false,
service: yt,
}
return song, nil
}
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 string) time.Duration {
var days, hours, minutes, seconds, totalSeconds int64
if duration != "" {
timestampExp := regexp.MustCompile(`P(?P<days>\d+D)?T(?P<hours>\d+H)?(?P<minutes>\d+M)?(?P<seconds>\d+S)?`)
timestampMatch := timestampExp.FindStringSubmatch(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)
}
2015-09-26 16:57:17 +02:00
totalSeconds = int64((days * 86400) + (hours * 3600) + (minutes * 60) + seconds)
} else {
totalSeconds = 0
}
2015-09-26 17:04:39 +02:00
output, _ := time.ParseDuration(strconv.Itoa(int(totalSeconds)) + "s")
return output
}
2015-07-30 14:48:53 +02:00
// NewPlaylist gathers the metadata for a YouTube playlist and returns it.
2015-09-26 16:09:07 +02:00
func (yt YouTube) NewPlaylist(user *gumble.User, id string) ([]Song, error) {
2015-07-30 14:48:53 +02:00
var apiResponse *jsonq.JsonQuery
2015-09-26 16:09:07 +02:00
var songArray []Song
2015-07-30 14:48:53 +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"))
2015-08-02 19:55:51 +02:00
if apiResponse, err = PerformGetRequest(url); err != nil {
2015-07-30 14:48:53 +02:00
return nil, err
}
title, _ := apiResponse.String("items", "0", "snippet", "title")
playlist := &YouTubePlaylist{
2015-07-30 14:48:53 +02:00
id: id,
title: title,
}
// 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"))
2015-08-02 19:55:51 +02:00
if apiResponse, err = PerformGetRequest(url); err != nil {
2015-07-30 14:48:53 +02:00
return nil, err
}
numVideos, _ := apiResponse.Int("pageInfo", "totalResults")
if numVideos > 50 {
numVideos = 50
}
for i := 0; i < numVideos; i++ {
index := strconv.Itoa(i)
videoID, _ := apiResponse.String("items", index, "snippet", "resourceId", "videoId")
2015-09-26 16:09:07 +02:00
if song, err := yt.NewSong(user, videoID, "", playlist); err == nil {
songArray = append(songArray, song)
}
2015-07-30 14:48:53 +02:00
}
2015-09-26 16:09:07 +02:00
return songArray, nil
2015-07-30 14:48:53 +02:00
}