refactor bitbucket widget

This commit is contained in:
streetturtle 2020-02-01 14:04:31 -05:00
parent 8116b39544
commit fa2774591f
2 changed files with 39 additions and 59 deletions

View File

@ -1,11 +1,11 @@
------------------------------------------------- -------------------------------------------------
-- bitbucket Widget for Awesome Window Manager -- Bitbucket Widget for Awesome Window Manager
-- Shows the number of currently assigned issues -- Shows the number of currently assigned pull requests
-- More details could be found here: -- More details could be found here:
-- https://github.com/streetturtle/awesome-wm-widgets/tree/master/bitbucket-widget -- https://github.com/streetturtle/awesome-wm-widgets/tree/master/bitbucket-widget
-- @author Pavel Makhov -- @author Pavel Makhov
-- @copyright 2019 Pavel Makhov -- @copyright 2020 Pavel Makhov
------------------------------------------------- -------------------------------------------------
local awful = require("awful") local awful = require("awful")
@ -17,7 +17,6 @@ local naughty = require("naughty")
local gears = require("gears") local gears = require("gears")
local beautiful = require("beautiful") local beautiful = require("beautiful")
local gfs = require("gears.filesystem") local gfs = require("gears.filesystem")
local gs = require("gears.string")
local HOME_DIR = os.getenv("HOME") local HOME_DIR = os.getenv("HOME")
@ -26,33 +25,24 @@ local DOWNLOAD_AVATAR_CMD = [[bash -c "curl -n --create-dirs -o %s/.cache/awmw/b
local bitbucket_widget = {} local bitbucket_widget = {}
local function show_warning(message)
naughty.notify{
preset = naughty.config.presets.critical,
title = 'Bitbucket Widget',
text = message}
end
local function worker(args) local function worker(args)
local args = args or {} local args = args or {}
local icon = args.icon or HOME_DIR .. '/.config/awesome/awesome-wm-widgets/bitbucket-widget/bitbucket-icon-gradient-blue.svg' local icon = args.icon or HOME_DIR .. '/.config/awesome/awesome-wm-widgets/bitbucket-widget/bitbucket-icon-gradient-blue.svg'
local host = args.host or naughty.notify{ local host = args.host or show_warning('Bitbucket host is unknown')
preset = naughty.config.presets.critical, local account_id = args.account_id or show_warning('Account Id is not set')
title = 'Bitbucket Widget', local workspace = args.workspace or show_warning('Workspace is not set')
text = 'Bitbucket host is unknown'} local repo_slug = args.repo_slug or show_warning('Repo slug is not set')
local account_id = args.account_id or naughty.notify{ local current_number_of_prs
preset = naughty.config.presets.critical,
title = 'Bitbucket Widget',
text = 'Account Id is not set'}
local workspace = args.workspace or naughty.notify{
preset = naughty.config.presets.critical,
title = 'Bitbucket Widget',
text = 'Workspace is not set'}
local slug = args.slug or naughty.notify{
preset = naughty.config.presets.critical,
title = 'Bitbucket Widget',
text = 'Slug is not set'}
local current_number_of_reviews
local previous_number_of_reviews = 0
local rows = { local rows = {
{ widget = wibox.widget.textbox }, { widget = wibox.widget.textbox },
@ -84,42 +74,40 @@ local function worker(args)
widget = wibox.widget.textbox widget = wibox.widget.textbox
}, },
{ {
id = "new_rev", id = "new_pr",
widget = wibox.widget.textbox widget = wibox.widget.textbox
}, },
layout = wibox.layout.fixed.horizontal, layout = wibox.layout.fixed.horizontal,
set_text = function(self, new_value) set_text = function(self, new_value)
self.txt.text = new_value self.txt.text = new_value
end,
set_unseen_review = function(self, is_new_review)
self.new_rev.text = is_new_review and '*' or ''
end end
} }
local update_widget = function(widget, stdout, stderr, _, _) local update_widget = function(widget, stdout, stderr, _, _)
if stderr ~= '' then show_warning(stderr) end
local result = json.decode(stdout) local result = json.decode(stdout)
current_number_of_reviews = rawlen(result.values) current_number_of_prs = rawlen(result.values)
if current_number_of_reviews == 0 then if current_number_of_prs == 0 then
widget:set_visible(false) widget:set_visible(false)
return return
end end
widget:set_visible(true) widget:set_visible(true)
widget:set_text(current_number_of_reviews) widget:set_text(current_number_of_prs)
for i = 0, #rows do rows[i]=nil end for i = 0, #rows do rows[i]=nil end
for _, value in ipairs(result.values) do for _, pr in ipairs(result.values) do
local path_to_avatar = os.getenv("HOME") ..'/.cache/awmw/bitbucket-widget/avatars/' .. value.author.account_id local path_to_avatar = os.getenv("HOME") ..'/.cache/awmw/bitbucket-widget/avatars/' .. pr.author.account_id
if not gfs.file_readable(path_to_avatar) then if not gfs.file_readable(path_to_avatar) then
spawn.easy_async(string.format( spawn.easy_async(string.format(
DOWNLOAD_AVATAR_CMD, DOWNLOAD_AVATAR_CMD,
HOME_DIR, HOME_DIR,
value.author.account_id, pr.author.account_id,
value.author.links.avatar.href)) pr.author.links.avatar.href))
end end
local row = wibox.widget { local row = wibox.widget {
@ -138,16 +126,11 @@ local function worker(args)
}, },
{ {
{ {
markup = '<b>' .. value.title .. '</b>', markup = '<b>' .. pr.title .. '</b>',
align = 'center',
widget = wibox.widget.textbox widget = wibox.widget.textbox
}, },
-- {
-- text = issue.fields.summary,
-- widget = wibox.widget.textbox
-- },
{ {
text = value.author.display_name, text = pr.author.display_name,
widget = wibox.widget.textbox widget = wibox.widget.textbox
}, },
layout = wibox.layout.align.vertical layout = wibox.layout.align.vertical
@ -161,17 +144,13 @@ local function worker(args)
widget = wibox.container.background widget = wibox.container.background
} }
row:connect_signal("button::release", function(_, _, _, button)
spawn.with_shell("xdg-open " .. value.links.html.href)
end)
row:connect_signal("mouse::enter", function(c) c:set_bg(beautiful.bg_focus) end) 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:connect_signal("mouse::leave", function(c) c:set_bg(beautiful.bg_normal) end)
row:buttons( row:buttons(
awful.util.table.join( awful.util.table.join(
awful.button({}, 1, function() awful.button({}, 1, function()
spawn.with_shell("xdg-open " .. value.links.html.href) spawn.with_shell("xdg-open " .. pr.links.html.href)
popup.visible = false popup.visible = false
end) end)
) )
@ -189,20 +168,13 @@ local function worker(args)
if popup.visible then if popup.visible then
popup.visible = not popup.visible popup.visible = not popup.visible
else else
local geo = mouse.current_widget_geometry popup:move_next_to(mouse.current_widget_geometry)
local x = geo.x + (geo.width / 2) - (popup:geometry().width / 2)
popup:move_next_to({x = x, y = geo.y + 22, width = 0, height = geo.height})
-- popup:move_next_to(mouse.current_widget_geometry)
end end
end) end)
) )
) )
--naughty.notify{
-- text = string.format(GET_ISSUES_CMD, host, query:gsub(" ", "+")), watch(string.format(GET_PRS_CMD, host, workspace, repo_slug, account_id),
-- run = function() spawn.with_shell("echo '" .. string.format(GET_ISSUES_CMD, host, query:gsub(" ", "+")) .. "' | xclip -selection clipboard") end
--}
watch(string.format(GET_PRS_CMD, host, workspace, slug, account_id),
10, update_widget, bitbucket_widget) 10, update_widget, bitbucket_widget)
return bitbucket_widget return bitbucket_widget
end end

View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
HOST='https://api.bitbucket.org'
ACCOUNT_ID=''
WORKSPACE=''
REPO_SLUG=''
curl -s -n "${HOST}/2.0/repositories/${WORKSPACE}/${REPO_SLUG}/pullrequests?fields=values.title,values.links.html,values.author.display_name,values.author.links.avatar&q=reviewers.account_id+%3D+%22${ACCOUNT_ID}%22"