mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_http: Allow setting the CORS credentials flag via :provides API
E.g. module:provides("http", { cors = { credentials = true; }; route = { ... }; });
This commit is contained in:
parent
24974dc1c6
commit
5d4446cd13
1 changed files with 9 additions and 1 deletions
|
@ -129,10 +129,11 @@ function module.add_host(module)
|
|||
local app_handlers = apps[app_name];
|
||||
|
||||
local app_methods = opt_methods;
|
||||
local app_credentials = opt_credentials;
|
||||
|
||||
local function cors_handler(event_data)
|
||||
local request, response = event_data.request, event_data.response;
|
||||
apply_cors_headers(response, app_methods, opt_headers, opt_max_age, opt_credentials, request.headers.origin);
|
||||
apply_cors_headers(response, app_methods, opt_headers, opt_max_age, app_credentials, request.headers.origin);
|
||||
end
|
||||
|
||||
local function options_handler(event_data)
|
||||
|
@ -140,6 +141,13 @@ function module.add_host(module)
|
|||
return "";
|
||||
end
|
||||
|
||||
if event.item.cors then
|
||||
local cors = event.item.cors;
|
||||
if cors.credentials ~= nil then
|
||||
app_credentials = cors.credentials;
|
||||
end
|
||||
end
|
||||
|
||||
local streaming = event.item.streaming_uploads;
|
||||
|
||||
for key, handler in pairs(event.item.route or {}) do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue