mirror of
https://github.com/versity/versitygw.git
synced 2026-01-07 20:25:12 +00:00
28 lines
958 B
Bash
28 lines
958 B
Bash
#!/usr/bin/env bash
|
|
|
|
put_object() {
|
|
if [ $# -ne 4 ]; then
|
|
echo "put object command requires command type, source, destination bucket, destination key"
|
|
return 1
|
|
fi
|
|
local exit_code=0
|
|
local error
|
|
if [[ $1 == 's3' ]]; then
|
|
error=$(aws --no-verify-ssl s3 mv "$2" s3://"$3/$4" 2>&1) || exit_code=$?
|
|
elif [[ $1 == 's3api' ]] || [[ $1 == 'aws' ]]; then
|
|
error=$(aws --no-verify-ssl s3api put-object --body "$2" --bucket "$3" --key "$4" 2>&1) || exit_code=$?
|
|
elif [[ $1 == 's3cmd' ]]; then
|
|
error=$(s3cmd "${S3CMD_OPTS[@]}" --no-check-certificate put "$2" s3://"$3/$4" 2>&1) || exit_code=$?
|
|
elif [[ $1 == 'mc' ]]; then
|
|
error=$(mc --insecure put "$2" "$MC_ALIAS/$3/$4" 2>&1) || exit_code=$?
|
|
else
|
|
echo "'put object' command not implemented for '$1'"
|
|
return 1
|
|
fi
|
|
log 5 "put object exit code: $exit_code"
|
|
if [ $exit_code -ne 0 ]; then
|
|
echo "error putting object into bucket: $error"
|
|
return 1
|
|
fi
|
|
return 0
|
|
} |