lain/widgets/imap.lua

83 lines
2.4 KiB
Lua
Raw Normal View History

2013-09-07 12:06:42 +02:00
--[[
Licensed under GNU General Public License v2
* (c) 2013, Luke Bonham
--]]
local helpers = require("lain.helpers")
local naughty = require("naughty")
local wibox = require("wibox")
2013-09-12 02:26:48 +02:00
local string = { format = string.format,
gsub = string.gsub }
2013-09-13 18:15:25 +02:00
local tonumber = tonumber
2013-09-07 12:06:42 +02:00
local setmetatable = setmetatable
2013-09-10 23:02:11 +02:00
-- Mail IMAP check
2013-09-07 12:06:42 +02:00
-- lain.widgets.imap
2017-01-25 17:13:14 +01:00
local function worker(args)
2017-01-21 00:29:31 +01:00
local imap = helpers.make_widget_textbox()
local args = args or {}
local server = args.server
local mail = args.mail
local password = args.password
local port = args.port or 993
local timeout = args.timeout or 60
local is_plain = args.is_plain or false
local followtag = args.followtag or false
local settings = args.settings or function() end
local head_command = "curl --connect-timeout 3 -fsm 3"
2013-09-12 02:26:48 +02:00
local request = "-X 'SEARCH (UNSEEN)'"
2013-09-07 12:06:42 +02:00
2017-01-23 22:27:37 +01:00
if not server or not mail or not password then return end
2013-09-12 02:26:48 +02:00
helpers.set_map(mail, 0)
2013-09-07 12:06:42 +02:00
2016-12-04 12:42:39 +01:00
if not is_plain then
2017-01-23 22:27:37 +01:00
helpers.async(password, function(f) password = f:gsub("\n", "") end)
2013-09-10 23:02:11 +02:00
end
2013-09-07 12:06:42 +02:00
2013-09-13 00:07:44 +02:00
function update()
mail_notification_preset = {
2013-09-12 02:26:48 +02:00
icon = helpers.icons_dir .. "mail.png",
position = "top_left"
}
2013-09-13 18:15:25 +02:00
if followtag then
mail_notification_preset.screen = awful.screen.focused()
end
2017-01-23 22:27:37 +01:00
curl = string.format("%s --url imaps://%s:%s/INBOX -u %s:%q %s -k",
head_command, server, port, mail, password, request)
2013-09-12 02:26:48 +02:00
helpers.async(curl, function(f)
2015-08-05 12:28:54 +02:00
_, mailcount = string.gsub(f, "%d+", "")
2017-01-22 01:15:57 +01:00
_ = nil
2014-08-05 12:59:19 +02:00
2015-10-20 15:17:44 +02:00
widget = imap.widget
settings()
2014-08-05 12:59:19 +02:00
if mailcount >= 1 and mailcount > helpers.get_map(mail) then
2014-08-05 12:59:19 +02:00
if mailcount == 1 then
nt = mail .. " has one new message"
else
nt = mail .. " has <b>" .. mailcount .. "</b> new messages"
end
naughty.notify({ preset = mail_notification_preset, text = nt })
2014-08-05 12:59:19 +02:00
end
2013-09-07 12:06:42 +02:00
2014-08-05 12:59:19 +02:00
helpers.set_map(mail, mailcount)
end)
2013-09-10 23:02:11 +02:00
2013-09-07 12:06:42 +02:00
end
imap.timer = helpers.newtimer(mail, timeout, update, true, true)
2014-08-05 12:59:19 +02:00
2017-01-25 17:13:14 +01:00
return imap
2013-09-07 12:06:42 +02:00
end
return setmetatable({}, { __call = function(_, ...) return worker(...) end })