summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Makhov <pmakhov@theoctavegroup.com>2019-09-23 20:48:27 -0400
committerPavel Makhov <pmakhov@theoctavegroup.com>2019-09-23 20:48:27 -0400
commit405e8b5d12814e3ff411e2447766cfb58e56daa0 (patch)
tree85dc46b052714fa726f049796ec9a32ba8dbdfef
parent7403bdb0f662305a78adb6b9cc0c4bbec855ff94 (diff)
add gerrit onhover notification
-rw-r--r--gerrit-widget/gerrit.lua48
1 files changed, 21 insertions, 27 deletions
diff --git a/gerrit-widget/gerrit.lua b/gerrit-widget/gerrit.lua
index 3dae3ba..a2b5fe6 100644
--- a/gerrit-widget/gerrit.lua
+++ b/gerrit-widget/gerrit.lua
@@ -15,60 +15,53 @@ local spawn = require("awful.spawn")
local naughty = require("naughty")
local path_to_icons = "/usr/share/icons/Arc/status/symbolic/"
---local CMD = [[bash -c "curl -s --request GET --netrc https://%s/a/changes/\\?q\\=%s | tail -n +2 | jq ' . | length'"]]
-local CMD = [[bash -c "curl -s --request GET --netrc https://%s/a/changes/\\?q\\=%s | tail -n +2"]]
+
+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'"]]
local gerrit_widget = {}
+local name_dict = {}
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'}
- local query = args.query or 'status:open+AND+NOT+is:wip+AND+is:reviewer'
+ local query = args.query or 'is:reviewer AND status:open AND NOT is:wip'
local reviews
- local notification_text = ''
+ local notification_text
gerrit_widget = wibox.widget{
- --font = 'Play 12',
widget = wibox.widget.textbox
}
- local get_size = function (T)
- local count = 0
- for _ in pairs(T) do count = count + 1 end
- return count
+ 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
end
local update_graphic = function(widget, stdout, _, _, _)
reviews = json.decode(stdout)
- widget.text = get_size(reviews)
-
-
- for i in pairs(reviews)do
- notification_text = notification_text .. '\n' .. reviews[i].subject
- i = i + 1
- end
-
- end
+ widget.text = rawlen(reviews)
- local function urlencode(url)
- if url == nil then
- return
+ 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'
end
- url = url:gsub(" ", "+")
- return url
end
- query_escaped = urlencode(query)
- watch(string.format(CMD, host, query_escaped), 10, update_graphic, gerrit_widget)
-
local notification
gerrit_widget:connect_signal("mouse::enter", function()
notification = naughty.notify{
text = notification_text,
- timeout = 5, hover_timeout = 10,
+ timeout = 20,
position = position,
width = (500)
}
@@ -78,6 +71,7 @@ local function worker(args)
naughty.destroy(notification)
end)
+ watch(string.format(GET_CHANGES_CMD, host, query:gsub(" ", "+")), 1, update_graphic, gerrit_widget)
return gerrit_widget
end