-
Notifications
You must be signed in to change notification settings - Fork 49
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
Fix(docat): Upload of file with name of tag #272
Fix(docat): Upload of file with name of tag #272
Conversation
Uploading a document failed with the same name as a broken (no reference) tag resulted in a 500 status code and a stacktrace. To fix this, we now check if a symlink with the same name as the uploaded version exists, and fail if it does. We now also return a warning when a tag for a non existing version is created. fixes #124
docat/docat/app.py
Outdated
return ApiResponse(message=f"Tag {new_tag} -> {version} successfully created") | ||
msg = f"Tag {new_tag} -> {version} successfully created" | ||
|
||
if not source.exists(): |
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.
I talked with @fliiiix and we came to the conclusion that this should not be possible and should throw an error and not create the symlink.
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.
also uploading a version on a symlink should not be possible
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.
@fliiiix Uploading a version with the same name as a symlink is not possible: (app.py L. 130)
if base_path.is_symlink():
# disallow overwriting of tags (symlinks) with new uploads
response.status_code = status.HTTP_409_CONFLICT
return ApiResponse(message="Cannot overwrite existing tag with new version.")
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.
@randombenj Fixed 👍
When creating a tag for a non-existent version you now get a 404 status code. See conversation here: #272
Add asserts to check wheter "create_symlink" has been called even though it shouldn't have.
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.
Awesome change! Nice tests 🎉
|
||
if not source.exists(): | ||
response.status_code = status.HTTP_404_NOT_FOUND | ||
return ApiResponse(message=f"Version {version} not found") |
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.
@reglim can we change that to something like "Could not create tag {new_tag} because there is no Project Version {version}
Uploading a document failed with the same name as a broken (no reference) tag resulted in a 500 status code and a stacktrace. To fix this, we now check if a symlink with the same name as the uploaded version exists, and fail if it does.
Also, it is now impossible to create a tag to a version that doesn't exist.
fixes #124