2013-09-07 12:06:42 +02:00
|
|
|
|
|
|
|
--[[
|
|
|
|
|
|
|
|
Licensed under GNU General Public License v2
|
|
|
|
* (c) 2013, Luke Bonham
|
|
|
|
* (c) 2010, Adrian C. <anrxc@sysphere.org>
|
|
|
|
|
|
|
|
--]]
|
|
|
|
|
|
|
|
local helpers = require("lain.helpers")
|
2014-08-07 13:37:24 +02:00
|
|
|
local async = require("lain.asyncshell")
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2013-09-16 13:49:14 +02:00
|
|
|
local escape_f = require("awful.util").escape
|
2013-09-07 12:06:42 +02:00
|
|
|
local naughty = require("naughty")
|
|
|
|
local wibox = require("wibox")
|
|
|
|
|
2016-08-03 17:38:51 +02:00
|
|
|
local os = { execute = os.execute,
|
|
|
|
getenv = os.getenv }
|
|
|
|
local math = { floor = math.floor }
|
2015-07-29 13:21:59 +02:00
|
|
|
local mouse = mouse
|
2016-08-03 17:38:51 +02:00
|
|
|
local string = { format = string.format,
|
|
|
|
match = string.match,
|
|
|
|
gmatch = string.gmatch }
|
2013-09-07 12:06:42 +02:00
|
|
|
|
|
|
|
local setmetatable = setmetatable
|
|
|
|
|
|
|
|
-- MPD infos
|
|
|
|
-- lain.widgets.mpd
|
2013-09-11 19:39:14 +02:00
|
|
|
local mpd = {}
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2013-09-11 19:39:14 +02:00
|
|
|
local function worker(args)
|
2013-09-18 00:27:46 +02:00
|
|
|
local args = args or {}
|
2015-10-20 15:17:44 +02:00
|
|
|
local timeout = args.timeout or 2
|
2013-11-02 21:05:25 +01:00
|
|
|
local password = args.password or ""
|
2013-09-18 00:27:46 +02:00
|
|
|
local host = args.host or "127.0.0.1"
|
|
|
|
local port = args.port or "6600"
|
|
|
|
local music_dir = args.music_dir or os.getenv("HOME") .. "/Music"
|
|
|
|
local cover_size = args.cover_size or 100
|
|
|
|
local default_art = args.default_art or ""
|
2016-06-08 11:52:36 +02:00
|
|
|
local notify = args.notify or "on"
|
2015-07-29 13:21:59 +02:00
|
|
|
local followmouse = args.followmouse or false
|
2015-07-29 17:15:45 +02:00
|
|
|
local echo_cmd = args.echo_cmd or "echo"
|
2013-09-18 00:27:46 +02:00
|
|
|
local settings = args.settings or function() end
|
2013-09-07 12:06:42 +02:00
|
|
|
|
|
|
|
local mpdcover = helpers.scripts_dir .. "mpdcover"
|
2013-09-10 23:02:11 +02:00
|
|
|
local mpdh = "telnet://" .. host .. ":" .. port
|
2015-07-29 17:15:45 +02:00
|
|
|
local echo = echo_cmd .. " 'password " .. password .. "\nstatus\ncurrentsong\nclose'"
|
2013-11-02 21:05:25 +01:00
|
|
|
|
|
|
|
mpd.widget = wibox.widget.textbox('')
|
2013-11-01 19:27:49 +01:00
|
|
|
|
2013-09-13 00:07:44 +02:00
|
|
|
mpd_notification_preset = {
|
2013-09-11 19:39:14 +02:00
|
|
|
title = "Now playing",
|
2015-10-20 15:17:44 +02:00
|
|
|
timeout = 6
|
2013-09-11 19:39:14 +02:00
|
|
|
}
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2015-10-20 15:17:44 +02:00
|
|
|
helpers.set_map("current mpd track", nil)
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2013-09-11 19:39:14 +02:00
|
|
|
function mpd.update()
|
2014-08-07 13:37:24 +02:00
|
|
|
async.request(echo .. " | curl --connect-timeout 1 -fsm 3 " .. mpdh, function (f)
|
|
|
|
mpd_now = {
|
2016-06-20 19:23:40 +02:00
|
|
|
random_mode = false,
|
|
|
|
single_mode = false,
|
|
|
|
repeat_mode = false,
|
|
|
|
consume_mode = false,
|
|
|
|
pls_pos = "N/A",
|
|
|
|
pls_len = "N/A",
|
2016-06-20 19:21:29 +02:00
|
|
|
state = "N/A",
|
|
|
|
file = "N/A",
|
|
|
|
name = "N/A",
|
|
|
|
artist = "N/A",
|
|
|
|
title = "N/A",
|
|
|
|
album = "N/A",
|
2016-12-10 23:02:50 +01:00
|
|
|
genre = "N/A",
|
|
|
|
track = "N/A",
|
2016-06-20 19:21:29 +02:00
|
|
|
date = "N/A",
|
|
|
|
time = "N/A",
|
|
|
|
elapsed = "N/A"
|
2014-08-07 13:37:24 +02:00
|
|
|
}
|
|
|
|
|
2015-08-05 12:28:54 +02:00
|
|
|
for line in string.gmatch(f, "[^\n]+") do
|
2014-08-07 13:37:24 +02:00
|
|
|
for k, v in string.gmatch(line, "([%w]+):[%s](.*)$") do
|
2016-06-20 19:21:29 +02:00
|
|
|
if k == "state" then mpd_now.state = v
|
|
|
|
elseif k == "file" then mpd_now.file = v
|
|
|
|
elseif k == "Name" then mpd_now.name = escape_f(v)
|
|
|
|
elseif k == "Artist" then mpd_now.artist = escape_f(v)
|
|
|
|
elseif k == "Title" then mpd_now.title = escape_f(v)
|
|
|
|
elseif k == "Album" then mpd_now.album = escape_f(v)
|
2016-12-10 23:02:50 +01:00
|
|
|
elseif k == "Genre" then mpd_now.genre = escape_f(v)
|
|
|
|
elseif k == "Track" then mpd_now.track = escape_f(v)
|
2016-06-20 19:21:29 +02:00
|
|
|
elseif k == "Date" then mpd_now.date = escape_f(v)
|
|
|
|
elseif k == "Time" then mpd_now.time = v
|
|
|
|
elseif k == "elapsed" then mpd_now.elapsed = string.match(v, "%d+")
|
2016-06-20 19:23:40 +02:00
|
|
|
elseif k == "song" then mpd_now.pls_pos = v
|
|
|
|
elseif k == "playlistlength" then mpd_now.pls_len = v
|
|
|
|
elseif k == "repeat" then mpd_now.repeat_mode = v ~= "0"
|
|
|
|
elseif k == "single" then mpd_now.single_mode = v ~= "0"
|
|
|
|
elseif k == "random" then mpd_now.random_mode = v ~= "0"
|
|
|
|
elseif k == "consume" then mpd_now.consume_mode = v ~= "0"
|
2014-08-07 13:37:24 +02:00
|
|
|
end
|
2013-09-07 12:06:42 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-08-07 13:37:24 +02:00
|
|
|
mpd_notification_preset.text = string.format("%s (%s) - %s\n%s", mpd_now.artist,
|
|
|
|
mpd_now.album, mpd_now.date, mpd_now.title)
|
2015-10-20 15:17:44 +02:00
|
|
|
widget = mpd.widget
|
|
|
|
settings()
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2014-08-07 13:37:24 +02:00
|
|
|
if mpd_now.state == "play"
|
2013-09-07 12:06:42 +02:00
|
|
|
then
|
2016-06-08 11:52:36 +02:00
|
|
|
if notify == "on" and mpd_now.title ~= helpers.get_map("current mpd track")
|
2014-08-07 13:37:24 +02:00
|
|
|
then
|
|
|
|
helpers.set_map("current mpd track", mpd_now.title)
|
|
|
|
|
2015-07-27 13:05:56 +02:00
|
|
|
if string.match(mpd_now.file, "http.*://") == nil
|
2015-07-12 11:51:58 +02:00
|
|
|
then -- local file
|
|
|
|
os.execute(string.format("%s %q %q %d %q", mpdcover, music_dir,
|
|
|
|
mpd_now.file, cover_size, default_art))
|
|
|
|
current_icon = "/tmp/mpdcover.png"
|
|
|
|
else -- http stream
|
|
|
|
current_icon = default_art
|
|
|
|
end
|
2014-08-07 13:37:24 +02:00
|
|
|
|
2015-07-29 13:21:59 +02:00
|
|
|
if followmouse then
|
|
|
|
mpd_notification_preset.screen = mouse.screen
|
|
|
|
end
|
|
|
|
|
2014-08-07 13:37:24 +02:00
|
|
|
mpd.id = naughty.notify({
|
|
|
|
preset = mpd_notification_preset,
|
2015-07-12 11:51:58 +02:00
|
|
|
icon = current_icon,
|
2014-08-07 13:37:24 +02:00
|
|
|
replaces_id = mpd.id,
|
|
|
|
}).id
|
|
|
|
end
|
|
|
|
elseif mpd_now.state ~= "pause"
|
|
|
|
then
|
|
|
|
helpers.set_map("current mpd track", nil)
|
2013-09-07 12:06:42 +02:00
|
|
|
end
|
2014-08-07 13:37:24 +02:00
|
|
|
end)
|
2013-09-07 12:06:42 +02:00
|
|
|
end
|
|
|
|
|
2013-09-11 19:39:14 +02:00
|
|
|
helpers.newtimer("mpd", timeout, mpd.update)
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2013-09-11 19:39:14 +02:00
|
|
|
return setmetatable(mpd, { __index = mpd.widget })
|
2013-09-07 12:06:42 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
return setmetatable(mpd, { __call = function(_, ...) return worker(...) end })
|