2019-11-06 03:54:24 +01:00
|
|
|
-------------------------------------------------
|
|
|
|
-- Jira Widget for Awesome Window Manager
|
|
|
|
-- Shows the number of currently assigned issues
|
|
|
|
-- More details could be found here:
|
|
|
|
-- https://github.com/streetturtle/awesome-wm-widgets/tree/master/jira-widget
|
|
|
|
|
|
|
|
-- @author Pavel Makhov
|
2021-04-13 02:53:44 +02:00
|
|
|
-- @copyright 2020 Pavel Makhov
|
2019-11-06 03:54:24 +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")
|
2020-06-30 04:37:58 +02:00
|
|
|
local color = require("gears.color")
|
2019-11-06 03:54:24 +01:00
|
|
|
|
|
|
|
local HOME_DIR = os.getenv("HOME")
|
|
|
|
|
2020-12-02 15:24:05 +01:00
|
|
|
local GET_ISSUES_CMD =
|
|
|
|
[[bash -c "curl -s --show-error -X GET -n '%s/rest/api/2/search?%s&fields=id,assignee,summary,status'"]]
|
2019-11-06 03:54:24 +01:00
|
|
|
local DOWNLOAD_AVATAR_CMD = [[bash -c "curl -n --create-dirs -o %s/.cache/awmw/jira-widget/avatars/%s %s"]]
|
|
|
|
|
2020-04-24 02:15:00 +02:00
|
|
|
local function show_warning(message)
|
|
|
|
naughty.notify{
|
|
|
|
preset = naughty.config.presets.critical,
|
|
|
|
title = 'Jira Widget',
|
|
|
|
text = message}
|
|
|
|
end
|
|
|
|
|
2020-07-01 03:43:27 +02:00
|
|
|
local jira_widget = wibox.widget {
|
|
|
|
{
|
|
|
|
{
|
|
|
|
{
|
2021-04-13 02:53:44 +02:00
|
|
|
{
|
|
|
|
id = 'c',
|
|
|
|
widget = wibox.widget.imagebox
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id = 'd',
|
|
|
|
draw = function(_, _, cr, width, height)
|
|
|
|
cr:set_source(color(beautiful.fg_urgent))
|
|
|
|
cr:arc(width - height / 6, height / 6, height / 6, 0, math.pi * 2)
|
|
|
|
cr:fill()
|
|
|
|
end,
|
|
|
|
visible = false,
|
|
|
|
layout = wibox.widget.base.make_widget,
|
|
|
|
},
|
|
|
|
id = 'b',
|
|
|
|
layout = wibox.layout.stack
|
2020-07-01 03:43:27 +02:00
|
|
|
},
|
|
|
|
{
|
2021-04-13 02:53:44 +02:00
|
|
|
id = "txt",
|
|
|
|
widget = wibox.widget.textbox
|
2020-07-01 03:43:27 +02:00
|
|
|
},
|
2021-04-13 02:53:44 +02:00
|
|
|
spacing = 4,
|
|
|
|
layout = wibox.layout.fixed.horizontal,
|
2020-07-01 03:43:27 +02:00
|
|
|
},
|
|
|
|
margins = 4,
|
|
|
|
layout = wibox.container.margin
|
|
|
|
},
|
2021-04-13 02:53:44 +02:00
|
|
|
shape = function(cr, width, height)
|
|
|
|
gears.shape.rounded_rect(cr, width, height, 4)
|
|
|
|
end,
|
|
|
|
widget = wibox.container.background,
|
2020-07-01 03:43:27 +02:00
|
|
|
set_text = function(self, new_value)
|
2021-04-13 02:53:44 +02:00
|
|
|
self:get_children_by_id('txt')[1]:set_text(new_value)
|
|
|
|
--self.txt.text = new_value
|
2020-07-01 03:43:27 +02:00
|
|
|
end,
|
|
|
|
set_icon = function(self, path)
|
2020-09-04 03:28:01 +02:00
|
|
|
self:get_children_by_id('c')[1]:set_image(path)
|
2020-07-01 03:43:27 +02:00
|
|
|
end,
|
|
|
|
is_everything_ok = function(self, is_ok)
|
|
|
|
if is_ok then
|
2020-09-04 03:28:01 +02:00
|
|
|
self:get_children_by_id('d')[1]:set_visible(false)
|
|
|
|
self:get_children_by_id('c')[1]:set_opacity(1)
|
|
|
|
self:get_children_by_id('c')[1]:emit_signal('widget:redraw_needed')
|
2020-07-01 03:43:27 +02:00
|
|
|
else
|
2021-04-13 02:53:44 +02:00
|
|
|
--self.txt:set_text('')
|
|
|
|
self:get_children_by_id('txt')[1]:set_text('')
|
2020-09-04 03:28:01 +02:00
|
|
|
self:get_children_by_id('d')[1]:set_visible(true)
|
|
|
|
self:get_children_by_id('c')[1]:set_opacity(0.2)
|
|
|
|
self:get_children_by_id('c')[1]:emit_signal('widget:redraw_needed')
|
2020-07-01 03:43:27 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
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 = {}
|
|
|
|
}
|
|
|
|
|
|
|
|
local number_of_issues
|
|
|
|
|
|
|
|
local warning_shown = false
|
|
|
|
local tooltip = awful.tooltip {
|
|
|
|
mode = 'outside',
|
|
|
|
preferred_positions = {'bottom'},
|
|
|
|
}
|
|
|
|
|
2020-12-02 15:24:05 +01:00
|
|
|
local function worker(user_args)
|
2019-11-06 03:54:24 +01:00
|
|
|
|
2020-12-02 15:24:05 +01:00
|
|
|
local args = user_args or {}
|
2019-11-06 03:54:24 +01:00
|
|
|
|
2021-04-21 17:01:05 +02:00
|
|
|
local icon = args.icon or
|
2021-04-21 16:58:31 +02:00
|
|
|
HOME_DIR .. '/.config/awesome/awesome-wm-widgets/jira-widget/icon/jira-mark-gradient-blue.svg'
|
2020-04-24 02:15:00 +02:00
|
|
|
local host = args.host or show_warning('Jira host is unknown')
|
2019-11-08 20:30:20 +01:00
|
|
|
local query = args.query or 'jql=assignee=currentuser() AND resolution=Unresolved'
|
2021-04-13 02:53:44 +02:00
|
|
|
local timeout = args.timeout or 600
|
2019-11-06 03:54:24 +01:00
|
|
|
|
2020-07-01 03:43:27 +02:00
|
|
|
jira_widget:set_icon(icon)
|
2019-11-06 03:54:24 +01:00
|
|
|
|
2021-04-13 02:53:44 +02:00
|
|
|
local separator_widget = {
|
|
|
|
orientation = 'horizontal',
|
|
|
|
forced_height = 1,
|
|
|
|
color = beautiful.bg_focus,
|
|
|
|
widget = wibox.widget.separator
|
|
|
|
}
|
|
|
|
|
2019-11-06 03:54:24 +01:00
|
|
|
local update_widget = function(widget, stdout, stderr, _, _)
|
2020-04-24 02:15:00 +02:00
|
|
|
if stderr ~= '' then
|
2020-06-30 04:37:58 +02:00
|
|
|
if not warning_shown then
|
|
|
|
show_warning(stderr)
|
|
|
|
warning_shown = true
|
|
|
|
widget:is_everything_ok(false)
|
2020-09-04 03:28:01 +02:00
|
|
|
tooltip:add_to_object(widget)
|
2020-06-30 04:37:58 +02:00
|
|
|
|
|
|
|
widget:connect_signal('mouse::enter', function()
|
|
|
|
tooltip.text = stderr
|
|
|
|
end)
|
|
|
|
end
|
2020-04-24 02:15:00 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2020-06-30 04:37:58 +02:00
|
|
|
warning_shown = false
|
2020-09-04 03:28:01 +02:00
|
|
|
tooltip:remove_from_object(widget)
|
2020-06-30 04:37:58 +02:00
|
|
|
widget:is_everything_ok(true)
|
|
|
|
|
2019-11-06 03:54:24 +01:00
|
|
|
local result = json.decode(stdout)
|
|
|
|
|
2020-07-01 03:43:27 +02:00
|
|
|
number_of_issues = rawlen(result.issues)
|
2019-11-06 03:54:24 +01:00
|
|
|
|
2020-07-01 03:43:27 +02:00
|
|
|
if number_of_issues == 0 then
|
2019-12-17 22:27:30 +01:00
|
|
|
widget:set_visible(false)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
widget:set_visible(true)
|
2020-07-01 03:43:27 +02:00
|
|
|
widget:set_text(number_of_issues)
|
|
|
|
|
2021-04-13 02:53:44 +02:00
|
|
|
local rows = { layout = wibox.layout.fixed.vertical }
|
2019-11-24 03:05:16 +01:00
|
|
|
|
2019-11-06 03:54:24 +01:00
|
|
|
for i = 0, #rows do rows[i]=nil end
|
2021-04-13 02:53:44 +02:00
|
|
|
|
|
|
|
-- sort issues based on the status
|
|
|
|
table.sort(result.issues, function(a,b) return a.fields.status.name > b.fields.status.name end)
|
|
|
|
|
|
|
|
local cur_status = ''
|
2019-11-06 03:54:24 +01:00
|
|
|
for _, issue in ipairs(result.issues) do
|
2021-09-13 10:45:08 +02:00
|
|
|
|
2021-10-15 17:57:03 +02:00
|
|
|
local name
|
2021-09-13 10:45:08 +02:00
|
|
|
if issue.fields.assignee.name == nil then
|
2021-10-15 17:57:03 +02:00
|
|
|
name = issue.fields.assignee.displayName
|
|
|
|
else
|
|
|
|
name = issue.fields.assignee.name
|
2021-09-13 10:45:08 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local path_to_avatar = HOME_DIR ..'/.cache/awmw/jira-widget/avatars/' .. name
|
2019-11-06 03:54:24 +01:00
|
|
|
|
|
|
|
if not gfs.file_readable(path_to_avatar) then
|
|
|
|
spawn.easy_async(string.format(
|
|
|
|
DOWNLOAD_AVATAR_CMD,
|
|
|
|
HOME_DIR,
|
2021-09-13 10:45:08 +02:00
|
|
|
name,
|
2019-11-06 03:54:24 +01:00
|
|
|
issue.fields.assignee.avatarUrls['48x48']))
|
|
|
|
end
|
|
|
|
|
2021-04-13 02:53:44 +02:00
|
|
|
if (cur_status ~= issue.fields.status.name) then
|
|
|
|
-- do not insert separator before first item
|
|
|
|
if (cur_status ~= '') then
|
|
|
|
table.insert(rows, separator_widget)
|
|
|
|
end
|
|
|
|
|
|
|
|
table.insert(rows, wibox.widget {
|
|
|
|
{
|
|
|
|
{
|
|
|
|
markup = "<span foreground='#888888'>" .. issue.fields.status.name .. "</span>",
|
|
|
|
widget = wibox.widget.textbox,
|
|
|
|
},
|
|
|
|
left = 8,
|
|
|
|
layout = wibox.container.margin
|
|
|
|
},
|
|
|
|
bg = beautiful.bg_normal,
|
|
|
|
widget = wibox.container.background
|
|
|
|
})
|
|
|
|
cur_status = issue.fields.status.name
|
|
|
|
end
|
|
|
|
|
2019-11-06 03:54:24 +01:00
|
|
|
local row = wibox.widget {
|
|
|
|
{
|
|
|
|
{
|
|
|
|
{
|
|
|
|
{
|
|
|
|
resize = true,
|
|
|
|
image = path_to_avatar,
|
|
|
|
forced_width = 40,
|
|
|
|
forced_height = 40,
|
|
|
|
widget = wibox.widget.imagebox
|
|
|
|
},
|
2021-04-13 02:53:44 +02:00
|
|
|
left = 4,
|
2019-11-06 03:54:24 +01:00
|
|
|
layout = wibox.container.margin
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
2021-04-13 02:53:44 +02:00
|
|
|
markup = '<b>' .. issue.fields.summary .. '</b>',
|
2019-11-06 03:54:24 +01:00
|
|
|
widget = wibox.widget.textbox
|
|
|
|
},
|
|
|
|
{
|
2021-04-13 02:53:44 +02:00
|
|
|
{
|
|
|
|
markup = "<span foreground='#888888'>" .. issue.key .. "</span>",
|
|
|
|
widget = wibox.widget.textbox
|
|
|
|
},
|
|
|
|
{
|
2021-04-21 17:01:05 +02:00
|
|
|
markup = "<span foreground='#888888'>"
|
2021-04-21 16:58:31 +02:00
|
|
|
.. issue.fields.assignee.displayName .. "</span>",
|
2021-04-13 02:53:44 +02:00
|
|
|
widget = wibox.widget.textbox
|
|
|
|
},
|
|
|
|
spacing = 8,
|
|
|
|
layout = wibox.layout.fixed.horizontal
|
2019-11-06 03:54:24 +01:00
|
|
|
},
|
|
|
|
layout = wibox.layout.align.vertical
|
|
|
|
},
|
|
|
|
spacing = 8,
|
|
|
|
layout = wibox.layout.fixed.horizontal
|
|
|
|
},
|
2021-04-13 02:53:44 +02:00
|
|
|
margins = 4,
|
2019-11-06 03:54:24 +01:00
|
|
|
layout = wibox.container.margin
|
|
|
|
},
|
2020-07-01 03:43:27 +02:00
|
|
|
bg = beautiful.bg_normal,
|
2019-11-06 03:54:24 +01:00
|
|
|
widget = wibox.container.background
|
|
|
|
}
|
|
|
|
|
2021-04-13 02:53:44 +02:00
|
|
|
local old_cursor, old_wibox
|
|
|
|
row:connect_signal("mouse::enter", function(c)
|
|
|
|
c:set_bg(beautiful.bg_focus)
|
|
|
|
c:set_shape(function(cr, width, height)
|
|
|
|
gears.shape.rounded_rect(cr, width, height, 4)
|
|
|
|
end)
|
|
|
|
local wb = mouse.current_wibox
|
|
|
|
old_cursor, old_wibox = wb.cursor, wb
|
|
|
|
wb.cursor = "hand1"
|
|
|
|
end)
|
|
|
|
row:connect_signal("mouse::leave", function(c)
|
|
|
|
c:set_bg(beautiful.bg_normal)
|
|
|
|
c:set_shape(nil)
|
|
|
|
if old_wibox then
|
|
|
|
old_wibox.cursor = old_cursor
|
|
|
|
old_wibox = nil
|
|
|
|
end
|
|
|
|
end)
|
2019-11-06 03:54:24 +01:00
|
|
|
|
|
|
|
row:buttons(
|
|
|
|
awful.util.table.join(
|
|
|
|
awful.button({}, 1, function()
|
2019-12-17 22:27:30 +01:00
|
|
|
spawn.with_shell("xdg-open " .. host .. '/browse/' .. issue.key)
|
2019-11-06 03:54:24 +01:00
|
|
|
popup.visible = false
|
2021-04-13 02:53:44 +02:00
|
|
|
jira_widget:set_bg('#00000000')
|
2019-11-06 03:54:24 +01:00
|
|
|
end)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
table.insert(rows, row)
|
|
|
|
end
|
|
|
|
|
|
|
|
popup:setup(rows)
|
|
|
|
end
|
|
|
|
|
|
|
|
jira_widget:buttons(
|
|
|
|
awful.util.table.join(
|
|
|
|
awful.button({}, 1, function()
|
|
|
|
if popup.visible then
|
2021-04-13 02:53:44 +02:00
|
|
|
jira_widget:set_bg('#00000000')
|
2019-11-06 03:54:24 +01:00
|
|
|
popup.visible = not popup.visible
|
|
|
|
else
|
2021-04-13 02:53:44 +02:00
|
|
|
jira_widget:set_bg(beautiful.bg_focus)
|
2020-02-01 19:32:44 +01:00
|
|
|
popup:move_next_to(mouse.current_widget_geometry)
|
2019-11-06 03:54:24 +01:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
)
|
|
|
|
)
|
2021-04-21 16:58:31 +02:00
|
|
|
watch(string.format(GET_ISSUES_CMD, host, query:gsub(' ', '+')), timeout, update_widget, jira_widget)
|
2019-11-06 03:54:24 +01:00
|
|
|
return jira_widget
|
|
|
|
end
|
|
|
|
|
|
|
|
return setmetatable(jira_widget, { __call = function(_, ...) return worker(...) end })
|