lain/widgets/maildir.lua

106 lines
3.3 KiB
Lua
Raw Normal View History

2014-01-29 11:56:32 +01:00
2013-09-07 12:06:42 +02:00
--[[
Licensed under GNU General Public License v2
* (c) 2013, Luke Bonham
* (c) 2010-2012, Peter Hofmann
--]]
2013-09-10 23:02:11 +02:00
local newtimer = require("lain.helpers").newtimer
local read_pipe = require("lain.helpers").read_pipe
2015-11-18 09:02:16 +01:00
local spairs = require("lain.helpers").spairs
2013-09-07 12:06:42 +02:00
local wibox = require("wibox")
2015-11-21 12:56:32 +01:00
local awful = require("awful")
local util = require("lain.util")
2015-08-13 02:16:34 +02:00
local io = { popen = io.popen }
2013-09-07 12:06:42 +02:00
local os = { getenv = os.getenv }
local pairs = pairs
local string = { len = string.len,
match = string.match }
local setmetatable = setmetatable
-- Maildir check
-- lain.widgets.maildir
2015-10-20 15:17:44 +02:00
local maildir = {}
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 {}
local timeout = args.timeout or 60
local mailpath = args.mailpath or os.getenv("HOME") .. "/Mail"
2013-09-07 12:06:42 +02:00
local ignore_boxes = args.ignore_boxes or {}
2013-09-10 23:02:11 +02:00
local settings = args.settings or function() end
local ext_mail_cmd = args.external_mail_cmd
2013-09-10 23:02:11 +02:00
2013-09-11 19:39:14 +02:00
maildir.widget = wibox.widget.textbox('')
2013-09-10 23:02:11 +02:00
2013-09-13 00:07:44 +02:00
function update()
if ext_mail_cmd ~= nil
then
awful.util.spawn(ext_mail_cmd)
end
2015-11-22 09:16:35 +01:00
2013-09-07 12:06:42 +02:00
-- Find pathes to mailboxes.
local p = io.popen("find " .. mailpath ..
2015-11-21 12:53:19 +01:00
" -mindepth 1 -maxdepth 2 -type d" ..
" -not -name .git")
2013-09-07 12:06:42 +02:00
local boxes = {}
repeat
line = p:read("*l")
if line ~= nil
then
-- Find all files in the "new" subdirectory. For each
-- file, print a single character (no newline). Don't
-- match files that begin with a dot.
-- Afterwards the length of this string is the number of
-- new mails in that box.
local mailstring = read_pipe("find " .. line ..
2013-09-07 12:06:42 +02:00
"/new -mindepth 1 -type f " ..
"-not -name '.*' -printf a")
-- Strip off leading mailpath.
local box = string.match(line, mailpath .. "/(.*)")
2013-09-07 12:06:42 +02:00
local nummails = string.len(mailstring)
if nummails > 0
then
boxes[box] = nummails
end
end
until line == nil
2015-11-18 09:02:16 +01:00
p:close()
2013-09-07 12:06:42 +02:00
2013-09-10 23:02:11 +02:00
newmail = "no mail"
-- Count the total number of mails irrespective of where it was found
total = 0
2013-09-10 23:02:11 +02:00
2015-11-18 09:02:16 +01:00
for box, number in spairs(boxes)
2013-09-07 12:06:42 +02:00
do
-- Add this box only if it's not to be ignored.
if not util.element_in_table(box, ignore_boxes)
then
total = total + number
if newmail == "no mail"
2013-09-07 12:06:42 +02:00
then
newmail = box .. "(" .. number .. ")"
else
newmail = newmail .. ", " ..
box .. "(" .. number .. ")"
end
end
end
2015-10-20 15:17:44 +02:00
widget = maildir.widget
settings()
2013-09-07 12:06:42 +02:00
end
2013-09-13 00:07:44 +02:00
newtimer(mailpath, timeout, update, true)
2013-09-11 19:39:14 +02:00
return maildir.widget
2013-09-07 12:06:42 +02:00
end
return setmetatable(maildir, { __call = function(_, ...) return worker(...) end })