Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
prosody-modules
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Emmanuel Vodor
prosody-modules
Commits
84ba7b90
Commit
84ba7b90
authored
3 years ago
by
Jean-Baptiste Pasquier
Browse files
Options
Downloads
Patches
Plain Diff
fix: forward dpop token
parent
0e886359
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mod_sib_http_upload.lua
+10
-3
10 additions, 3 deletions
mod_sib_http_upload.lua
with
10 additions
and
3 deletions
mod_sib_http_upload.lua
+
10
−
3
View file @
84ba7b90
...
...
@@ -69,9 +69,16 @@ local function handle_request(origin, stanza, xmlns, filename, filesize, filetyp
module
:
log
(
"debug"
,
"Handing out upload slot %s to %s@%s [%d %s]"
,
slot_url
,
origin
.
username
,
origin
.
host
,
filesize
,
filetype
);
return
slot_url
,
slot_url
,
{
Authorization
=
origin
.
oauthbearer_token
;
};
if
string.sub
(
origin
.
oauthbearer_token
,
1
,
string.len
(
"DPoP"
))
==
"DPoP"
then
return
slot_url
,
slot_url
,
{
Authorization
=
string.sub
(
origin
.
oauthbearer_token
,
1
,
string.find
(
origin
.
oauthbearer_token
,
"SEPARATOR"
)
-
1
);
DPoP
=
string.sub
(
origin
.
oauthbearer_token
,
string.find
(
origin
.
oauthbearer_token
,
"SEPARATOR"
)
+
9
,
-
1
);
};
else
return
slot_url
,
slot_url
,
{
Authorization
=
origin
.
oauthbearer_token
;
};
end
end
-- hooks
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment