-
Notifications
You must be signed in to change notification settings - Fork 444
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
URL decode s3 key in s3:ObjectCreated #5692
base: main
Are you sure you want to change the base?
Conversation
4c060d0
to
4514f64
Compare
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.
This deserves a unit test. @rdettai, I'll let you take over the review.
quickwit/Cargo.toml
Outdated
@@ -271,6 +271,7 @@ ulid = "1.1" | |||
username = "0.2" | |||
utoipa = { version = "4.2", features = ["time", "ulid"] } | |||
uuid = { version = "1.10", features = ["v4", "serde"] } | |||
urlencoding = "2.1.3" |
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.
Please, insert between ulid
and username
.
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.
the percent-encoding
lib that is already imported also does this (I don't think a lot of people actually use the term "percent encoding", but it seems it's actually the official name of url encoding 😄 )
@@ -46,6 +46,7 @@ tokio = { workspace = true } | |||
tracing = { workspace = true } | |||
ulid = { workspace = true } | |||
utoipa = { workspace = true } | |||
urlencoding = { workspace = true } |
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.
ditto
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 think r comes before t 😄
4514f64
to
2225e01
Compare
Hey, currently forking the project for this :) |
I was kind of waiting for you to add that test requested by guilload... I'll take a deeper look if there are other places that might be impacted. |
@tontinton, LGTM, provided that you add a small test to ensure that url encoded keys are properly decoded and use |
Oh crap, I've written a test but didn't push :) |
2225e01
to
9778e64
Compare
When a file includes `:`, it gets converted to `%3A`, and doing `GetObject` fails.
9778e64
to
69844b0
Compare
When a file includes
:
, it gets converted to%3A
, and doingGetObject
fails.