lain/widgets/imap.lua

88 lines
2.3 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 io = { popen = io.popen }
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
2013-09-11 19:39:14 +02:00
local imap = {}
2013-09-07 12:06:42 +02:00
2013-09-11 19:39:14 +02:00
local function worker(args)
2013-09-10 23:02:11 +02:00
local args = args or {}
2013-09-07 12:06:42 +02:00
2013-09-10 23:02:11 +02:00
local server = args.server
local mail = args.mail
2013-09-07 12:06:42 +02:00
local password = args.password
2013-09-12 02:26:48 +02:00
local port = args.port or 993
2013-09-10 23:02:11 +02:00
local timeout = args.timeout or 60
2013-09-07 12:06:42 +02:00
local is_plain = args.is_plain or false
2013-09-10 23:02:11 +02:00
local settings = args.settings or function() end
2013-09-12 02:26:48 +02:00
local head_command = "curl --connect-timeout 1 -fsm 3"
local request = "-X 'SEARCH (UNSEEN)'"
2013-09-07 12:06:42 +02:00
2013-09-12 02:26:48 +02:00
helpers.set_map(mail, 0)
2013-09-07 12:06:42 +02:00
if not is_plain
then
2013-09-12 02:26:48 +02:00
local f = io.popen(password)
password = f:read("*all"):gsub("\n", "")
f:close()
2013-09-10 23:02:11 +02:00
end
2013-09-07 12:06:42 +02:00
2013-09-11 19:39:14 +02:00
imap.widget = wibox.widget.textbox('')
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
2013-09-12 02:26:48 +02:00
curl = string.format("%s --url imaps://%s:%s/INBOX -u %s:%s %s -k",
head_command, server, port, mail, password, request)
f = io.popen(curl)
2013-09-07 12:06:42 +02:00
ws = f:read("*all")
f:close()
_, mailcount = string.gsub(ws, "%d+", "")
2013-12-04 18:52:40 +01:00
_ = nil
2013-09-07 12:06:42 +02:00
2013-09-11 19:39:14 +02:00
widget = imap.widget
2013-09-10 23:02:11 +02:00
settings()
2013-09-12 02:26:48 +02:00
if mailcount > helpers.get_map(mail) and mailcount >= 1
2013-09-10 23:02:11 +02:00
then
2013-09-12 02:26:48 +02:00
if mailcount == 1 then
nt = mail .. " has one new message"
else
nt = mail .. " has <b>" .. mailcount .. "</b> new messages"
2013-09-07 12:06:42 +02:00
end
2013-09-13 00:07:44 +02:00
naughty.notify({ preset = mail_notification_preset, text = nt })
2013-09-07 12:06:42 +02:00
end
2013-09-12 02:26:48 +02:00
helpers.set_map(mail, mailcount)
2013-09-07 12:06:42 +02:00
end
2013-09-13 00:07:44 +02:00
helpers.newtimer(mail, timeout, update, true)
2013-09-11 19:39:14 +02:00
return imap.widget
2013-09-07 12:06:42 +02:00
end
return setmetatable(imap, { __call = function(_, ...) return worker(...) end })