2 # Copyright (C) 2018 - Jonathan Rajotte-Julien <jonthan.rajotte-julien@efficios.com>
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #Path must include the file name
22 host=obj.internal.efficios.com
26 resource
="/${bucket}/${path}"
27 content_type
="application/octet-stream"
29 _signature
="PUT\n\n${content_type}\n${date}\n${resource}"
30 signature
=$
(echo -en "$_signature" | openssl sha1
-hmac "$s3_s" -binary | base64
)
32 curl
-v -k -X PUT
-T "${file}" \
35 -H "Content-Type: ${content_type}" \
36 -H "Authorization: AWS ${s3_k}:${signature}" \
37 https
://"${host}${resource}"