mod_candy/mod_candy.lua
author Matthew Wild <mwild1@gmail.com>
Thu, 26 Sep 2013 18:30:46 +0100
changeset 1201 744af76b7324
parent 1031 6b34cc81e15d
child 1384 f67eacb1ac9f
permissions -rw-r--r--
mod_auth_imap: Rename imap_service_realm to imap_auth_realm and inherit from sasl_realm, rename imap_service_name to imap_auth_service_name

-- mod_candy.lua
-- Copyright (C) 2013 Kim Alvefur
--
-- Run this in www_files
-- curl -L http://github.com/candy-chat/candy/tarball/master | tar xzfv - --strip-components=1

local json_encode = require"util.json".encode;

module:depends"bosh";
local serve = module:depends"http_files".serve;

module:provides("http", {
	route = {
		["GET /prosody.js"] = function(event)
			event.response.headers.content_type = "text/javascript";
			return ("// Generated by Prosody\n"
				.."var Prosody = %s;\n")
					:format(json_encode({
						bosh_path = module:http_url("bosh","/http-bind");
						version = prosody.version;
						host = module:get_host();
						anonymous = module:get_option_string("authentication") == "anonymous";
					}));
		end;
		["GET /*"] = serve(module:get_directory().."/www_files");
	}
});