Skip to content
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

Merged
merged 3 commits into from
Sep 20, 2022
Merged

Fix(docat): Upload of file with name of tag #272

merged 3 commits into from
Sep 20, 2022

Conversation

reglim
Copy link
Contributor

@reglim reglim commented Sep 20, 2022

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

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
return ApiResponse(message=f"Tag {new_tag} -> {version} successfully created")
msg = f"Tag {new_tag} -> {version} successfully created"

if not source.exists():
Copy link
Member

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.

Copy link
Member

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

Copy link
Contributor Author

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.")

Copy link
Contributor Author

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.
Copy link
Member

@randombenj randombenj left a 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 🎉

@randombenj randombenj merged commit 585166e into docat-org:main Sep 20, 2022
@reglim reglim deleted the bugfix/124-http-response-on-upload-fail-due-to-broken-tag branch September 21, 2022 05:11

if not source.exists():
response.status_code = status.HTTP_404_NOT_FOUND
return ApiResponse(message=f"Version {version} not found")
Copy link
Member

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}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Improve http response when uploads fail due to broken tagged version
3 participants