awesome-wm-widgets/gerrit-widget/gerrit.lua

79 lines
2.5 KiB
Lua
Raw Normal View History

2019-09-23 04:44:50 +02:00
-------------------------------------------------
-- Gerrit Widget for Awesome Window Manager
-- Shows the number of currently assigned reviews
-- More details could be found here:
-- https://github.com/streetturtle/awesome-wm-widgets/tree/master/gerrit-widget
-- @author Pavel Makhov
-- @copyright 2019 Pavel Makhov
-------------------------------------------------
local wibox = require("wibox")
local watch = require("awful.widget.watch")
local json = require("json")
local spawn = require("awful.spawn")
local naughty = require("naughty")
local path_to_icons = "/usr/share/icons/Arc/status/symbolic/"
2019-09-24 02:48:27 +02:00
local GET_CHANGES_CMD = [[bash -c "curl -s -X GET -n https://%s/a/changes/\\?q\\=%s | tail -n +2"]]
local GET_USERNAME_CMD = [[bash -c "curl -s -X GET -n https://%s/accounts/%s/name | tail -n +2 | sed 's/\"//g'"]]
2019-09-23 04:44:50 +02:00
local gerrit_widget = {}
2019-09-24 02:48:27 +02:00
local name_dict = {}
2019-09-23 04:44:50 +02:00
local function worker(args)
local args = args or {}
local host = args.host or naughty.notify{preset = naughty.config.presets.critical, text = 'Gerrit host is unknown'}
2019-09-24 02:48:27 +02:00
local query = args.query or 'is:reviewer AND status:open AND NOT is:wip'
2019-09-23 04:44:50 +02:00
local reviews
2019-09-24 02:48:27 +02:00
local notification_text
2019-09-23 04:44:50 +02:00
gerrit_widget = wibox.widget{
widget = wibox.widget.textbox
}
2019-09-24 02:48:27 +02:00
local function get_name_by_id(id)
res = name_dict[id]
if res == nil then
res = ''
spawn.easy_async(string.format(GET_USERNAME_CMD, host, id), function(stdout, stderr, reason, exit_code)
name_dict[tonumber(id)] = stdout
end)
end
return res
2019-09-23 04:44:50 +02:00
end
local update_graphic = function(widget, stdout, _, _, _)
reviews = json.decode(stdout)
2019-09-24 02:48:27 +02:00
widget.text = rawlen(reviews)
2019-09-23 04:44:50 +02:00
2019-09-24 02:48:27 +02:00
notification_text = ''
for _, review in ipairs(reviews) do
notification_text = notification_text .. "<b>" .. review.project ..'</b> / ' .. get_name_by_id(review.owner._account_id) .. review.subject ..'\n'
2019-09-23 04:44:50 +02:00
end
end
local notification
gerrit_widget:connect_signal("mouse::enter", function()
notification = naughty.notify{
text = notification_text,
2019-09-24 02:48:27 +02:00
timeout = 20,
2019-09-23 04:44:50 +02:00
position = position,
width = (500)
}
end)
gerrit_widget:connect_signal("mouse::leave", function()
naughty.destroy(notification)
end)
2019-09-24 02:48:27 +02:00
watch(string.format(GET_CHANGES_CMD, host, query:gsub(" ", "+")), 1, update_graphic, gerrit_widget)
2019-09-23 04:44:50 +02:00
return gerrit_widget
end
return setmetatable(gerrit_widget, { __call = function(_, ...) return worker(...) end })