feat: support absolute base URLs in withUploadUri and Location headers (#37) - #121
Merged
Merged
Conversation
#37) - Allow withUploadUri(String) to accept absolute URLs (http:// or https://) - Construct absolute Location response headers for upload creation across Tus 1.0.0 and RUFH protocols - Support regex endpoints and maintain backward compatibility for relative paths - Update README.md and CHANGELOG.md
…ements - Use Objects.requireNonNull for uploadInfo, uploadId, storageService, and uploadUri - Fall back to empty string in extractUriOrigin - Streamline location URI resolution and update unit tests
… path - Add testUploadWithAbsoluteUploadUri (https://uploads.example.com) and testUploadWithAbsoluteUploadUriWithPath (https://uploads.example.com/api) in AbstractITTusFileUploadService and AbstractITRufhProtocol - Assert returned Location header matches configured base URL with persisted UploadId - Validate upload, download, and info retrieval across all storage backends (Disk, Lease-file, S3, Azure Blob)
tomdesair
force-pushed
the
feature/absolute-upload-url
branch
from
August 18, 2026 20:55
498709b to
b06ed08
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Resolves #37
Summary
withUploadUri(String)to accept absolute base URLs starting withhttp://orhttps://in addition to relative paths starting with/.Locationresponse headers for upload creation across both Tus 1.0.0 and RUFH protocols when configured with an absolute base URL.README.md, andCHANGELOG.md.