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

157 lines
4.8 KiB
Go
Raw Normal View History

2014-12-09 06:45:22 +01:00
/*
* MumbleDJ
* By Matthieu Grieger
* main.go
2015-01-18 23:44:40 +01:00
* Copyright (c) 2014, 2015 Matthieu Grieger (MIT License)
2014-12-09 06:45:22 +01:00
*/
package main
import (
2014-12-10 00:41:50 +01:00
"flag"
"fmt"
"github.com/layeh/gopus"
2014-12-09 06:45:22 +01:00
"github.com/layeh/gumble/gumble"
"github.com/layeh/gumble/gumble_ffmpeg"
2014-12-09 06:45:22 +01:00
"github.com/layeh/gumble/gumbleutil"
"os/user"
2014-12-09 06:45:22 +01:00
)
// MumbleDJ type declaration
type mumbledj struct {
2014-12-16 01:40:31 +01:00
config gumble.Config
client *gumble.Client
keepAlive chan bool
defaultChannel string
2014-12-16 01:40:31 +01:00
conf DjConfig
queue *SongQueue
audioStream *gumble_ffmpeg.Stream
homeDir string
}
2014-12-27 19:05:13 +01:00
// OnConnect event. First moves MumbleDJ into the default channel specified
// via commandline args, and moves to root channel if the channel does not exist. The current
// user's homedir path is stored, configuration is loaded, and the audio stream is set up.
func (dj *mumbledj) OnConnect(e *gumble.ConnectEvent) {
if dj.client.Channels().Find(dj.defaultChannel) != nil {
dj.client.Self().Move(dj.client.Channels().Find(dj.defaultChannel))
} else {
2014-12-27 19:05:13 +01:00
fmt.Println("Channel doesn't exist or one was not provided, staying in root channel...")
}
2014-12-16 01:40:31 +01:00
if currentUser, err := user.Current(); err == nil {
dj.homeDir = currentUser.HomeDir
}
if err := loadConfiguration(); err == nil {
2014-12-13 05:52:07 +01:00
fmt.Println("Configuration successfully loaded!")
2014-12-13 18:22:30 +01:00
} else {
panic(err)
2014-12-13 05:52:07 +01:00
}
if audioStream, err := gumble_ffmpeg.New(dj.client); err == nil {
dj.audioStream = audioStream
2015-02-03 02:45:55 +01:00
dj.audioStream.Volume = dj.conf.Volume.DefaultVolume
} else {
panic(err)
}
dj.client.AudioEncoder().SetApplication(gopus.Audio)
}
2014-12-27 19:05:13 +01:00
// OnDisconnect event. Terminates MumbleDJ thread.
func (dj *mumbledj) OnDisconnect(e *gumble.DisconnectEvent) {
dj.keepAlive <- true
}
2014-12-27 19:05:13 +01:00
// OnTextMessage event. Checks for command prefix, and calls parseCommand if it exists. Ignores
// the incoming message otherwise.
func (dj *mumbledj) OnTextMessage(e *gumble.TextMessageEvent) {
plainMessage := gumbleutil.PlainText(&e.TextMessage)
if plainMessage[0] == dj.conf.General.CommandPrefix[0] && plainMessage != dj.conf.General.CommandPrefix {
parseCommand(e.Sender, e.Sender.Name(), plainMessage[1:])
2014-12-16 01:40:31 +01:00
}
}
// OnUserChange event. Checks UserChange type, and adjusts items such as skiplists to reflect
// the current status of the users on the server.
func (dj *mumbledj) OnUserChange(e *gumble.UserChangeEvent) {
if e.Type.Has(gumble.UserChangeDisconnected) {
if dj.audioStream.IsPlaying() {
if dj.queue.CurrentItem().ItemType() == "playlist" {
dj.queue.CurrentItem().(*Playlist).RemoveSkip(e.User.Name())
dj.queue.CurrentItem().(*Playlist).songs.CurrentItem().(*Song).RemoveSkip(e.User.Name())
} else {
dj.queue.CurrentItem().(*Song).RemoveSkip(e.User.Name())
}
}
}
}
2014-12-27 19:05:13 +01:00
// Checks if username has the permissions to execute a command. Permissions are specified in
// mumbledj.gcfg.
2014-12-16 01:40:31 +01:00
func (dj *mumbledj) HasPermission(username string, command bool) bool {
if dj.conf.Permissions.AdminsEnabled && command {
for _, adminName := range dj.conf.Permissions.Admins {
if username == adminName {
return true
}
}
return false
} else {
return true
2014-12-13 05:52:07 +01:00
}
}
// Sends a private message to a user. Essentially just checks if a user is still in the server
// before sending them the message.
func (dj *mumbledj) SendPrivateMessage(user *gumble.User, message string) {
if targetUser := dj.client.Self().Channel().Users().Find(user.Name()); targetUser != nil {
targetUser.Send(message)
}
}
2014-12-27 19:05:13 +01:00
// dj variable declaration. This is done outside of main() to allow global use.
2014-12-16 01:40:31 +01:00
var dj = mumbledj{
2014-12-13 05:52:07 +01:00
keepAlive: make(chan bool),
queue: NewSongQueue(),
2014-12-09 06:45:22 +01:00
}
2014-12-10 00:41:50 +01:00
2014-12-27 19:05:13 +01:00
// Main function, but only really performs startup tasks. Grabs and parses commandline
// args, sets up the gumble client and its listeners, and then connects to the server.
2014-12-10 00:41:50 +01:00
func main() {
2014-12-20 06:57:48 +01:00
var address, port, username, password, channel string
2014-12-10 00:41:50 +01:00
flag.StringVar(&address, "server", "localhost", "address for Mumble server")
flag.StringVar(&port, "port", "64738", "port for Mumble server")
flag.StringVar(&username, "username", "MumbleDJ", "username of MumbleDJ on server")
flag.StringVar(&password, "password", "", "password for Mumble server (if needed)")
flag.StringVar(&channel, "channel", "root", "default channel for MumbleDJ")
2014-12-10 00:41:50 +01:00
flag.Parse()
2014-12-16 01:40:31 +01:00
dj.client = gumble.NewClient(&dj.config)
dj.config = gumble.Config{
2014-12-10 00:41:50 +01:00
Username: username,
Password: password,
2014-12-16 01:40:31 +01:00
Address: address + ":" + port,
2014-12-10 00:41:50 +01:00
}
dj.defaultChannel = channel
2014-12-16 01:40:31 +01:00
dj.client.Attach(gumbleutil.Listener{
2014-12-16 01:40:31 +01:00
Connect: dj.OnConnect,
Disconnect: dj.OnDisconnect,
TextMessage: dj.OnTextMessage,
UserChange: dj.OnUserChange,
})
dj.client.Attach(gumbleutil.AutoBitrate)
2014-12-16 01:40:31 +01:00
// IMPORTANT NOTE: This will be changed later once released. Not really safe at the
// moment.
dj.config.TLSConfig.InsecureSkipVerify = true
if err := dj.client.Connect(); err != nil {
2014-12-10 00:41:50 +01:00
panic(err)
}
2014-12-16 01:40:31 +01:00
<-dj.keepAlive
2014-12-10 00:41:50 +01:00
}