mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-05-14 05:41:29 +00:00
s3api: check attributes query before versionId in action resolver
Move the GetObjectAttributes action check before the versionId check in resolveFromQueryParameters. This fixes GET /bucket/key?attributes&versionId=xyz being incorrectly classified as s3:GetObjectVersion instead of s3:GetObjectAttributes. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -159,6 +159,13 @@ func resolveFromQueryParameters(query url.Values, method string, hasObject bool)
|
||||
}
|
||||
}
|
||||
|
||||
// GetObjectAttributes (object-level only)
|
||||
// Must be checked before versionId, because GET /bucket/key?attributes&versionId=xyz
|
||||
// is a GetObjectAttributes request, not a GetObjectVersion request
|
||||
if hasObject && query.Has("attributes") && method == http.MethodGet {
|
||||
return s3_constants.S3_ACTION_GET_OBJECT_ATTRIBUTES
|
||||
}
|
||||
|
||||
// Versioning operations - distinguish between versionId (specific version) and versions (list versions)
|
||||
// versionId: Used to access/delete a specific version of an object (e.g., GET /bucket/key?versionId=xyz)
|
||||
if query.Has("versionId") {
|
||||
@@ -196,11 +203,6 @@ func resolveFromQueryParameters(query url.Values, method string, hasObject bool)
|
||||
return s3_constants.S3_ACTION_GET_BUCKET_LOCATION
|
||||
}
|
||||
|
||||
// GetObjectAttributes (object-level only)
|
||||
if hasObject && query.Has("attributes") && method == http.MethodGet {
|
||||
return s3_constants.S3_ACTION_GET_OBJECT_ATTRIBUTES
|
||||
}
|
||||
|
||||
// Object retention and legal hold operations (object-level only)
|
||||
if hasObject {
|
||||
if query.Has("retention") {
|
||||
|
||||
Reference in New Issue
Block a user