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

235 lines
6.9 KiB
Go
Raw Normal View History

2015-08-03 22:40:19 +02:00
package main
2015-08-03 23:51:38 +02:00
import (
"errors"
"fmt"
"os"
"os/exec"
"time"
"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
2015-08-10 17:00:47 +02:00
// Extends a Song
type YouTubeDLSong struct {
2015-08-03 22:40:19 +02:00
id string
title string
thumbnail string
submitter *gumble.User
duration string
2015-08-04 00:02:16 +02:00
url string
2015-08-04 00:04:41 +02:00
offset int
2015-08-03 22:40:19 +02:00
playlist Playlist
skippers []string
dontSkip bool
}
2015-08-10 17:00:47 +02:00
type YouTubeDLPlaylist struct {
id string
title string
}
// -------------
// YouTubeDLSong
// -------------
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.
2015-08-10 17:00:47 +02:00
func (dl *YouTubeDLSong) 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) {
cmd := exec.Command("youtube-dl", "--no-mtime", "--output", fmt.Sprintf("%s/.mumbledj/songs/%s", dj.homeDir, dl.Filename()), "--format", "m4a", "--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:26:39 +02:00
args := "youtube-dl "
for s := range cmd.Args {
2015-08-13 15:26:39 +02:00
args += cmd.Args[s]
}
2015-08-13 15:26:39 +02:00
Verbose(args)
Verbose(string(output))
2015-08-13 15:26:39 +02:00
Verbose("youtube-dl: " + err.Error())
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
// thumbnail, URL, title, duration, and submitter.
2015-08-10 17:00:47 +02:00
func (dl *YouTubeDLSong) 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-08-03 22:40:19 +02:00
message = fmt.Sprintf(message, dl.thumbnail, dl.url, dl.title, dl.duration, dl.submitter)
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
Verbose("Now playing " + dl.title)
go func() {
dj.audioStream.Wait()
dj.queue.OnSongFinished()
}()
}
}
// Delete deletes the song from ~/.mumbledj/songs if the cache is disabled.
2015-08-10 17:00:47 +02:00
func (dl *YouTubeDLSong) 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.
2015-08-10 17:00:47 +02:00
func (dl *YouTubeDLSong) 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.
2015-08-10 17:00:47 +02:00
func (dl *YouTubeDLSong) 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.
2015-08-10 17:00:47 +02:00
func (dl *YouTubeDLSong) 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.
2015-08-10 17:00:47 +02:00
func (dl *YouTubeDLSong) Submitter() string {
return dl.submitter.Name
2015-08-03 22:40:19 +02:00
}
// Title returns the title of the Song.
2015-08-10 17:00:47 +02:00
func (dl *YouTubeDLSong) Title() string {
2015-08-03 22:40:19 +02:00
return dl.title
}
// ID returns the id of the Song.
2015-08-10 17:00:47 +02:00
func (dl *YouTubeDLSong) ID() string {
2015-08-03 22:40:19 +02:00
return dl.id
}
// Filename returns the filename of the Song.
2015-08-10 17:00:47 +02:00
func (dl *YouTubeDLSong) Filename() string {
2015-08-03 22:40:19 +02:00
return dl.id + ".m4a"
}
// Duration returns the duration of the Song.
func (dl *YouTubeDLSong) Duration() string {
2015-08-03 22:40:19 +02:00
return dl.duration
}
// Thumbnail returns the thumbnail URL for the Song.
2015-08-10 17:00:47 +02:00
func (dl *YouTubeDLSong) Thumbnail() string {
2015-08-03 22:40:19 +02:00
return dl.thumbnail
}
// Playlist returns the playlist type for the Song (may be nil).
2015-08-10 17:00:47 +02:00
func (dl *YouTubeDLSong) Playlist() Playlist {
2015-08-03 22:40:19 +02:00
return dl.playlist
}
// DontSkip returns the DontSkip boolean value for the Song.
2015-08-10 17:00:47 +02:00
func (dl *YouTubeDLSong) DontSkip() bool {
2015-08-03 22:40:19 +02:00
return dl.dontSkip
}
// SetDontSkip sets the DontSkip boolean value for the Song.
2015-08-10 17:00:47 +02:00
func (dl *YouTubeDLSong) 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 *YouTubeDLPlaylist) AddSkip(username string) error {
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 *YouTubeDLPlaylist) RemoveSkip(username string) error {
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 *YouTubeDLPlaylist) DeleteSkippers() {
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 *YouTubeDLPlaylist) SkipReached(channelUsers int) bool {
if float32(len(dj.playlistSkips[p.ID()]))/float32(channelUsers) >= dj.conf.General.PlaylistSkipRatio {
return true
}
return false
}
// ID returns the id of the YouTubeDLPlaylist.
func (p *YouTubeDLPlaylist) ID() string {
return p.id
}
// Title returns the title of the YouTubeDLPlaylist.
func (p *YouTubeDLPlaylist) Title() string {
return p.title
}