# HG changeset patch # User Vadim Misbakh-Soloviov # Date 1344247692 -25200 # Node ID 2d83708ea9017db8490e6768d0762aa567d6ac7e # Parent ab40d16506884f8e320fae0398cdf2bc62bcb462 mod_webpresence: fixed text notation, added html, added status message output diff -r ab40d1650688 -r 2d83708ea901 mod_webpresence/mod_webpresence.lua --- a/mod_webpresence/mod_webpresence.lua Sun Aug 05 17:51:58 2012 +0100 +++ b/mod_webpresence/mod_webpresence.lua Mon Aug 06 17:08:12 2012 +0700 @@ -1,6 +1,8 @@ module:depends("http"); local jid_split = require "util.jid".prepped_split; +local b64 = require "util.encodings".base64.encode; +local sha1 = require "util.hashes".sha1; local function require_resource(name) local icon_path = module:get_option_string("presence_icons", "icons"); @@ -13,16 +15,15 @@ end local statuses = { online = {}, away = {}, xa = {}, dnd = {}, chat = {}, offline = {} }; - -for status, _ in pairs(statuses) do - statuses[status].image = { status_code = 200, headers = { content_type = "image/png" }, +--[[for status, _ in pairs(statuses) do + statuses[status].image = { status_code = 200, headers = { content_type = "image/png" }, body = require_resource("status_"..status..".png") }; - statuses[status].text = { status_code = 200, headers = { content_type = "plain/text" }, + statuses[status].text = { status_code = 200, headers = { content_type = "text/plain" }, body = status }; -end +end]] local function handle_request(event, path) - local status; + local status, message; local jid, type = path:match("([^/]+)/?(.*)$"); if jid then local user, host = jid_split(jid); @@ -35,19 +36,44 @@ if user_sessions then status = user_sessions.top_resources[1]; if status and status.presence then + message = status.presence:child_with_name("status"); status = status.presence:child_with_name("show"); if not status then status = "online"; else status = status:get_text(); end + if message then + message = message:get_text(); + end end end end end - status = status or "offline"; - return (type and type == "text") and statuses[status].text or statuses[status].image; + if type == "" then type = "image" end; + if type == "image" then + statuses[status].image = { status_code = 200, headers = { content_type = "image/png" }, + body = require_resource("status_"..status..".png") }; + elseif type == "html" then + statuses[status].html = { status_code = 200, headers = { content_type = "text/html" }, + body = [[
]].. + [[]].. + [[]]..status..[[]].. + (message and [[]]..message..[[]] or "").. + [[
]] }; + elseif type == "text" then + statuses[status].text = { status_code = 200, headers = { content_type = "text/plain" }, + body = status }; + elseif type == "message" then + statuses[status].message = { status_code = 200, headers = { content_type = "text/plain" }, + body = (message and message or "") }; + end + return statuses[status][type]; end module:provides("http", {