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

231 lines
8.2 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 awful = require("awful")
2019-09-23 04:44:50 +02:00
local wibox = require("wibox")
local watch = require("awful.widget.watch")
local json = require("json")
local spawn = require("awful.spawn")
local naughty = require("naughty")
local gears = require("gears")
local beautiful = require("beautiful")
2019-11-06 03:36:44 +01:00
local gfs = require("gears.filesystem")
2019-10-20 03:02:27 +02:00
local HOME_DIR = os.getenv("HOME")
2019-11-06 03:36:44 +01:00
local PATH_TO_AVATARS = HOME_DIR .. '/.cache/awmw/gerrit-widget/avatars/'
2019-09-23 04:44:50 +02:00
2019-12-03 21:15:27 +01:00
local GET_CHANGES_CMD = [[bash -c "curl -s -X GET -n %s/a/changes/\\?q\\=%s | tail -n +2"]]
local GET_USER_CMD = [[bash -c "curl -s -X GET -n %s/accounts/%s/ | tail -n +2"]]
2019-11-06 03:36:44 +01:00
local DOWNLOAD_AVATAR_CMD = [[bash -c "curl --create-dirs -o %s %s"]]
2019-09-23 04:44:50 +02:00
local gerrit_widget = {}
2020-12-06 02:57:04 +01:00
local function worker(user_args)
2019-09-23 04:44:50 +02:00
2020-12-06 02:57:04 +01:00
local args = user_args or {}
2019-09-23 04:44:50 +02:00
2019-11-06 03:36:44 +01:00
local icon = args.icons or HOME_DIR .. '/.config/awesome/awesome-wm-widgets/gerrit-widget/gerrit_icon.svg'
2019-12-18 03:37:03 +01:00
local host = args.host or naughty.notify{
2020-12-06 20:47:40 +01:00
preset = naughty.config.presets.critical,
2019-12-18 03:37:03 +01:00
title = 'Gerrit Widget',
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'
2020-09-19 10:08:15 +02:00
local timeout = args.timeout or 10
2019-09-23 04:44:50 +02:00
local current_number_of_reviews
local previous_number_of_reviews = 0
2019-10-08 04:41:51 +02:00
local name_dict = {}
2019-09-23 04:44:50 +02:00
local rows = {
2019-10-20 03:02:27 +02:00
{ widget = wibox.widget.textbox },
layout = wibox.layout.fixed.vertical,
}
local popup = awful.popup{
ontop = true,
visible = false,
shape = gears.shape.rounded_rect,
border_width = 1,
2019-10-08 04:41:51 +02:00
border_color = beautiful.bg_focus,
maximum_width = 400,
2019-10-20 03:02:27 +02:00
offset = { y = 5 },
widget = {}
}
gerrit_widget = wibox.widget {
2019-10-02 03:49:58 +02:00
{
{
2019-11-06 03:36:44 +01:00
image = icon,
2019-10-02 03:49:58 +02:00
widget = wibox.widget.imagebox
},
margins = 4,
layout = wibox.container.margin
},
{
id = "txt",
widget = wibox.widget.textbox
},
{
id = "new_rev",
widget = wibox.widget.textbox
2019-10-02 03:49:58 +02:00
},
layout = wibox.layout.fixed.horizontal,
set_text = function(self, new_value)
self.txt.text = new_value
end,
set_unseen_review = function(self, is_new_review)
2019-10-20 03:02:27 +02:00
self.new_rev.text = is_new_review and '*' or ''
2019-10-02 03:49:58 +02:00
end
2019-09-23 04:44:50 +02:00
}
2019-11-06 03:36:44 +01:00
local function get_name_by_user_id(user_id)
2019-12-17 22:27:30 +01:00
if name_dict[user_id] == nil then
2019-11-06 03:36:44 +01:00
name_dict[user_id] = {}
2019-10-20 03:02:27 +02:00
end
2019-11-06 03:36:44 +01:00
if name_dict[user_id].username == nil then
name_dict[user_id].username = ''
2020-12-06 20:47:40 +01:00
spawn.easy_async(string.format(GET_USER_CMD, host, user_id), function(stdout)
2019-10-20 03:02:27 +02:00
local user = json.decode(stdout)
2019-11-06 03:36:44 +01:00
name_dict[tonumber(user_id)].username = user.name
2019-11-08 20:29:15 +01:00
if not gfs.file_readable(PATH_TO_AVATARS .. user_id) then
2020-12-06 20:47:40 +01:00
spawn.easy_async(
string.format(DOWNLOAD_AVATAR_CMD, PATH_TO_AVATARS .. user_id, user.avatars[1].url))
2019-11-06 03:36:44 +01:00
end
2019-09-24 02:48:27 +02:00
end)
2019-11-06 03:36:44 +01:00
return name_dict[user_id].username
2019-09-24 02:48:27 +02:00
end
2019-10-20 03:02:27 +02:00
2019-11-06 03:36:44 +01:00
return name_dict[user_id].username
2019-09-23 04:44:50 +02:00
end
2019-10-08 04:41:51 +02:00
local update_widget = function(widget, stdout, _, _, _)
2019-10-20 03:02:27 +02:00
local reviews = json.decode(stdout)
current_number_of_reviews = rawlen(reviews)
2019-12-03 21:15:27 +01:00
if current_number_of_reviews == 0 then
widget:set_visible(false)
return
else
widget:set_visible(true)
end
widget:set_visible(true)
if current_number_of_reviews > previous_number_of_reviews then
2019-10-02 03:49:58 +02:00
widget:set_unseen_review(true)
naughty.notify{
2019-10-20 03:02:27 +02:00
icon = HOME_DIR ..'/.config/awesome/awesome-wm-widgets/gerrit-widget/gerrit_icon.svg',
title = 'New Incoming Review',
2020-12-06 20:47:40 +01:00
text = reviews[1].project .. '\n' .. get_name_by_user_id(reviews[1].owner._account_id) ..
reviews[1].subject .. '\n',
2019-12-03 21:15:27 +01:00
run = function() spawn.with_shell("xdg-open https://" .. host .. '/' .. reviews[1]._number) end
}
end
previous_number_of_reviews = current_number_of_reviews
2019-10-02 03:49:58 +02:00
widget:set_text(current_number_of_reviews)
2019-09-23 04:44:50 +02:00
2019-10-20 03:02:27 +02:00
for i = 0, #rows do rows[i]=nil end
2019-09-24 02:48:27 +02:00
for _, review in ipairs(reviews) do
2019-11-06 03:36:44 +01:00
local row = wibox.widget {
{
{
{
2019-10-20 03:02:27 +02:00
{
resize = true,
2019-11-08 20:29:15 +01:00
image = PATH_TO_AVATARS .. review.owner._account_id,
2019-10-20 03:02:27 +02:00
forced_width = 40,
forced_height = 40,
widget = wibox.widget.imagebox
},
margins = 8,
layout = wibox.container.margin
},
{
2019-10-20 03:02:27 +02:00
{
markup = '<b>' .. review.project .. '</b>',
align = 'center',
widget = wibox.widget.textbox
},
{
2019-11-06 03:36:44 +01:00
text = '' .. review.subject,
2019-10-20 03:02:27 +02:00
widget = wibox.widget.textbox
},
{
2019-11-06 03:36:44 +01:00
text = '' .. get_name_by_user_id(review.owner._account_id),
2019-10-20 03:02:27 +02:00
widget = wibox.widget.textbox
},
layout = wibox.layout.align.vertical
},
2019-10-20 03:02:27 +02:00
spacing = 8,
layout = wibox.layout.fixed.horizontal
},
2019-10-08 04:41:51 +02:00
margins = 8,
layout = wibox.container.margin
},
widget = wibox.container.background
}
2020-12-06 20:47:40 +01:00
row:connect_signal("button::release", function()
2019-12-03 21:15:27 +01:00
spawn.with_shell("xdg-open " .. host .. '/' .. review._number)
end)
2019-10-20 03:02:27 +02:00
row:connect_signal("mouse::enter", function(c) c:set_bg(beautiful.bg_focus) end)
row:connect_signal("mouse::leave", function(c) c:set_bg(beautiful.bg_normal) end)
2019-09-30 20:51:31 +02:00
row:buttons(
awful.util.table.join(
awful.button({}, 1, function()
2019-12-03 21:15:27 +01:00
spawn.with_shell("xdg-open " .. host .. '/' .. review._number)
2019-09-30 20:51:31 +02:00
popup.visible = false
end),
awful.button({}, 3, function()
2019-11-24 04:02:49 +01:00
spawn.with_shell("echo '" .. review._number .."' | xclip -selection clipboard")
2019-09-30 20:51:31 +02:00
popup.visible = false
end)
)
)
table.insert(rows, row)
2019-09-23 04:44:50 +02:00
end
popup:setup(rows)
2019-09-23 04:44:50 +02:00
end
gerrit_widget:buttons(
awful.util.table.join(
awful.button({}, 1, function()
2019-10-02 03:49:58 +02:00
gerrit_widget:set_unseen_review(false)
if popup.visible then
popup.visible = not popup.visible
else
--local geo = mouse.current_widget_geometry
--if theme.calendar_placement == 'center' then
-- local x = geo.x + (geo.width / 2) - (popup:geometry().width / 2) -- align two widgets
-- popup:move_next_to({x = x, y = geo.y + 22, width = 0, height = geo.height})
--else
-- popup:move_next_to(geo)
--end
popup:move_next_to(mouse.current_widget_geometry)
end
end)
)
)
2020-09-19 10:08:15 +02:00
watch(string.format(GET_CHANGES_CMD, host, query:gsub(" ", "+")), timeout, update_widget, gerrit_widget)
2019-09-23 04:44:50 +02:00
return gerrit_widget
end
return setmetatable(gerrit_widget, { __call = function(_, ...) return worker(...) end })