mirror of
https://github.com/versity/versitygw.git
synced 2026-02-05 01:40:42 +00:00
39 lines
1.4 KiB
Bash
39 lines
1.4 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright 2024 Versity Software
|
|
# This file is licensed under the Apache License, Version 2.0
|
|
# (the "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http:#www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
list_parts() {
|
|
if [[ $# -ne 3 ]]; then
|
|
log 2 "'list-parts' command requires bucket, key, upload ID"
|
|
return 1
|
|
fi
|
|
record_command "list-parts" "client:s3api"
|
|
if ! listed_parts=$(send_command aws --no-verify-ssl s3api list-parts --bucket "$1" --key "$2" --upload-id "$3" 2>&1); then
|
|
log 2 "Error listing multipart upload parts: $listed_parts"
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
list_parts_with_user() {
|
|
if [ $# -ne 5 ]; then
|
|
log 2 "'list_parts_with_user' requires username, password, bucket, key, upload ID"
|
|
return 1
|
|
fi
|
|
record_command 'list-parts' 'client:s3api'
|
|
if ! listed_parts=$(AWS_ACCESS_KEY_ID="$1" AWS_SECRET_ACCESS_KEY="$2" send_command aws --no-verify-ssl s3api list-parts --bucket "$3" --key "$4" --upload-id "$5" 2>&1); then
|
|
log 2 "Error listing multipart upload parts: $listed_parts"
|
|
return 1
|
|
fi
|
|
} |