2009-09-29 22:33:19 +02:00
|
|
|
---------------------------------------------------
|
|
|
|
-- Licensed under the GNU General Public License v2
|
2010-01-02 21:21:54 +01:00
|
|
|
-- * (c) 2010, Adrian C. <anrxc@sysphere.org>
|
2009-09-29 22:33:19 +02:00
|
|
|
---------------------------------------------------
|
2009-09-08 22:46:59 +02:00
|
|
|
|
|
|
|
-- {{{ Grab environment
|
2009-11-03 01:34:48 +01:00
|
|
|
local type = type
|
2009-10-26 20:32:48 +01:00
|
|
|
local tonumber = tonumber
|
2009-09-08 22:46:59 +02:00
|
|
|
local io = { popen = io.popen }
|
|
|
|
local setmetatable = setmetatable
|
|
|
|
local helpers = require("vicious.helpers")
|
2010-03-10 21:59:15 +01:00
|
|
|
local string = {
|
|
|
|
match = string.match
|
|
|
|
}
|
2009-09-08 22:46:59 +02:00
|
|
|
-- }}}
|
|
|
|
|
|
|
|
|
2009-10-01 12:08:39 +02:00
|
|
|
-- Gmail: provides count of new and subject of last e-mail on Gmail
|
2012-06-15 18:07:05 +02:00
|
|
|
-- vicious.widgets.gmail
|
|
|
|
local gmail = {}
|
2009-09-08 22:46:59 +02:00
|
|
|
|
|
|
|
|
2010-02-12 00:33:07 +01:00
|
|
|
-- {{{ Variable definitions
|
|
|
|
local rss = {
|
2014-11-08 18:14:03 +01:00
|
|
|
inbox = "https://mail.google.com/mail/feed/atom",
|
|
|
|
unread = "https://mail.google.com/mail/feed/atom/unread",
|
|
|
|
--labelname = "https://mail.google.com/mail/feed/atom/labelname",
|
2010-02-12 00:33:07 +01:00
|
|
|
}
|
|
|
|
|
2011-03-09 06:53:13 +01:00
|
|
|
-- Default is just Inbox
|
2010-10-29 16:46:59 +02:00
|
|
|
local feed = rss.inbox
|
2010-04-02 01:08:12 +02:00
|
|
|
local mail = {
|
|
|
|
["{count}"] = 0,
|
|
|
|
["{subject}"] = "N/A"
|
|
|
|
}
|
2010-02-12 00:33:07 +01:00
|
|
|
-- }}}
|
|
|
|
|
2009-10-01 12:08:39 +02:00
|
|
|
|
2009-09-08 22:46:59 +02:00
|
|
|
-- {{{ Gmail widget type
|
2009-11-03 01:34:48 +01:00
|
|
|
local function worker(format, warg)
|
2009-09-08 22:46:59 +02:00
|
|
|
-- Get info from the Gmail atom feed
|
2014-11-12 23:43:24 +01:00
|
|
|
local f = io.popen("curl --connect-timeout 1 -m 3 -fsn " .. helpers.shellquote(feed[1]))
|
2009-09-08 22:46:59 +02:00
|
|
|
|
|
|
|
-- Could be huge don't read it all at once, info we are after is at the top
|
2014-11-08 18:14:03 +01:00
|
|
|
local xml = f:read(2000)
|
|
|
|
|
2014-11-16 03:24:53 +01:00
|
|
|
if xml ~= nil then
|
|
|
|
return mail
|
|
|
|
end
|
|
|
|
|
2014-11-08 18:14:03 +01:00
|
|
|
mail["{count}"] = -- Count comes before messages and matches at least 0
|
|
|
|
tonumber(string.match(xml, "<fullcount>([%d]+)</fullcount>")) or mail["{count}"]
|
|
|
|
|
|
|
|
-- Find subject tag
|
|
|
|
local title = string.match(xml, "<entry>.-<title>(.-)</title>")
|
2009-11-03 01:34:48 +01:00
|
|
|
|
2014-11-08 18:14:03 +01:00
|
|
|
if title ~= nil then
|
|
|
|
-- Check if we should scroll, or maybe truncate
|
|
|
|
if warg then
|
|
|
|
if type(warg) == "table" then
|
|
|
|
title = helpers.scroll(title, warg[1], warg[2])
|
|
|
|
else
|
|
|
|
title = helpers.truncate(title, warg)
|
|
|
|
end
|
2009-09-08 22:46:59 +02:00
|
|
|
end
|
2014-11-08 18:14:03 +01:00
|
|
|
|
|
|
|
-- Spam sanitize the subject and store
|
|
|
|
mail["{subject}"] = helpers.escape(title)
|
2009-09-08 22:46:59 +02:00
|
|
|
end
|
2014-11-08 18:14:03 +01:00
|
|
|
|
2009-09-08 22:46:59 +02:00
|
|
|
f:close()
|
|
|
|
|
|
|
|
return mail
|
|
|
|
end
|
|
|
|
-- }}}
|
|
|
|
|
2012-06-15 18:07:05 +02:00
|
|
|
return setmetatable(gmail, { __call = function(_, ...) return worker(...) end })
|