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>
|
|
|
|
|
|
|
|
--]]
|
|
|
|
|
2017-01-12 18:33:57 +01:00
|
|
|
local helpers = require("lain.helpers")
|
2017-01-20 20:58:22 +01:00
|
|
|
local shell = require("awful.util").shell
|
2013-09-16 13:49:14 +02:00
|
|
|
local escape_f = require("awful.util").escape
|
2017-01-08 13:25:09 +01:00
|
|
|
local focused = require("awful.screen").focused
|
2013-09-07 12:06:42 +02:00
|
|
|
local naughty = require("naughty")
|
|
|
|
local wibox = require("wibox")
|
2017-01-12 18:33:57 +01:00
|
|
|
local os = { getenv = os.getenv }
|
|
|
|
local string = { format = string.format,
|
|
|
|
gmatch = string.gmatch,
|
|
|
|
match = string.match }
|
2013-09-07 12:06:42 +02:00
|
|
|
local setmetatable = setmetatable
|
|
|
|
|
|
|
|
-- MPD infos
|
|
|
|
-- lain.widgets.mpd
|
2017-01-03 12:21:50 +01:00
|
|
|
local mpd = helpers.make_widget_textbox()
|
2013-09-07 12:06:42 +02:00
|
|
|
|
2013-09-11 19:39:14 +02:00
|
|
|
local function worker(args)
|
2017-01-12 18:33:57 +01:00
|
|
|
local args = args or {}
|
|
|
|
local timeout = args.timeout or 2
|
2017-01-20 20:58:22 +01:00
|
|
|
local password = (args.password and #args.password > 0 and string.format("password %s\\n", args.password)) or ""
|
2017-01-12 18:33:57 +01: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_pattern = args.cover_pattern or "*\\.(jpg|jpeg|png|gif)$"
|
|
|
|
local cover_size = args.cover_size or 100
|
|
|
|
local default_art = args.default_art or ""
|
|
|
|
local notify = args.notify or "on"
|
|
|
|
local followtag = args.followtag or false
|
|
|
|
local settings = args.settings or function() end
|
|
|
|
|
|
|
|
local mpdh = string.format("telnet://%s:%s", host, port)
|
2017-01-20 20:58:22 +01:00
|
|
|
local echo = string.format("printf \"%sstatus\\ncurrentsong\\nclose\\n\"", password)
|
2017-01-23 23:03:13 +01:00
|
|
|
local cmd = string.format("%s | curl --connect-timeout 1 -fsm 3 %s", echo, mpdh)
|
2013-11-02 21:05:25 +01:00
|
|
|
|
2017-01-20 20:58:22 +01:00
|
|
|
mpd_notification_preset = { title = "Now playing", timeout = 6 }
|
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()
|
2017-01-23 23:03:13 +01:00
|
|
|
helpers.async({ shell, "-c", cmd }, function(f)
|
2014-08-07 13:37:24 +02:00
|
|
|
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
|
|
|
|
2017-01-12 18:33:57 +01:00
|
|
|
if mpd_now.state == "play" then
|
|
|
|
if notify == "on" and mpd_now.title ~= helpers.get_map("current mpd track") then
|
2014-08-07 13:37:24 +02:00
|
|
|
helpers.set_map("current mpd track", mpd_now.title)
|
|
|
|
|
2017-01-12 18:33:57 +01:00
|
|
|
if followtag then mpd_notification_preset.screen = focused() end
|
|
|
|
|
2017-01-20 20:58:22 +01:00
|
|
|
local common = {
|
2017-01-12 18:33:57 +01:00
|
|
|
preset = mpd_notification_preset,
|
2017-01-20 20:58:22 +01:00
|
|
|
icon = default_art,
|
2017-01-12 18:33:57 +01:00
|
|
|
icon_size = cover_size,
|
2014-08-07 13:37:24 +02:00
|
|
|
replaces_id = mpd.id,
|
2017-01-20 20:58:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if not string.match(mpd_now.file, "http.*://") then -- local file instead of http stream
|
|
|
|
local path = string.format("%s/%s", music_dir, string.match(mpd_now.file, ".*/"))
|
2017-01-23 23:03:13 +01:00
|
|
|
local cover = string.format("find '%s' -maxdepth 1 -type f | egrep -i -m1 '%s'", path, cover_pattern)
|
|
|
|
helpers.async({ shell, "-c", cover }, function(current_icon)
|
2017-01-20 20:58:22 +01:00
|
|
|
common.icon = current_icon:gsub("\n", "")
|
|
|
|
mpd.id = naughty.notify(common).id
|
|
|
|
end)
|
|
|
|
else
|
|
|
|
mpd.id = naughty.notify(common).id
|
|
|
|
end
|
|
|
|
|
2014-08-07 13:37:24 +02:00
|
|
|
end
|
2017-01-12 18:33:57 +01:00
|
|
|
elseif mpd_now.state ~= "pause" then
|
2014-08-07 13:37:24 +02:00
|
|
|
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
|
|
|
|
2017-01-03 12:21:50 +01:00
|
|
|
return mpd
|
2013-09-07 12:06:42 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
return setmetatable(mpd, { __call = function(_, ...) return worker(...) end })
|