2017-12-01 00:21:33 -06:00
|
|
|
---------------------------------------------------
|
|
|
|
-- Licensed under the GNU General Public License v2
|
|
|
|
-- * (c) 2010, Adrian C. <anrxc@sysphere.org>
|
|
|
|
---------------------------------------------------
|
|
|
|
|
|
|
|
-- {{{ Grab environment
|
|
|
|
local type = type
|
|
|
|
local tonumber = tonumber
|
|
|
|
local io = { popen = io.popen }
|
|
|
|
local setmetatable = setmetatable
|
|
|
|
local helpers = require("vicious.helpers")
|
|
|
|
local string = {
|
2018-05-18 22:36:34 -05:00
|
|
|
match = string.match
|
2017-12-01 00:21:33 -06:00
|
|
|
}
|
|
|
|
-- }}}
|
|
|
|
|
|
|
|
|
|
|
|
-- Gmail: provides count of new and subject of last e-mail on Gmail
|
|
|
|
-- vicious.widgets.gmail
|
|
|
|
local gmail = {}
|
|
|
|
|
|
|
|
|
|
|
|
-- {{{ Variable definitions
|
|
|
|
local rss = {
|
2018-05-18 22:36:34 -05: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",
|
2017-12-01 00:21:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
-- Default is just Inbox
|
|
|
|
local feed = rss.inbox
|
|
|
|
local mail = {
|
2018-05-18 22:36:34 -05:00
|
|
|
["{count}"] = 0,
|
|
|
|
["{subject}"] = "N/A"
|
2017-12-01 00:21:33 -06:00
|
|
|
}
|
|
|
|
-- }}}
|
|
|
|
|
|
|
|
|
|
|
|
-- {{{ Gmail widget type
|
|
|
|
local function worker(format, warg)
|
2018-05-18 22:36:34 -05:00
|
|
|
-- Get info from the Gmail atom feed
|
|
|
|
local f = io.popen("curl --connect-timeout 1 -m 3 -fsn " .. feed)
|
2017-12-01 00:21:33 -06:00
|
|
|
|
2018-05-18 22:36:34 -05:00
|
|
|
-- Could be huge don't read it all at once, info we are after is at the top
|
|
|
|
local xml = f:read(2000)
|
2017-12-01 00:21:33 -06:00
|
|
|
|
2018-05-18 22:36:34 -05:00
|
|
|
if xml ~= nil then
|
|
|
|
return mail
|
|
|
|
end
|
2017-12-17 12:06:39 -06:00
|
|
|
|
2018-05-18 22:36:34 -05:00
|
|
|
mail["{count}"] = -- Count comes before messages and matches at least 0
|
2017-12-17 12:06:39 -06:00
|
|
|
tonumber(string.match(xml, "<fullcount>([%d]+)</fullcount>")) or mail["{count}"]
|
|
|
|
|
2018-05-18 22:36:34 -05:00
|
|
|
-- Find subject tag
|
|
|
|
local title = string.match(xml, "<entry>.-<title>(.-)</title>")
|
|
|
|
|
|
|
|
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
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Spam sanitize the subject and store
|
|
|
|
mail["{subject}"] = helpers.escape(title)
|
2017-12-01 00:21:33 -06:00
|
|
|
end
|
|
|
|
|
2018-05-18 22:36:34 -05:00
|
|
|
f:close()
|
2017-12-01 00:21:33 -06:00
|
|
|
|
2018-05-18 22:36:34 -05:00
|
|
|
return mail
|
2017-12-01 00:21:33 -06:00
|
|
|
end
|
|
|
|
-- }}}
|
|
|
|
|
|
|
|
return setmetatable(gmail, { __call = function(_, ...) return worker(...) end })
|