Mercurial > prosody-modules
view mod_candy/mod_candy.lua @ 2441:68ebc52222dc
Log URL called by http_roster_admin
author | JC Brand <jc@opkode.com> |
---|---|
date | Thu, 12 Jan 2017 09:49:32 +0000 |
parents | 7814a5c7fee8 |
children | c9372cfac3b7 |
line wrap: on
line source
-- mod_candy.lua -- Copyright (C) 2013-2017 Kim Alvefur local json_encode = require"util.json".encode; local is_module_loaded = require "core.modulemanager".is_loaded; local serve = module:depends"http_files".serve; module:provides("http", { route = { ["GET /prosody.js"] = function(event) event.response.headers.content_type = "text/javascript"; local connect_path; if is_module_loaded(module.host, "websocket") then connect_path = module:http_url("websocket", "xmpp-websocket"):gsub("^http", "ws"); else if not is_module_loaded(module.host, "bosh") then module:depends("bosh"); end connect_path = module:http_url("bosh", "/http-bind"); end return ("// Generated by Prosody\n" .."var Prosody = %s;\n") :format(json_encode({ connect_path = connect_path; 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; } });