-
Notifications
You must be signed in to change notification settings - Fork 319
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Set Upload-Length when appropriate #744
base: main
Are you sure you want to change the base?
Conversation
…the server. And allow resumeUpload if Upload-Defer-Length is set from server.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for this PR! Overall, taking the information about deferred length from the HEAD response is a good approach to solving this problem. Looking at the implementation, there are a few minor things to improve. Tests are also still missing, which we need to add before this can be merged. Let me know if you need help with this.
Thanks for the review, I've updated them based on your comments. I'll add some tests soon |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One more comment so far. I am looking forward to the tests. Let me know if you need any more help!
There are some merge conflicts with main
now, but I can take care of them once this PR is ready to get merged.
@@ -821,9 +828,10 @@ class BaseUpload { | |||
// If the upload length is deferred, the upload size was not specified during | |||
// upload creation. So, if the file reader is done reading, we know the total | |||
// upload size and can tell the tus server. | |||
if (this.options.uploadLengthDeferred && done) { | |||
if (this._uploadLengthDeferred && (!this.options.uploadLengthDeferred || done)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (this._uploadLengthDeferred && (!this.options.uploadLengthDeferred || done)) { | |
if (this._uploadLengthDeferred || done) { |
I think we can just use this._uploadLengthDeferred
here and don't need to consult the original option anymore.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That will change the behaviour quite a bit. As it is suggested right now, there's some problems:
- We don't always know the size when
this._uploadLengthDeferred
is true sinceoptions.uploadLengthDeferred
could be true. In this case, we'd send wrong info. done
will make it always pass the header at the end, which I believe isn't how it should work. It should only send the header on the next known request from what I understand.
If we change it to an AND, it'll kinda work, but only send the length header at the end.
The logic in the commit right now expands to:
(this._uploadLengthDeferred && !this.options.uploadLengthDeferred)
Send header on next opportunity if the request is of known size(this._uploadLengthDeferred && done)
And send at the end if it's a stream
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right, my suggestion is wrong. I used ||
instead of &&
on accident and my suggestion would be:
if (this._uploadLengthDeferred && (!this.options.uploadLengthDeferred || done)) { | |
if (this._uploadLengthDeferred && done) { |
If we change it to an AND, it'll kinda work, but only send the length header at the end.
Yes, that's right and that's how tus-js-client has handled deferred lengths in the past. It always sent the length header once the file source is closed because then we know the file size for sure. I don't see a problem with keeping this behavior. Or do you?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Honestly, I'm quite new to the protocol and library so I think you'd know more. But I was looking at this line over at the protocol documentation:
That led me to believe that it should be the first possible instance. Although, I guess both ways should work anyway?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @Acconut, just want to bump this PR, any thoughts on this? Thanks 😄
@Acconut I've added 2 tests. And also updated a fix for calculating the total size on that code block. Before the fix, it'd calculate the size of the current request and send that rather than the total size |
This PR fixes issue #182 where user cannot upload against a deferred resource.
The 2 main changes are:
Upload-Length
header check ifUpload-Defer-Length
exists in the HEAD responseUpload-Length
header in the next request ifoptions.uploadLengthDeferred
is false - because we would know the length straight awayThe code is mostly taken from the relevant issue, so credits goes there. But I've also modified it slightly to simplify the logic.
Closes #182