view mod_candy/mod_candy.lua @ 2341:52dd2a51dac8

mod_candy: Update to point to Candy v2.2.0
author Kim Alvefur <zash@zash.se>
date Wed, 02 Nov 2016 20:42:27 +0100
parents 991a5f74f848
children 7814a5c7fee8
line wrap: on
line source

-- mod_candy.lua
-- Copyright (C) 2013 Kim Alvefur

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");
		GET = function(event)
			event.response.headers.location = event.request.path.."/";
			return 301;
		end;
	}
});