2020-01-30 03:13:06 +01:00
|
|
|
-------------------------------------------------
|
2020-02-01 20:04:31 +01:00
|
|
|
-- Bitbucket Widget for Awesome Window Manager
|
|
|
|
-- Shows the number of currently assigned pull requests
|
2020-01-30 03:13:06 +01:00
|
|
|
-- More details could be found here:
|
|
|
|
-- https://github.com/streetturtle/awesome-wm-widgets/tree/master/bitbucket-widget
|
|
|
|
|
|
|
|
-- @author Pavel Makhov
|
2020-02-01 20:04:31 +01:00
|
|
|
-- @copyright 2020 Pavel Makhov
|
2020-01-30 03:13:06 +01:00
|
|
|
-------------------------------------------------
|
|
|
|
|
|
|
|
local awful = require("awful")
|
|
|
|
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")
|
|
|
|
local gfs = require("gears.filesystem")
|
|
|
|
|
|
|
|
local HOME_DIR = os.getenv("HOME")
|
|
|
|
|
2020-04-24 02:15:30 +02:00
|
|
|
local GET_PRS_CMD= [[bash -c "curl -s --show-error -n '%s/2.0/repositories/%s/%s/pullrequests?fields=values.title,values.links.html,values.author.display_name,values.author.uuid,values.author.links.avatar&q=%%28author.uuid+%%3D+%%22%s%%22+OR+reviewers.uuid+%%3D+%%22%s%%22+%%29+AND+state+%%3D+%%22OPEN%%22' | jq '.[] | unique'"]]
|
2020-01-30 03:13:06 +01:00
|
|
|
local DOWNLOAD_AVATAR_CMD = [[bash -c "curl -n --create-dirs -o %s/.cache/awmw/bitbucket-widget/avatars/%s %s"]]
|
|
|
|
|
|
|
|
local bitbucket_widget = {}
|
|
|
|
|
2020-02-01 20:04:31 +01:00
|
|
|
local function show_warning(message)
|
|
|
|
naughty.notify{
|
|
|
|
preset = naughty.config.presets.critical,
|
|
|
|
title = 'Bitbucket Widget',
|
|
|
|
text = message}
|
|
|
|
end
|
|
|
|
|
2020-01-30 03:13:06 +01:00
|
|
|
local function worker(args)
|
|
|
|
|
|
|
|
local args = args or {}
|
|
|
|
|
|
|
|
local icon = args.icon or HOME_DIR .. '/.config/awesome/awesome-wm-widgets/bitbucket-widget/bitbucket-icon-gradient-blue.svg'
|
2020-02-01 20:04:31 +01:00
|
|
|
local host = args.host or show_warning('Bitbucket host is unknown')
|
2020-04-13 20:34:48 +02:00
|
|
|
local uuid = args.uuid or show_warning('UUID is not set')
|
2020-02-01 20:04:31 +01:00
|
|
|
local workspace = args.workspace or show_warning('Workspace is not set')
|
|
|
|
local repo_slug = args.repo_slug or show_warning('Repo slug is not set')
|
2020-01-30 03:13:06 +01:00
|
|
|
|
2020-02-01 20:04:31 +01:00
|
|
|
local current_number_of_prs
|
2020-01-30 03:13:06 +01:00
|
|
|
|
2020-02-27 02:58:46 +01:00
|
|
|
local to_review_rows = {layout = wibox.layout.fixed.vertical}
|
|
|
|
local my_review_rows = {layout = wibox.layout.fixed.vertical}
|
|
|
|
local rows = {layout = wibox.layout.fixed.vertical}
|
2020-01-30 03:13:06 +01:00
|
|
|
|
|
|
|
local popup = awful.popup{
|
|
|
|
ontop = true,
|
|
|
|
visible = false,
|
|
|
|
shape = gears.shape.rounded_rect,
|
|
|
|
border_width = 1,
|
|
|
|
border_color = beautiful.bg_focus,
|
|
|
|
maximum_width = 400,
|
|
|
|
offset = { y = 5 },
|
|
|
|
widget = {}
|
|
|
|
}
|
|
|
|
|
|
|
|
bitbucket_widget = wibox.widget {
|
|
|
|
{
|
|
|
|
{
|
|
|
|
image = icon,
|
|
|
|
widget = wibox.widget.imagebox
|
|
|
|
},
|
|
|
|
margins = 4,
|
|
|
|
layout = wibox.container.margin
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id = "txt",
|
|
|
|
widget = wibox.widget.textbox
|
|
|
|
},
|
|
|
|
{
|
2020-02-01 20:04:31 +01:00
|
|
|
id = "new_pr",
|
2020-01-30 03:13:06 +01:00
|
|
|
widget = wibox.widget.textbox
|
|
|
|
},
|
|
|
|
layout = wibox.layout.fixed.horizontal,
|
|
|
|
set_text = function(self, new_value)
|
|
|
|
self.txt.text = new_value
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
local update_widget = function(widget, stdout, stderr, _, _)
|
2020-04-24 02:15:30 +02:00
|
|
|
if stderr ~= '' then
|
|
|
|
show_warning(stderr)
|
|
|
|
return
|
|
|
|
end
|
2020-02-01 20:04:31 +01:00
|
|
|
|
2020-01-30 03:13:06 +01:00
|
|
|
local result = json.decode(stdout)
|
|
|
|
|
2020-02-27 02:58:46 +01:00
|
|
|
current_number_of_prs = rawlen(result)
|
2020-01-30 03:13:06 +01:00
|
|
|
|
2020-02-01 20:04:31 +01:00
|
|
|
if current_number_of_prs == 0 then
|
2020-01-30 03:13:06 +01:00
|
|
|
widget:set_visible(false)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
widget:set_visible(true)
|
2020-02-01 20:04:31 +01:00
|
|
|
widget:set_text(current_number_of_prs)
|
2020-01-30 03:13:06 +01:00
|
|
|
|
|
|
|
for i = 0, #rows do rows[i]=nil end
|
2020-02-27 02:58:46 +01:00
|
|
|
|
|
|
|
for i = 0, #to_review_rows do to_review_rows[i]=nil end
|
|
|
|
table.insert(to_review_rows, {
|
2020-04-13 20:34:48 +02:00
|
|
|
markup = '<span size="large" color="#ffffff">PRs to review</span>',
|
2020-02-27 02:58:46 +01:00
|
|
|
align = 'center',
|
|
|
|
forced_height = 20,
|
|
|
|
widget = wibox.widget.textbox
|
|
|
|
})
|
|
|
|
|
|
|
|
for i = 0, #my_review_rows do my_review_rows[i]=nil end
|
|
|
|
table.insert(my_review_rows, {
|
2020-04-13 20:34:48 +02:00
|
|
|
markup = '<span size="large" color="#ffffff">My PRs</span>',
|
2020-02-27 02:58:46 +01:00
|
|
|
align = 'center',
|
|
|
|
forced_height = 20,
|
|
|
|
widget = wibox.widget.textbox
|
|
|
|
})
|
|
|
|
|
|
|
|
for _, pr in ipairs(result) do
|
2020-04-13 20:34:48 +02:00
|
|
|
local path_to_avatar = os.getenv("HOME") ..'/.cache/awmw/bitbucket-widget/avatars/' .. pr.author.uuid
|
2020-01-30 03:13:06 +01:00
|
|
|
|
|
|
|
if not gfs.file_readable(path_to_avatar) then
|
|
|
|
spawn.easy_async(string.format(
|
|
|
|
DOWNLOAD_AVATAR_CMD,
|
|
|
|
HOME_DIR,
|
2020-04-13 20:34:48 +02:00
|
|
|
pr.author.uuid,
|
2020-02-01 20:04:31 +01:00
|
|
|
pr.author.links.avatar.href))
|
2020-01-30 03:13:06 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
local row = wibox.widget {
|
|
|
|
{
|
|
|
|
{
|
|
|
|
{
|
|
|
|
{
|
|
|
|
resize = true,
|
|
|
|
image = path_to_avatar,
|
|
|
|
forced_width = 40,
|
|
|
|
forced_height = 40,
|
|
|
|
widget = wibox.widget.imagebox
|
|
|
|
},
|
|
|
|
margins = 8,
|
|
|
|
layout = wibox.container.margin
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
2020-02-01 20:04:31 +01:00
|
|
|
markup = '<b>' .. pr.title .. '</b>',
|
2020-01-30 03:13:06 +01:00
|
|
|
widget = wibox.widget.textbox
|
|
|
|
},
|
|
|
|
{
|
2020-02-01 20:04:31 +01:00
|
|
|
text = pr.author.display_name,
|
2020-01-30 03:13:06 +01:00
|
|
|
widget = wibox.widget.textbox
|
|
|
|
},
|
|
|
|
layout = wibox.layout.align.vertical
|
|
|
|
},
|
|
|
|
spacing = 8,
|
|
|
|
layout = wibox.layout.fixed.horizontal
|
|
|
|
},
|
|
|
|
margins = 8,
|
|
|
|
layout = wibox.container.margin
|
|
|
|
},
|
|
|
|
widget = wibox.container.background
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
row:buttons(
|
|
|
|
awful.util.table.join(
|
|
|
|
awful.button({}, 1, function()
|
2020-02-01 20:04:31 +01:00
|
|
|
spawn.with_shell("xdg-open " .. pr.links.html.href)
|
2020-01-30 03:13:06 +01:00
|
|
|
popup.visible = false
|
|
|
|
end)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2020-04-13 20:34:48 +02:00
|
|
|
if (pr.author.uuid == '{' .. uuid .. '}') then
|
2020-02-27 02:58:46 +01:00
|
|
|
table.insert(my_review_rows, row)
|
|
|
|
else
|
|
|
|
table.insert(to_review_rows, row)
|
|
|
|
end
|
2020-01-30 03:13:06 +01:00
|
|
|
end
|
|
|
|
|
2020-02-27 02:58:46 +01:00
|
|
|
table.insert(rows, to_review_rows)
|
|
|
|
if (#my_review_rows > 1) then
|
|
|
|
table.insert(rows, my_review_rows)
|
|
|
|
end
|
2020-01-30 03:13:06 +01:00
|
|
|
popup:setup(rows)
|
|
|
|
end
|
|
|
|
|
|
|
|
bitbucket_widget:buttons(
|
|
|
|
awful.util.table.join(
|
|
|
|
awful.button({}, 1, function()
|
|
|
|
if popup.visible then
|
|
|
|
popup.visible = not popup.visible
|
|
|
|
else
|
2020-02-01 20:04:31 +01:00
|
|
|
popup:move_next_to(mouse.current_widget_geometry)
|
2020-01-30 03:13:06 +01:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
)
|
|
|
|
)
|
2020-02-01 20:04:31 +01:00
|
|
|
|
2020-04-13 20:34:48 +02:00
|
|
|
watch(string.format(GET_PRS_CMD, host, workspace, repo_slug, uuid, uuid),
|
2020-01-30 03:13:06 +01:00
|
|
|
10, update_widget, bitbucket_widget)
|
|
|
|
return bitbucket_widget
|
|
|
|
end
|
|
|
|
|
|
|
|
return setmetatable(bitbucket_widget, { __call = function(_, ...) return worker(...) end })
|