stevetunes/main.rb

93 lines
1.9 KiB
Ruby
Raw Normal View History

2021-12-19 17:43:07 -05:00
require 'discordrb'
2021-12-19 19:04:55 -05:00
require 'video_info'
2021-12-19 17:43:07 -05:00
require 'uri'
require 'optparse'
require 'shellwords'
2021-12-22 14:40:08 -05:00
require './mpc_shim'
require './util'
2021-12-19 17:43:07 -05:00
2021-12-22 14:40:08 -05:00
mpc = MpcShim.new
2021-12-19 17:43:07 -05:00
options = {}
OptionParser.new do |opt|
opt.on("-t", "--token DISCORD_BOT_TOKEN") {|o| options[:bot_token] = o}
opt.on("-c", "--channel CHANNEL_ID") {|o| options[:channel_id] = Integer(o)}
end.parse!
if options.length == 0
puts "Need to specifiy token and channel"
exit
end
puts "creating spool and tracks directories"
`mkdir -p spool`
2021-12-22 14:40:08 -05:00
`mkdir -p tracks`
2021-12-19 17:43:07 -05:00
if File.exists?("/usr/bin/mpd")
if !File.exists?("/usr/bin/mpc")
puts "Bailing since mpd exists but not mpc (which is needed to control mpd)"
exit
end
puts "starting mpd if not already running"
`systemctl start mpd` unless `ps aux | grep mpd` != ""
2021-12-22 14:40:08 -05:00
mpc.reset()
2021-12-19 17:43:07 -05:00
end
2021-12-19 17:53:07 -05:00
bot = Discordrb::Commands::CommandBot.new token: options[:bot_token], prefix: '!radio '
2021-12-19 17:49:03 -05:00
bot.command :start do |event|
2021-12-22 14:40:08 -05:00
mpc.play
2021-12-19 17:49:03 -05:00
event.respond("starting radio")
end
bot.command :stop do |event|
2021-12-22 14:40:08 -05:00
mpc.stop
2021-12-19 17:49:03 -05:00
event.respond("stoping radio")
end
bot.command :reload do |event|
event.respond("reloading queue")
2021-12-22 14:40:08 -05:00
mpc.stop
mpc.clear
mpc.update
mpc.add
2021-12-19 19:04:55 -05:00
event.respond("queue reloaded")
2021-12-19 17:53:07 -05:00
nil
2021-12-19 17:49:03 -05:00
end
bot.command :pause do |event|
event.respond("pausing playback")
2021-12-22 14:40:08 -05:00
mpc.toggle
2021-12-19 17:53:07 -05:00
nil
2021-12-19 17:49:03 -05:00
end
bot.command :skip do |event|
event.respond("skipping")
2021-12-22 14:40:08 -05:00
mpc.next()
2021-12-19 17:53:07 -05:00
nil
2021-12-19 17:49:03 -05:00
end
2021-12-19 19:04:55 -05:00
bot.command :shuffle do |event|
2021-12-22 14:40:08 -05:00
mpc.shuffle()
2021-12-19 19:04:55 -05:00
event.respond("shuffled queue")
nil
end
2021-12-19 18:04:35 -05:00
bot.command :initialize do |event|
2021-12-19 18:08:54 -05:00
event.respond("loading last 50 messages from channel")
2021-12-19 18:04:35 -05:00
channel = bot.channel(options[:channel_id])
2021-12-19 18:08:54 -05:00
messages = channel.history(50)
2021-12-19 18:04:35 -05:00
messages.each do |msg|
2021-12-19 19:04:55 -05:00
parse_songs_from_string(msg.content)
2021-12-19 17:43:07 -05:00
end
2021-12-22 14:40:08 -05:00
update_mpd(mpc)
2021-12-19 18:08:54 -05:00
event.respond("done loading")
2021-12-19 18:04:35 -05:00
end
2021-12-19 17:43:07 -05:00
2021-12-19 18:04:35 -05:00
bot.message(in: options[:channel_id],contains: "youtube.com") do |event|
2021-12-19 19:04:55 -05:00
parse_songs_from_string(event.content)
2021-12-22 14:40:08 -05:00
update_mpd(mpc)
2021-12-19 17:43:07 -05:00
end
bot.run