Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

added new constructor to provide custom UploadIdFactory #17

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/main/java/me/desair/tus/server/TusFileUploadService.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,18 @@ public class TusFileUploadService {

private UploadStorageService uploadStorageService;
private UploadLockingService uploadLockingService;
private UploadIdFactory idFactory = new UploadIdFactory();
private final UploadIdFactory idFactory;
private final LinkedHashMap<String, TusExtension> enabledFeatures = new LinkedHashMap<>();
private final Set<HttpMethod> supportedHttpMethods = EnumSet.noneOf(HttpMethod.class);
private boolean isThreadLocalCacheEnabled = false;
private boolean isChunkedTransferDecodingEnabled = false;

public TusFileUploadService() {
this(new UploadIdFactory());
}

public TusFileUploadService(UploadIdFactory uploadIdFactory) {
this.idFactory = uploadIdFactory;
String storagePath = FileUtils.getTempDirectoryPath() + File.separator + "tus";
this.uploadStorageService = new DiskStorageService(idFactory, storagePath);
this.uploadLockingService = new DiskLockingService(idFactory, storagePath);
Expand Down