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/youtube_dl.go

282 lines
8.2 KiB
Go
Raw Normal View History

2015-09-25 18:25:52 +02:00
/*
* MumbleDJ
* By Matthieu Grieger
* youtube_dl.go
* Copyright (c) 2014, 2015 Matthieu Grieger (MIT License)
*/
2015-08-03 22:40:19 +02:00
package main
2015-08-03 23:51:38 +02:00
import (
2015-09-26 15:57:29 +02:00
"encoding/json"
2015-08-03 23:51:38 +02:00
"errors"
"fmt"
2015-09-26 15:57:29 +02:00
"io/ioutil"
"net/http"
2015-08-03 23:51:38 +02:00
"os"
"os/exec"
2015-09-26 17:04:39 +02:00
"strconv"
"strings"
2015-08-03 23:51:38 +02:00
"time"
2015-09-26 16:57:17 +02:00
"github.com/jmoiron/jsonq"
"github.com/layeh/gumble/gumble"
2015-08-03 23:51:38 +02:00
"github.com/layeh/gumble/gumble_ffmpeg"
)
2015-08-03 22:40:19 +02:00
// YouTubeSong implements the Song interface
type YouTubeSong struct {
2015-08-03 22:40:19 +02:00
id string
title string
thumbnail string
submitter *gumble.User
2015-09-26 17:04:39 +02:00
duration int
2015-08-04 00:02:16 +02:00
url string
2015-08-04 00:04:41 +02:00
offset int
2015-08-13 15:33:37 +02:00
format string
2015-08-03 22:40:19 +02:00
playlist Playlist
skippers []string
dontSkip bool
service Service
2015-08-03 22:40:19 +02:00
}
// YouTubePlaylist implements the Playlist interface
type YouTubePlaylist struct {
2015-08-10 17:00:47 +02:00
id string
title string
}
// ------------
// YOUTUBE SONG
// ------------
2015-08-10 17:00:47 +02:00
2015-08-03 22:40:19 +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 (dl *YouTubeSong) Download() error {
2015-08-03 22:40:19 +02:00
// Checks to see if song is already downloaded
if _, err := os.Stat(fmt.Sprintf("%s/.mumbledj/songs/%s", dj.homeDir, dl.Filename())); os.IsNotExist(err) {
2015-09-25 18:52:53 +02:00
cmd := exec.Command("youtube-dl", "--verbose", "--no-mtime", "--output", fmt.Sprintf("%s/.mumbledj/songs/%s", dj.homeDir, dl.Filename()), "--format", dl.format, "--prefer-ffmpeg", dl.url)
output, err := cmd.CombinedOutput()
2015-08-12 23:18:22 +02:00
if err == nil {
2015-08-03 22:40:19 +02:00
if dj.conf.Cache.Enabled {
dj.cache.CheckMaximumDirectorySize()
}
return nil
2015-08-12 23:18:22 +02:00
} else {
2015-08-13 15:33:37 +02:00
args := ""
for s := range cmd.Args {
2015-08-13 15:33:37 +02:00
args += cmd.Args[s] + " "
}
2015-08-16 02:10:35 +02:00
fmt.Printf(args + "\n" + string(output) + "\n" + "youtube-dl: " + err.Error() + "\n")
2015-08-12 23:18:22 +02:00
return errors.New("Song download failed.")
2015-08-03 22:40:19 +02:00
}
}
return nil
}
// Play plays the song. Once the song is playing, a notification is displayed in a text message that features the song
2015-09-26 17:04:39 +02:00
// thumbnail, URL, title, duration, and submitter.
func (dl *YouTubeSong) Play() {
2015-08-03 23:59:37 +02:00
if dl.offset != 0 {
2015-08-03 22:40:19 +02:00
offsetDuration, _ := time.ParseDuration(fmt.Sprintf("%ds", dl.offset))
dj.audioStream.Offset = offsetDuration
}
dj.audioStream.Source = gumble_ffmpeg.SourceFile(fmt.Sprintf("%s/.mumbledj/songs/%s", dj.homeDir, dl.Filename()))
2015-08-03 22:40:19 +02:00
if err := dj.audioStream.Play(); err != nil {
panic(err)
} else {
message := `<table><tr><td align="center"><img src="%s" width=150 /></td></tr><tr><td align="center"><b><a href="%s">%s</a> (%s)</b></td></tr><tr><td align="center">Added by %s</td></tr>`
2015-09-26 17:04:39 +02:00
message = fmt.Sprintf(message, dl.thumbnail, dl.url, dl.title, dl.duration, dl.submitter.Name)
if !isNil(dl.playlist) {
message = fmt.Sprintf(message+`<tr><td align="center">From playlist "%s"</td></tr>`, dl.playlist.Title())
2015-08-03 22:40:19 +02:00
}
dj.client.Self.Channel.Send(message+`</table>`, false)
2015-08-03 22:40:19 +02:00
go func() {
dj.audioStream.Wait()
dj.queue.OnSongFinished()
}()
}
}
// Delete deletes the song from ~/.mumbledj/songs if the cache is disabled.
func (dl *YouTubeSong) Delete() error {
2015-08-03 22:40:19 +02:00
if dj.conf.Cache.Enabled == false {
filePath := fmt.Sprintf("%s/.mumbledj/songs/%s", dj.homeDir, dl.Filename())
2015-08-03 22:40:19 +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 (dl *YouTubeSong) AddSkip(username string) error {
2015-08-03 22:40:19 +02:00
for _, user := range dl.skippers {
if username == user {
return errors.New("This user has already skipped the current song.")
}
}
dl.skippers = append(dl.skippers, username)
return nil
}
// RemoveSkip removes a skip from the skippers slice. If username is not in slice, an error is
// returned.
func (dl *YouTubeSong) RemoveSkip(username string) error {
2015-08-03 22:40:19 +02:00
for i, user := range dl.skippers {
if username == user {
2015-08-04 00:02:16 +02:00
dl.skippers = append(dl.skippers[:i], dl.skippers[i+1:]...)
2015-08-03 22:40:19 +02:00
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 (dl *YouTubeSong) SkipReached(channelUsers int) bool {
2015-08-03 22:40:19 +02:00
if float32(len(dl.skippers))/float32(channelUsers) >= dj.conf.General.SkipRatio {
return true
}
return false
}
// Submitter returns the name of the submitter of the Song.
func (dl *YouTubeSong) Submitter() string {
return dl.submitter.Name
2015-08-03 22:40:19 +02:00
}
// Title returns the title of the Song.
func (dl *YouTubeSong) Title() string {
2015-08-03 22:40:19 +02:00
return dl.title
}
// ID returns the id of the Song.
func (dl *YouTubeSong) ID() string {
2015-08-03 22:40:19 +02:00
return dl.id
}
// Filename returns the filename of the Song.
func (dl *YouTubeSong) Filename() string {
2015-09-25 18:48:04 +02:00
return dl.id + "." + dl.format
2015-08-03 22:40:19 +02:00
}
2015-09-26 17:04:39 +02:00
// DurationInt returns number of seconds for the Song.
func (dl *YouTubeSong) DurationInt() string {
return duration
}
// DurationString returns the pretty version of duration for the Song.
2015-09-26 16:14:09 +02:00
func (dl *YouTubeSong) DurationString() string {
2015-09-26 17:04:39 +02:00
timeDuration, _ := time.ParseDuration(strconv.Iota(dl.duration) + "s")
2015-09-26 16:09:07 +02:00
return timeDuration.String()
2015-08-03 22:40:19 +02:00
}
// Thumbnail returns the thumbnail URL for the Song.
func (dl *YouTubeSong) Thumbnail() string {
2015-08-03 22:40:19 +02:00
return dl.thumbnail
}
// Playlist returns the playlist type for the Song (may be nil).
func (dl *YouTubeSong) Playlist() Playlist {
2015-08-03 22:40:19 +02:00
return dl.playlist
}
// DontSkip returns the DontSkip boolean value for the Song.
func (dl *YouTubeSong) DontSkip() bool {
2015-08-03 22:40:19 +02:00
return dl.dontSkip
}
// SetDontSkip sets the DontSkip boolean value for the Song.
func (dl *YouTubeSong) SetDontSkip(value bool) {
2015-08-03 22:40:19 +02:00
dl.dontSkip = value
}
2015-08-10 17:00:47 +02:00
// ----------------
// YOUTUBE PLAYLIST
// ----------------
// AddSkip adds a skip to the playlist's skippers slice.
func (p *YouTubePlaylist) AddSkip(username string) error {
2015-08-10 17:00:47 +02:00
for _, user := range dj.playlistSkips[p.ID()] {
if username == user {
return errors.New("This user has already skipped the current song.")
}
}
dj.playlistSkips[p.ID()] = append(dj.playlistSkips[p.ID()], username)
return nil
}
// RemoveSkip removes a skip from the playlist's skippers slice. If username is not in the slice
// an error is returned.
func (p *YouTubePlaylist) RemoveSkip(username string) error {
2015-08-10 17:00:47 +02:00
for i, user := range dj.playlistSkips[p.ID()] {
if username == user {
dj.playlistSkips[p.ID()] = append(dj.playlistSkips[p.ID()][:i], dj.playlistSkips[p.ID()][i+1:]...)
return nil
}
}
return errors.New("This user has not skipped the song.")
}
// DeleteSkippers removes the skippers entry in dj.playlistSkips.
func (p *YouTubePlaylist) DeleteSkippers() {
2015-08-10 17:00:47 +02:00
delete(dj.playlistSkips, p.ID())
}
// 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 (p *YouTubePlaylist) SkipReached(channelUsers int) bool {
2015-08-10 17:00:47 +02:00
if float32(len(dj.playlistSkips[p.ID()]))/float32(channelUsers) >= dj.conf.General.PlaylistSkipRatio {
return true
}
return false
}
// ID returns the id of the YouTubePlaylist.
func (p *YouTubePlaylist) ID() string {
2015-08-10 17:00:47 +02:00
return p.id
}
// Title returns the title of the YouTubePlaylist.
func (p *YouTubePlaylist) Title() string {
2015-08-10 17:00:47 +02:00
return p.title
}
// PerformGetRequest does all the grunt work for HTTPS GET request.
func PerformGetRequest(url string) (*jsonq.JsonQuery, error) {
jsonString := ""
if response, err := http.Get(url); err == nil {
defer response.Body.Close()
if response.StatusCode == 200 {
if body, err := ioutil.ReadAll(response.Body); err == nil {
jsonString = string(body)
}
} else {
if response.StatusCode == 403 {
return nil, errors.New("Invalid API key supplied.")
}
return nil, errors.New("Invalid ID supplied.")
}
} else {
return nil, errors.New("An error occurred while receiving HTTP GET response.")
}
jsonData := map[string]interface{}{}
decoder := json.NewDecoder(strings.NewReader(jsonString))
decoder.Decode(&jsonData)
jq := jsonq.NewQuery(jsonData)
return jq, nil
}