mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_http_file_share: Let's write another XEP-0363 implementation
This variant is meant to improve upon mod_http_upload in some ways: * Handle files much of arbitrary size efficiently * Allow GET and PUT URLs to be different * Remember Content-Type sent by client * Avoid dependency on mod_http_files * Built-in way to delegate storage to another httpd
This commit is contained in:
parent
800af648de
commit
4be9b33741
5 changed files with 229 additions and 0 deletions
26
spec/scansion/http_upload.scs
Normal file
26
spec/scansion/http_upload.scs
Normal file
|
@ -0,0 +1,26 @@
|
|||
[Client] Romeo
|
||||
password: password
|
||||
jid: filesharingenthusiast@localhost/krxLaE3s
|
||||
|
||||
-----
|
||||
|
||||
Romeo connects
|
||||
|
||||
Romeo sends:
|
||||
<iq to='upload.localhost' type='get' id='932c02fe-4461-4ad4-9c85-54863294b4dc' xml:lang='en'>
|
||||
<request content-type='text/plain' filename='verysmall.dat' xmlns='urn:xmpp:http:upload:0' size='5'/>
|
||||
</iq>
|
||||
|
||||
Romeo receives:
|
||||
<iq id='932c02fe-4461-4ad4-9c85-54863294b4dc' from='upload.localhost' type='result'>
|
||||
<slot xmlns='urn:xmpp:http:upload:0'>
|
||||
<get url='{scansion:any}'/>
|
||||
<put url='{scansion:any}'>
|
||||
<header name='Authorization'></header>
|
||||
</put>
|
||||
</slot>
|
||||
</iq>
|
||||
|
||||
Romeo disconnects
|
||||
|
||||
# recording ended on 2021-01-27T22:10:46Z
|
|
@ -131,3 +131,5 @@ Component "conference.localhost" "muc"
|
|||
|
||||
Component "pubsub.localhost" "pubsub"
|
||||
storage = "memory"
|
||||
|
||||
Component "upload.localhost" "http_file_share"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue