vicious/mdir.lua

37 lines
1.1 KiB
Lua
Raw Normal View History

2009-09-29 22:33:19 +02:00
---------------------------------------------------
-- Licensed under the GNU General Public License v2
2009-11-04 23:39:38 +01:00
-- * (c) 2009, Adrian C. <anrxc@sysphere.org>
2009-09-29 22:33:19 +02:00
-- * (c) Maildir Biff Widget, Fredrik Ax
---------------------------------------------------
-- {{{ Grab environment
local io = { popen = io.popen }
local setmetatable = setmetatable
-- }}}
-- Mdir: provides a number of new and unread messages in a Maildir structure
module("vicious.mdir")
-- {{{ Maildir widget type
2009-08-07 17:41:10 +02:00
local function worker(format, mdir)
-- Initialise counters
2009-10-04 00:31:12 +02:00
local count = { new = 0, cur = 0 }
-- Recursively find new messages
2009-10-05 00:10:47 +02:00
local f = io.popen("find "..mdir.." -type f -wholename '*/new/*'")
2009-10-04 00:31:12 +02:00
for line in f:lines() do count.new = count.new + 1 end
f:close()
-- Recursively find "old" messages lacking the Seen flag
2009-10-05 00:10:47 +02:00
local f = io.popen("find "..mdir.." -type f -regex '.*/cur/.*2,[^S]*$'")
2009-10-04 00:31:12 +02:00
for line in f:lines() do count.cur = count.cur + 1 end
f:close()
2009-10-04 00:31:12 +02:00
return {count.new, count.cur}
end
-- }}}
setmetatable(_M, { __call = function(_, ...) return worker(...) end })