From 083c41217733df9a9a5d5da6bcf0e99a67b19ea3 Mon Sep 17 00:00:00 2001 From: Kim Date: Thu, 16 Mar 2023 12:49:25 +0100 Subject: [PATCH 1/2] added python variant of s3cmd --- csharp/App/Backend/Backend.csproj | 14 + csharp/App/Backend/Controllers/Controller.cs | 9 +- .../Backend/DataTypes/Methods/Installation.cs | 32 +- .../App/Backend/DataTypes/Methods/Session.cs | 2 +- csharp/App/Backend/DataTypes/Methods/User.cs | 3 + csharp/App/Backend/Database/Update.cs | 5 +- csharp/App/Backend/Resources/s3cmd.py | 3380 +++++++++++++++++ csharp/App/Backend/db.sqlite | Bin 495616 -> 495616 bytes 8 files changed, 3432 insertions(+), 13 deletions(-) create mode 100755 csharp/App/Backend/Resources/s3cmd.py diff --git a/csharp/App/Backend/Backend.csproj b/csharp/App/Backend/Backend.csproj index 6be32dee4..a63522893 100644 --- a/csharp/App/Backend/Backend.csproj +++ b/csharp/App/Backend/Backend.csproj @@ -27,4 +27,18 @@ + + + + + + + + + + + PreserveNewest + + + diff --git a/csharp/App/Backend/Controllers/Controller.cs b/csharp/App/Backend/Controllers/Controller.cs index d6db3ec68..596b0bcbd 100644 --- a/csharp/App/Backend/Controllers/Controller.cs +++ b/csharp/App/Backend/Controllers/Controller.cs @@ -59,7 +59,8 @@ public class Controller if (user is null || !caller.HasAccessTo(user)) return _Unauthorized; - + + user.Password = ""; return user; } @@ -200,9 +201,9 @@ public class Controller { var session = GetSession(); - return session.Update(updatedUser) - ? updatedUser - : _Unauthorized; + if (!session.Update(updatedUser)) return _Unauthorized; + updatedUser.Password = ""; + return updatedUser; } diff --git a/csharp/App/Backend/DataTypes/Methods/Installation.cs b/csharp/App/Backend/DataTypes/Methods/Installation.cs index f3488b08d..30d28a038 100644 --- a/csharp/App/Backend/DataTypes/Methods/Installation.cs +++ b/csharp/App/Backend/DataTypes/Methods/Installation.cs @@ -17,14 +17,32 @@ public static class InstallationMethods //secret 55MAqyO_FqUmh7O64VIO0egq50ERn_WIAWuc2QC44QU const String apiKey = "EXO44d2979c8e570eae81ead564"; const String salt = "3e5b3069-214a-43ee-8d85-57d72000c19d"; + if (Environment.OSVersion.Platform != PlatformID.Unix) + { + var cmd = Cli + .Wrap("s3cmd") + .WithArguments(new[] + { + "signurl", $"s3://{installation.Id}-{salt}", validity.TotalSeconds.ToString(), "--access_key", + apiKey + }); + + var x = await cmd.ExecuteBufferedAsync(); + installation.S3Url = x.StandardOutput.Replace("\n", "").Replace(" ", ""); + } + else + { + var cmd = Cli + .Wrap("python3") + .WithArguments(new[] + { + "Resources/s3cmd.py", "signurl", $"s3://{installation.Id}-{salt}", validity.TotalSeconds.ToString(), "--access_key", + apiKey + }); + var x = await cmd.ExecuteBufferedAsync(); + installation.S3Url = x.StandardOutput.Replace("\n", "").Replace(" ", ""); + } - var cmd = Cli - .Wrap("s3cmd") - .WithArguments(new[] { "signurl",$"s3://{installation.Id}-{salt}", validity.TotalSeconds.ToString(), "--access_key", apiKey}); - - var x = await cmd.ExecuteBufferedAsync(); - installation.S3Url = x.StandardOutput.Replace("\n", "").Replace(" ", ""); - Console.WriteLine(installation.S3Url); Db.Update(installation); diff --git a/csharp/App/Backend/DataTypes/Methods/Session.cs b/csharp/App/Backend/DataTypes/Methods/Session.cs index 86960dab2..f51e15883 100644 --- a/csharp/App/Backend/DataTypes/Methods/Session.cs +++ b/csharp/App/Backend/DataTypes/Methods/Session.cs @@ -95,7 +95,7 @@ public static class SessionMethods && editedUser is not null && sessionUser.HasWriteAccess && sessionUser.HasAccessTo(editedUser) - && (editedUser.IsRelativeRoot() || sessionUser.HasAccessTo(editedUser.Parent())) // TODO: triple check this + //&& (editedUser.IsRelativeRoot() || sessionUser.HasAccessTo(editedUser.Parent())) // TODO: triple check this && Db.Update(editedUser); } diff --git a/csharp/App/Backend/DataTypes/Methods/User.cs b/csharp/App/Backend/DataTypes/Methods/User.cs index 1de1086b9..30c350c27 100644 --- a/csharp/App/Backend/DataTypes/Methods/User.cs +++ b/csharp/App/Backend/DataTypes/Methods/User.cs @@ -160,6 +160,9 @@ public static class UserMethods { if (other is null) return false; + + if (other.Id == user.Id) + return true; return other .Ancestors() diff --git a/csharp/App/Backend/Database/Update.cs b/csharp/App/Backend/Database/Update.cs index e552df33f..98c5a64fe 100644 --- a/csharp/App/Backend/Database/Update.cs +++ b/csharp/App/Backend/Database/Update.cs @@ -40,7 +40,10 @@ public static partial class Db public static Boolean Update(User user) { var originalUser = GetUserById(user.Id); - + + //Todo change password backend + user.Password = originalUser.Password; + return originalUser is not null && user.Id == originalUser.Id // these columns must not be modified! && user.ParentId == originalUser.ParentId diff --git a/csharp/App/Backend/Resources/s3cmd.py b/csharp/App/Backend/Resources/s3cmd.py new file mode 100755 index 000000000..6691d8797 --- /dev/null +++ b/csharp/App/Backend/Resources/s3cmd.py @@ -0,0 +1,3380 @@ +#!/usr/bin/python3 +# -*- coding: utf-8 -*- + +## -------------------------------------------------------------------- +## s3cmd - S3 client +## +## Authors : Michal Ludvig and contributors +## Copyright : TGRMN Software - http://www.tgrmn.com - and contributors +## Website : http://s3tools.org +## License : GPL Version 2 +## -------------------------------------------------------------------- +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; either version 2 of the License, or +## (at your option) any later version. +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## -------------------------------------------------------------------- + +from __future__ import absolute_import, print_function, division + +import sys + +if sys.version_info < (2, 6): + sys.stderr.write(u"ERROR: Python 2.6 or higher required, sorry.\n") + # 72 == EX_OSFILE + sys.exit(72) + +PY3 = (sys.version_info >= (3, 0)) + +import codecs +import errno +import glob +import io +import locale +import logging +import os +import re +import shutil +import socket +import subprocess +import tempfile +import time +import traceback + +from copy import copy +from optparse import OptionParser, Option, OptionValueError, IndentedHelpFormatter +from logging import debug, info, warning, error + + +try: + import htmlentitydefs +except Exception: + # python 3 support + import html.entities as htmlentitydefs + +try: + unicode +except NameError: + # python 3 support + # In python 3, unicode -> str, and str -> bytes + unicode = str + +try: + unichr +except NameError: + # python 3 support + # In python 3, unichr was removed as chr can now do the job + unichr = chr + +try: + from shutil import which +except ImportError: + # python2 fallback code + from distutils.spawn import find_executable as which + +if not PY3: + # ConnectionRefusedError does not exist in python2 + class ConnectionError(OSError): + pass + class ConnectionRefusedError(ConnectionError): + pass + + +def output(message): + sys.stdout.write(message + "\n") + sys.stdout.flush() + +def check_args_type(args, type, verbose_type): + """NOTE: This function looks like to not be used.""" + for arg in args: + if S3Uri(arg).type != type: + raise ParameterError("Expecting %s instead of '%s'" % (verbose_type, arg)) + +def cmd_du(args): + s3 = S3(Config()) + if len(args) > 0: + uri = S3Uri(args[0]) + if uri.type == "s3" and uri.has_bucket(): + subcmd_bucket_usage(s3, uri) + return EX_OK + subcmd_bucket_usage_all(s3) + return EX_OK + +def subcmd_bucket_usage_all(s3): + """ + Returns: sum of bucket sizes as integer + Raises: S3Error + """ + cfg = Config() + response = s3.list_all_buckets() + + buckets_size = 0 + for bucket in response["list"]: + size = subcmd_bucket_usage(s3, S3Uri("s3://" + bucket["Name"])) + if size != None: + buckets_size += size + total_size, size_coeff = formatSize(buckets_size, cfg.human_readable_sizes) + total_size_str = str(total_size) + size_coeff + output(u"".rjust(12, "-")) + output(u"%s Total" % (total_size_str.ljust(12))) + return size + +def subcmd_bucket_usage(s3, uri): + """ + Returns: bucket size as integer + Raises: S3Error + """ + bucket_size = 0 + object_count = 0 + extra_info = u'' + + bucket = uri.bucket() + prefix = uri.object() + try: + for _, _, objects in s3.bucket_list_streaming(bucket, prefix=prefix, recursive=True): + for obj in objects: + bucket_size += int(obj["Size"]) + object_count += 1 + + except S3Error as e: + if e.info["Code"] in S3.codes: + error(S3.codes[e.info["Code"]] % bucket) + raise + + except KeyboardInterrupt as e: + extra_info = u' [interrupted]' + + total_size_str = u"%d%s" % formatSize(bucket_size, + Config().human_readable_sizes) + if Config().human_readable_sizes: + total_size_str = total_size_str.rjust(5) + else: + total_size_str = total_size_str.rjust(12) + output(u"%s %7s objects %s%s" % (total_size_str, object_count, uri, + extra_info)) + return bucket_size + +def cmd_ls(args): + cfg = Config() + s3 = S3(cfg) + if len(args) > 0: + uri = S3Uri(args[0]) + if uri.type == "s3" and uri.has_bucket(): + subcmd_bucket_list(s3, uri, cfg.limit) + return EX_OK + + # If not a s3 type uri or no bucket was provided, list all the buckets + subcmd_all_buckets_list(s3) + return EX_OK + +def subcmd_all_buckets_list(s3): + + response = s3.list_all_buckets() + + for bucket in sorted(response["list"], key=lambda b:b["Name"]): + output(u"%s s3://%s" % (formatDateTime(bucket["CreationDate"]), + bucket["Name"])) + +def cmd_all_buckets_list_all_content(args): + cfg = Config() + s3 = S3(cfg) + + response = s3.list_all_buckets() + + for bucket in response["list"]: + subcmd_bucket_list(s3, S3Uri("s3://" + bucket["Name"]), cfg.limit) + output(u"") + return EX_OK + +def subcmd_bucket_list(s3, uri, limit): + cfg = Config() + + bucket = uri.bucket() + prefix = uri.object() + + debug(u"Bucket 's3://%s':" % bucket) + if prefix.endswith('*'): + prefix = prefix[:-1] + try: + response = s3.bucket_list(bucket, prefix = prefix, limit = limit) + except S3Error as e: + if e.info["Code"] in S3.codes: + error(S3.codes[e.info["Code"]] % bucket) + raise + + # md5 are 32 char long, but for multipart there could be a suffix + if Config().human_readable_sizes: + # %(size)5s%(coeff)1s + format_size = u"%5d%1s" + dir_str = u"DIR".rjust(6) + else: + format_size = u"%12d%s" + dir_str = u"DIR".rjust(12) + if cfg.long_listing: + format_string = u"%(timestamp)16s %(size)s %(md5)-35s %(storageclass)-11s %(uri)s" + elif cfg.list_md5: + format_string = u"%(timestamp)16s %(size)s %(md5)-35s %(uri)s" + else: + format_string = u"%(timestamp)16s %(size)s %(uri)s" + + for prefix in response['common_prefixes']: + output(format_string % { + "timestamp": "", + "size": dir_str, + "md5": "", + "storageclass": "", + "uri": uri.compose_uri(bucket, prefix["Prefix"])}) + + for object in response["list"]: + md5 = object.get('ETag', '').strip('"\'') + storageclass = object.get('StorageClass','') + + if cfg.list_md5: + if '-' in md5: # need to get md5 from the object + object_uri = uri.compose_uri(bucket, object["Key"]) + info_response = s3.object_info(S3Uri(object_uri)) + try: + md5 = info_response['s3cmd-attrs']['md5'] + except KeyError: + pass + + size_and_coeff = formatSize(object["Size"], + Config().human_readable_sizes) + output(format_string % { + "timestamp": formatDateTime(object["LastModified"]), + "size" : format_size % size_and_coeff, + "md5" : md5, + "storageclass" : storageclass, + "uri": uri.compose_uri(bucket, object["Key"]), + }) + + if response["truncated"]: + warning(u"The list is truncated because the settings limit was reached.") + +def cmd_bucket_create(args): + cfg = Config() + s3 = S3(cfg) + + for arg in args: + uri = S3Uri(arg) + if not uri.type == "s3" or not uri.has_bucket() or uri.has_object(): + raise ParameterError("Expecting S3 URI with just the bucket name set instead of '%s'" % arg) + try: + response = s3.bucket_create(uri.bucket(), cfg.bucket_location, cfg.extra_headers) + output(u"Bucket '%s' created" % uri.uri()) + except S3Error as e: + if e.info["Code"] in S3.codes: + error(S3.codes[e.info["Code"]] % uri.bucket()) + raise + return EX_OK + +def cmd_website_info(args): + cfg = Config() + s3 = S3(cfg) + for arg in args: + uri = S3Uri(arg) + if not uri.type == "s3" or not uri.has_bucket() or uri.has_object(): + raise ParameterError("Expecting S3 URI with just the bucket name set instead of '%s'" % arg) + try: + response = s3.website_info(uri, cfg.bucket_location) + if response: + output(u"Bucket %s: Website configuration" % uri.uri()) + output(u"Website endpoint: %s" % response['website_endpoint']) + output(u"Index document: %s" % response['index_document']) + output(u"Error document: %s" % response['error_document']) + else: + output(u"Bucket %s: Unable to receive website configuration." % (uri.uri())) + except S3Error as e: + if e.info["Code"] in S3.codes: + error(S3.codes[e.info["Code"]] % uri.bucket()) + raise + return EX_OK + +def cmd_website_create(args): + cfg = Config() + s3 = S3(cfg) + for arg in args: + uri = S3Uri(arg) + if not uri.type == "s3" or not uri.has_bucket() or uri.has_object(): + raise ParameterError("Expecting S3 URI with just the bucket name set instead of '%s'" % arg) + try: + response = s3.website_create(uri, cfg.bucket_location) + output(u"Bucket '%s': website configuration created." % (uri.uri())) + except S3Error as e: + if e.info["Code"] in S3.codes: + error(S3.codes[e.info["Code"]] % uri.bucket()) + raise + return EX_OK + +def cmd_website_delete(args): + cfg = Config() + s3 = S3(cfg) + for arg in args: + uri = S3Uri(arg) + if not uri.type == "s3" or not uri.has_bucket() or uri.has_object(): + raise ParameterError("Expecting S3 URI with just the bucket name set instead of '%s'" % arg) + try: + response = s3.website_delete(uri, cfg.bucket_location) + output(u"Bucket '%s': website configuration deleted." % (uri.uri())) + except S3Error as e: + if e.info["Code"] in S3.codes: + error(S3.codes[e.info["Code"]] % uri.bucket()) + raise + return EX_OK + +def cmd_expiration_set(args): + cfg = Config() + s3 = S3(cfg) + for arg in args: + uri = S3Uri(arg) + if not uri.type == "s3" or not uri.has_bucket() or uri.has_object(): + raise ParameterError("Expecting S3 URI with just the bucket name set instead of '%s'" % arg) + try: + response = s3.expiration_set(uri, cfg.bucket_location) + if response["status"] == 200: + output(u"Bucket '%s': expiration configuration is set." % (uri.uri())) + elif response["status"] == 204: + output(u"Bucket '%s': expiration configuration is deleted." % (uri.uri())) + except S3Error as e: + if e.info["Code"] in S3.codes: + error(S3.codes[e.info["Code"]] % uri.bucket()) + raise + return EX_OK + +def cmd_bucket_delete(args): + cfg = Config() + s3 = S3(cfg) + + def _bucket_delete_one(uri, retry=True): + try: + response = s3.bucket_delete(uri.bucket()) + output(u"Bucket '%s' removed" % uri.uri()) + except S3Error as e: + if e.info['Code'] == 'NoSuchBucket': + if cfg.force: + return EX_OK + else: + raise + if e.info['Code'] == 'BucketNotEmpty' and retry and (cfg.force or cfg.recursive): + warning(u"Bucket is not empty. Removing all the objects from it first. This may take some time...") + rc = subcmd_batch_del(uri_str = uri.uri()) + if rc == EX_OK: + return _bucket_delete_one(uri, False) + else: + output(u"Bucket was not removed") + elif e.info["Code"] in S3.codes: + error(S3.codes[e.info["Code"]] % uri.bucket()) + raise + return EX_OK + + for arg in args: + uri = S3Uri(arg) + if not uri.type == "s3" or not uri.has_bucket() or uri.has_object(): + raise ParameterError("Expecting S3 URI with just the bucket name set instead of '%s'" % arg) + rc = _bucket_delete_one(uri) + if rc != EX_OK: + return rc + return EX_OK + +def cmd_object_put(args): + cfg = Config() + s3 = S3(cfg) + + if len(args) == 0: + raise ParameterError("Nothing to upload. Expecting a local file or directory and a S3 URI destination.") + + ## Normalize URI to convert s3://bkt to s3://bkt/ (trailing slash) + destination_base_uri = S3Uri(args.pop()) + if destination_base_uri.type != 's3': + raise ParameterError("Destination must be S3Uri. Got: %s" % destination_base_uri) + destination_base = destination_base_uri.uri() + + if len(args) == 0: + raise ParameterError("Nothing to upload. Expecting a local file or directory.") + + local_list, single_file_local, exclude_list, total_size_local = fetch_local_list(args, is_src = True) + + local_count = len(local_list) + + info(u"Summary: %d local files to upload" % local_count) + + if local_count == 0: + raise ParameterError("Nothing to upload.") + + if local_count > 0: + if not single_file_local and '-' in local_list.keys(): + raise ParameterError("Cannot specify multiple local files if uploading from '-' (ie stdin)") + elif single_file_local and local_list.keys()[0] == "-" and destination_base.endswith("/"): + raise ParameterError("Destination S3 URI must not end with '/' when uploading from stdin.") + elif not destination_base.endswith("/"): + if not single_file_local: + raise ParameterError("Destination S3 URI must end with '/' (ie must refer to a directory on the remote side).") + local_list[local_list.keys()[0]]['remote_uri'] = destination_base + else: + for key in local_list: + local_list[key]['remote_uri'] = destination_base + key + + if cfg.dry_run: + for key in exclude_list: + output(u"exclude: %s" % key) + for key in local_list: + if key != "-": + nicekey = local_list[key]['full_name'] + else: + nicekey = "" + output(u"upload: '%s' -> '%s'" % (nicekey, local_list[key]['remote_uri'])) + + warning(u"Exiting now because of --dry-run") + return EX_OK + + seq = 0 + ret = EX_OK + for key in local_list: + seq += 1 + + uri_final = S3Uri(local_list[key]['remote_uri']) + try: + src_md5 = local_list.get_md5(key) + except IOError: + src_md5 = None + + extra_headers = copy(cfg.extra_headers) + full_name_orig = local_list[key]['full_name'] + full_name = full_name_orig + seq_label = "[%d of %d]" % (seq, local_count) + if Config().encrypt: + gpg_exitcode, full_name, extra_headers["x-amz-meta-s3tools-gpgenc"] = gpg_encrypt(full_name_orig) + attr_header = _build_attr_header(local_list[key], key, src_md5) + debug(u"attr_header: %s" % attr_header) + extra_headers.update(attr_header) + try: + response = s3.object_put(full_name, uri_final, extra_headers, extra_label = seq_label) + except S3UploadError as exc: + error(u"Upload of '%s' failed too many times (Last reason: %s)" % (full_name_orig, exc)) + if cfg.stop_on_error: + ret = EX_DATAERR + error(u"Exiting now because of --stop-on-error") + break + ret = EX_PARTIAL + continue + except InvalidFileError as exc: + error(u"Upload of '%s' is not possible (Reason: %s)" % (full_name_orig, exc)) + ret = EX_PARTIAL + if cfg.stop_on_error: + ret = EX_OSFILE + error(u"Exiting now because of --stop-on-error") + break + continue + if response is not None: + speed_fmt = formatSize(response["speed"], human_readable = True, floating_point = True) + if not Config().progress_meter: + if full_name_orig != "-": + nicekey = full_name_orig + else: + nicekey = "" + output(u"upload: '%s' -> '%s' (%d bytes in %0.1f seconds, %0.2f %sB/s) %s" % + (nicekey, uri_final, response["size"], response["elapsed"], + speed_fmt[0], speed_fmt[1], seq_label)) + if Config().acl_public: + output(u"Public URL of the object is: %s" % + (uri_final.public_url())) + if Config().encrypt and full_name != full_name_orig: + debug(u"Removing temporary encrypted file: %s" % full_name) + os.remove(deunicodise(full_name)) + return ret + +def cmd_object_get(args): + cfg = Config() + s3 = S3(cfg) + + ## Check arguments: + ## if not --recursive: + ## - first N arguments must be S3Uri + ## - if the last one is S3 make current dir the destination_base + ## - if the last one is a directory: + ## - take all 'basenames' of the remote objects and + ## make the destination name be 'destination_base'+'basename' + ## - if the last one is a file or not existing: + ## - if the number of sources (N, above) == 1 treat it + ## as a filename and save the object there. + ## - if there's more sources -> Error + ## if --recursive: + ## - first N arguments must be S3Uri + ## - for each Uri get a list of remote objects with that Uri as a prefix + ## - apply exclude/include rules + ## - each list item will have MD5sum, Timestamp and pointer to S3Uri + ## used as a prefix. + ## - the last arg may be '-' (stdout) + ## - the last arg may be a local directory - destination_base + ## - if the last one is S3 make current dir the destination_base + ## - if the last one doesn't exist check remote list: + ## - if there is only one item and its_prefix==its_name + ## download that item to the name given in last arg. + ## - if there are more remote items use the last arg as a destination_base + ## and try to create the directory (incl. all parents). + ## + ## In both cases we end up with a list mapping remote object names (keys) to local file names. + + ## Each item will be a dict with the following attributes + # {'remote_uri', 'local_filename'} + download_list = [] + + if len(args) == 0: + raise ParameterError("Nothing to download. Expecting S3 URI.") + + if S3Uri(args[-1]).type == 'file': + destination_base = args.pop() + else: + destination_base = "." + + if len(args) == 0: + raise ParameterError("Nothing to download. Expecting S3 URI.") + + try: + remote_list, exclude_list, remote_total_size = fetch_remote_list( + args, require_attribs = True) + except S3Error as exc: + if exc.code == 'NoSuchKey': + raise ParameterError("Source object '%s' does not exist." % exc.resource) + raise + + remote_count = len(remote_list) + + info(u"Summary: %d remote files to download" % remote_count) + + if remote_count > 0: + if destination_base == "-": + ## stdout is ok for multiple remote files! + for key in remote_list: + remote_list[key]['local_filename'] = "-" + elif not os.path.isdir(deunicodise(destination_base)): + ## We were either given a file name (existing or not) + if remote_count > 1: + raise ParameterError("Destination must be a directory or stdout when downloading multiple sources.") + remote_list[remote_list.keys()[0]]['local_filename'] = destination_base + else: + if destination_base[-1] != os.path.sep: + destination_base += os.path.sep + for key in remote_list: + local_filename = destination_base + key + if os.path.sep != "/": + local_filename = os.path.sep.join(local_filename.split("/")) + remote_list[key]['local_filename'] = local_filename + + if cfg.dry_run: + for key in exclude_list: + output(u"exclude: %s" % key) + for key in remote_list: + output(u"download: '%s' -> '%s'" % (remote_list[key]['object_uri_str'], remote_list[key]['local_filename'])) + + warning(u"Exiting now because of --dry-run") + return EX_OK + + seq = 0 + ret = EX_OK + for key in remote_list: + seq += 1 + item = remote_list[key] + uri = S3Uri(item['object_uri_str']) + ## Encode / Decode destination with "replace" to make sure it's compatible with current encoding + destination = unicodise_safe(item['local_filename']) + seq_label = "[%d of %d]" % (seq, remote_count) + + start_position = 0 + + if destination == "-": + ## stdout + dst_stream = io.open(sys.__stdout__.fileno(), mode='wb', closefd=False) + dst_stream.stream_name = u'' + file_exists = True + else: + ## File + try: + file_exists = os.path.exists(deunicodise(destination)) + try: + dst_stream = io.open(deunicodise(destination), mode='ab') + dst_stream.stream_name = destination + except IOError as e: + if e.errno != errno.ENOENT: + raise + basename = destination[:destination.rindex(os.path.sep)] + info(u"Creating directory: %s" % basename) + os.makedirs(deunicodise(basename)) + dst_stream = io.open(deunicodise(destination), mode='ab') + dst_stream.stream_name = destination + + if file_exists: + force = False + skip = False + if Config().get_continue: + start_position = dst_stream.tell() + item_size = item['size'] + if start_position == item_size: + skip = True + elif start_position > item_size: + info(u"Download forced for '%s' as source is " + "smaller than local file" % destination) + force = True + elif Config().force: + force = True + elif Config().skip_existing: + skip = True + else: + dst_stream.close() + raise ParameterError( + u"File '%s' already exists. Use either of --force /" + " --continue / --skip-existing or give it a new" + " name." % destination + ) + + if skip: + dst_stream.close() + info(u"Skipping over existing file: '%s'" % destination) + continue + + if force: + start_position = 0 + dst_stream.seek(0) + dst_stream.truncate() + + except IOError as e: + error(u"Creation of file '%s' failed (Reason: %s)" + % (destination, e.strerror)) + if cfg.stop_on_error: + error(u"Exiting now because of --stop-on-error") + raise + ret = EX_PARTIAL + continue + + try: + try: + response = s3.object_get(uri, dst_stream, destination, start_position = start_position, extra_label = seq_label) + finally: + dst_stream.close() + except S3DownloadError as e: + error(u"Download of '%s' failed (Reason: %s)" % (destination, e)) + # Delete, only if file didn't exist before! + if not file_exists: + debug(u"object_get failed for '%s', deleting..." % (destination,)) + os.unlink(deunicodise(destination)) + if cfg.stop_on_error: + error(u"Exiting now because of --stop-on-error") + raise + ret = EX_PARTIAL + continue + except S3Error as e: + error(u"Download of '%s' failed (Reason: %s)" % (destination, e)) + if not file_exists: # Delete, only if file didn't exist before! + debug(u"object_get failed for '%s', deleting..." % (destination,)) + os.unlink(deunicodise(destination)) + raise + + if "x-amz-meta-s3tools-gpgenc" in response["headers"]: + gpg_decrypt(destination, response["headers"]["x-amz-meta-s3tools-gpgenc"]) + response["size"] = os.stat(deunicodise(destination))[6] + if "last-modified" in response["headers"] and destination != "-": + last_modified = time.mktime(time.strptime(response["headers"]["last-modified"], "%a, %d %b %Y %H:%M:%S GMT")) + os.utime(deunicodise(destination), (last_modified, last_modified)) + debug("set mtime to %s" % last_modified) + if not Config().progress_meter and destination != "-": + speed_fmt = formatSize(response["speed"], human_readable = True, floating_point = True) + output(u"download: '%s' -> '%s' (%d bytes in %0.1f seconds, %0.2f %sB/s)" % + (uri, destination, response["size"], response["elapsed"], speed_fmt[0], speed_fmt[1])) + if Config().delete_after_fetch: + s3.object_delete(uri) + output(u"File '%s' removed after fetch" % (uri)) + return ret + +def cmd_object_del(args): + cfg = Config() + recursive = cfg.recursive + for uri_str in args: + uri = S3Uri(uri_str) + if uri.type != "s3": + raise ParameterError("Expecting S3 URI instead of '%s'" % uri_str) + if not uri.has_object(): + if recursive and not cfg.force: + raise ParameterError("Please use --force to delete ALL contents of %s" % uri_str) + elif not recursive: + raise ParameterError("File name required, not only the bucket name. Alternatively use --recursive") + + if not recursive: + rc = subcmd_object_del_uri(uri_str) + elif cfg.exclude or cfg.include or cfg.max_delete > 0: + # subcmd_batch_del_iterative does not support file exclusion and can't + # accurately know how many total files will be deleted, so revert to batch delete. + rc = subcmd_batch_del(uri_str = uri_str) + else: + rc = subcmd_batch_del_iterative(uri_str = uri_str) + if not rc: + return rc + return EX_OK + +def subcmd_batch_del_iterative(uri_str = None, bucket = None): + """ Streaming version of batch deletion (doesn't realize whole list in memory before deleting). + + Differences from subcmd_batch_del: + - Does not obey --exclude directives or obey cfg.max_delete (use subcmd_batch_del in those cases) + """ + if bucket and uri_str: + raise ValueError("Pass only one of uri_str or bucket") + if bucket: # bucket specified + uri_str = "s3://%s" % bucket + cfg = Config() + s3 = S3(cfg) + uri = S3Uri(uri_str) + bucket = uri.bucket() + + deleted_bytes = deleted_count = 0 + + for _, _, to_delete in s3.bucket_list_streaming(bucket, prefix=uri.object(), recursive=True): + if not to_delete: + continue + if not cfg.dry_run: + response = s3.object_batch_delete_uri_strs([uri.compose_uri(bucket, item['Key']) for item in to_delete]) + deleted_bytes += sum(int(item["Size"]) for item in to_delete) + deleted_count += len(to_delete) + output(u'\n'.join(u"delete: '%s'" % uri.compose_uri(bucket, p['Key']) for p in to_delete)) + + if deleted_count: + # display summary data of deleted files + if cfg.stats: + stats_info = StatsInfo() + stats_info.files_deleted = deleted_count + stats_info.size_deleted = deleted_bytes + output(stats_info.format_output()) + else: + total_size, size_coeff = formatSize(deleted_bytes, Config().human_readable_sizes) + total_size_str = str(total_size) + size_coeff + info(u"Deleted %s objects (%s) from %s" % (deleted_count, total_size_str, uri)) + else: + warning(u"Remote list is empty.") + + return EX_OK + +def subcmd_batch_del(uri_str = None, bucket = None, remote_list = None): + """ + Returns: EX_OK + Raises: ValueError + """ + cfg = Config() + s3 = S3(cfg) + def _batch_del(remote_list): + to_delete = remote_list[:1000] + remote_list = remote_list[1000:] + while len(to_delete): + debug(u"Batch delete %d, remaining %d" % (len(to_delete), len(remote_list))) + if not cfg.dry_run: + response = s3.object_batch_delete(to_delete) + output(u'\n'.join((u"delete: '%s'" % to_delete[p]['object_uri_str']) for p in to_delete)) + to_delete = remote_list[:1000] + remote_list = remote_list[1000:] + + if remote_list is not None and len(remote_list) == 0: + return False + + if len([item for item in [uri_str, bucket, remote_list] if item]) != 1: + raise ValueError("One and only one of 'uri_str', 'bucket', 'remote_list' can be specified.") + + if bucket: # bucket specified + uri_str = "s3://%s" % bucket + if remote_list is None: # uri_str specified + remote_list, exclude_list, remote_total_size = fetch_remote_list(uri_str, require_attribs = False) + + if len(remote_list) == 0: + warning(u"Remote list is empty.") + return EX_OK + + if cfg.max_delete > 0 and len(remote_list) > cfg.max_delete: + warning(u"delete: maximum requested number of deletes would be exceeded, none performed.") + return EX_OK + + _batch_del(remote_list) + + if cfg.dry_run: + warning(u"Exiting now because of --dry-run") + return EX_OK + +def subcmd_object_del_uri(uri_str, recursive = None): + """ + Returns: True if XXX, False if XXX + Raises: ValueError + """ + cfg = Config() + s3 = S3(cfg) + + if recursive is None: + recursive = cfg.recursive + + remote_list, exclude_list, remote_total_size = fetch_remote_list(uri_str, require_attribs = False, recursive = recursive) + + remote_count = len(remote_list) + + info(u"Summary: %d remote files to delete" % remote_count) + if cfg.max_delete > 0 and remote_count > cfg.max_delete: + warning(u"delete: maximum requested number of deletes would be exceeded, none performed.") + return False + + if cfg.dry_run: + for key in exclude_list: + output(u"exclude: %s" % key) + for key in remote_list: + output(u"delete: %s" % remote_list[key]['object_uri_str']) + + warning(u"Exiting now because of --dry-run") + return True + + for key in remote_list: + item = remote_list[key] + response = s3.object_delete(S3Uri(item['object_uri_str'])) + output(u"delete: '%s'" % item['object_uri_str']) + return True + +def cmd_object_restore(args): + cfg = Config() + s3 = S3(cfg) + + if cfg.restore_days < 1: + raise ParameterError("You must restore a file for 1 or more days") + + # accept case-insensitive argument but fix it to match S3 API + if cfg.restore_priority.title() not in ['Standard', 'Expedited', 'Bulk']: + raise ParameterError("Valid restoration priorities: bulk, standard, expedited") + else: + cfg.restore_priority = cfg.restore_priority.title() + + remote_list, exclude_list, remote_total_size = fetch_remote_list(args, require_attribs = False, recursive = cfg.recursive) + + remote_count = len(remote_list) + + info(u"Summary: Restoring %d remote files for %d days at %s priority" % (remote_count, cfg.restore_days, cfg.restore_priority)) + + if cfg.dry_run: + for key in exclude_list: + output(u"exclude: %s" % key) + for key in remote_list: + output(u"restore: '%s'" % remote_list[key]['object_uri_str']) + + warning(u"Exiting now because of --dry-run") + return EX_OK + + for key in remote_list: + item = remote_list[key] + + uri = S3Uri(item['object_uri_str']) + if not item['object_uri_str'].endswith("/"): + try: + response = s3.object_restore(S3Uri(item['object_uri_str'])) + output(u"restore: '%s'" % item['object_uri_str']) + except S3Error as e: + if e.code == "RestoreAlreadyInProgress": + warning("%s: %s" % (e.message, item['object_uri_str'])) + else: + raise e + else: + debug(u"Skipping directory since only files may be restored") + return EX_OK + + +def subcmd_cp_mv(args, process_fce, action_str, message): + cfg = Config() + if action_str == 'modify': + if len(args) < 1: + raise ParameterError("Expecting one or more S3 URIs for " + + action_str) + destination_base = None + else: + if len(args) < 2: + raise ParameterError("Expecting two or more S3 URIs for " + + action_str) + dst_base_uri = S3Uri(args.pop()) + if dst_base_uri.type != "s3": + raise ParameterError("Destination must be S3 URI. To download a " + "file use 'get' or 'sync'.") + destination_base = dst_base_uri.uri() + + scoreboard = ExitScoreboard() + + remote_list, exclude_list, remote_total_size = \ + fetch_remote_list(args, require_attribs=False) + + remote_count = len(remote_list) + + info(u"Summary: %d remote files to %s" % (remote_count, action_str)) + + if destination_base: + # Trying to mv dir1/ to dir2 will not pass a test in S3.FileLists, + # so we don't need to test for it here. + if not destination_base.endswith('/') \ + and (len(remote_list) > 1 or cfg.recursive): + raise ParameterError("Destination must be a directory and end with" + " '/' when acting on a folder content or on " + "multiple sources.") + + if cfg.recursive: + for key in remote_list: + remote_list[key]['dest_name'] = destination_base + key + else: + for key in remote_list: + if destination_base.endswith("/"): + remote_list[key]['dest_name'] = destination_base + key + else: + remote_list[key]['dest_name'] = destination_base + else: + for key in remote_list: + remote_list[key]['dest_name'] = remote_list[key]['object_uri_str'] + + if cfg.dry_run: + for key in exclude_list: + output(u"exclude: %s" % key) + for key in remote_list: + output(u"%s: '%s' -> '%s'" % (action_str, + remote_list[key]['object_uri_str'], + remote_list[key]['dest_name'])) + + warning(u"Exiting now because of --dry-run") + return EX_OK + + seq = 0 + for key in remote_list: + seq += 1 + seq_label = "[%d of %d]" % (seq, remote_count) + + item = remote_list[key] + src_uri = S3Uri(item['object_uri_str']) + dst_uri = S3Uri(item['dest_name']) + src_size = item.get('size') + + extra_headers = copy(cfg.extra_headers) + try: + response = process_fce(src_uri, dst_uri, extra_headers, + src_size=src_size, + extra_label=seq_label) + output(message % {"src": src_uri, "dst": dst_uri, + "extra": seq_label}) + if Config().acl_public: + info(u"Public URL is: %s" % dst_uri.public_url()) + scoreboard.success() + except (S3Error, S3UploadError) as exc: + if isinstance(exc, S3Error) and exc.code == "NoSuchKey": + scoreboard.notfound() + warning(u"Key not found %s" % item['object_uri_str']) + else: + scoreboard.failed() + error(u"Copy failed for: '%s' (%s)", item['object_uri_str'], + exc) + + if cfg.stop_on_error: + break + return scoreboard.rc() + +def cmd_cp(args): + s3 = S3(Config()) + return subcmd_cp_mv(args, s3.object_copy, "copy", + u"remote copy: '%(src)s' -> '%(dst)s' %(extra)s") + +def cmd_modify(args): + s3 = S3(Config()) + return subcmd_cp_mv(args, s3.object_modify, "modify", + u"modify: '%(src)s' %(extra)s") + +def cmd_mv(args): + s3 = S3(Config()) + return subcmd_cp_mv(args, s3.object_move, "move", + u"move: '%(src)s' -> '%(dst)s' %(extra)s") + +def cmd_info(args): + cfg = Config() + s3 = S3(cfg) + + while (len(args)): + uri_arg = args.pop(0) + uri = S3Uri(uri_arg) + if uri.type != "s3" or not uri.has_bucket(): + raise ParameterError("Expecting S3 URI instead of '%s'" % uri_arg) + + try: + if uri.has_object(): + info = s3.object_info(uri) + output(u"%s (object):" % uri.uri()) + output(u" File size: %s" % info['headers']['content-length']) + output(u" Last mod: %s" % info['headers']['last-modified']) + output(u" MIME type: %s" % info['headers'].get('content-type', 'none')) + output(u" Storage: %s" % info['headers'].get('x-amz-storage-class', 'STANDARD')) + md5 = info['headers'].get('etag', '').strip('"\'') + try: + md5 = info['s3cmd-attrs']['md5'] + except KeyError: + pass + output(u" MD5 sum: %s" % md5) + if 'x-amz-server-side-encryption' in info['headers']: + output(u" SSE: %s" % info['headers']['x-amz-server-side-encryption']) + else: + output(u" SSE: none") + + else: + info = s3.bucket_info(uri) + output(u"%s (bucket):" % uri.uri()) + output(u" Location: %s" % (info['bucket-location'] + or 'none')) + output(u" Payer: %s" % (info['requester-pays'] + or 'none')) + expiration = s3.expiration_info(uri, cfg.bucket_location) + if expiration and expiration['prefix'] is not None: + expiration_desc = "Expiration Rule: " + if expiration['prefix'] == "": + expiration_desc += "all objects in this bucket " + elif expiration['prefix'] is not None: + expiration_desc += "objects with key prefix '" + expiration['prefix'] + "' " + expiration_desc += "will expire in '" + if expiration['days']: + expiration_desc += expiration['days'] + "' day(s) after creation" + elif expiration['date']: + expiration_desc += expiration['date'] + "' " + output(u" %s" % expiration_desc) + else: + output(u" Expiration Rule: none") + + try: + policy = s3.get_policy(uri) + output(u" Policy: %s" % policy) + except S3Error as exc: + # Ignore the exception and don't fail the info + # if the server doesn't support setting ACLs + if exc.status == 403: + output(u" Policy: Not available: GetPolicy permission is needed to read the policy") + elif exc.status == 405: + output(u" Policy: Not available: Only the bucket owner can read the policy") + elif exc.status not in [404, 501]: + raise exc + else: + output(u" Policy: none") + + try: + cors = s3.get_cors(uri) + output(u" CORS: %s" % cors) + except S3Error as exc: + # Ignore the exception and don't fail the info + # if the server doesn't support setting ACLs + if exc.status not in [404, 501]: + raise exc + output(u" CORS: none") + + try: + acl = s3.get_acl(uri) + acl_grant_list = acl.getGrantList() + for grant in acl_grant_list: + output(u" ACL: %s: %s" % (grant['grantee'], grant['permission'])) + if acl.isAnonRead(): + output(u" URL: %s" % uri.public_url()) + except S3Error as exc: + # Ignore the exception and don't fail the info + # if the server doesn't support setting ACLs + if exc.status not in [404, 501]: + raise exc + else: + output(u" ACL: none") + + if uri.has_object(): + # Temporary hack for performance + python3 compatibility + if PY3: + info_headers_iter = info['headers'].items() + else: + info_headers_iter = info['headers'].iteritems() + for header, value in info_headers_iter: + if header.startswith('x-amz-meta-'): + output(u" %s: %s" % (header, value)) + + except S3Error as e: + if e.info["Code"] in S3.codes: + error(S3.codes[e.info["Code"]] % uri.bucket()) + raise + return EX_OK + +def filedicts_to_keys(*args): + keys = set() + for a in args: + keys.update(a.keys()) + keys = list(keys) + keys.sort() + return keys + +def cmd_sync_remote2remote(args): + cfg = Config() + s3 = S3(cfg) + + # Normalise s3://uri (e.g. assert trailing slash) + destination_base = S3Uri(args[-1]).uri() + + destbase_with_source_list = set() + for source_arg in args[:-1]: + if source_arg.endswith('/'): + destbase_with_source_list.add(destination_base) + else: + destbase_with_source_list.add(os.path.join(destination_base, + os.path.basename(source_arg))) + + stats_info = StatsInfo() + + src_list, src_exclude_list, remote_total_size = fetch_remote_list(args[:-1], recursive = True, require_attribs = True) + dst_list, dst_exclude_list, _ = fetch_remote_list(destbase_with_source_list, recursive = True, require_attribs = True) + + src_count = len(src_list) + orig_src_count = src_count + dst_count = len(dst_list) + deleted_count = 0 + + info(u"Found %d source files, %d destination files" % (src_count, dst_count)) + + src_list, dst_list, update_list, copy_pairs = compare_filelists(src_list, dst_list, src_remote = True, dst_remote = True) + + src_count = len(src_list) + update_count = len(update_list) + dst_count = len(dst_list) + + print(u"Summary: %d source files to copy, %d files at destination to delete" % (src_count + update_count, dst_count)) + + ### Populate 'target_uri' only if we've got something to sync from src to dst + for key in src_list: + src_list[key]['target_uri'] = destination_base + key + for key in update_list: + update_list[key]['target_uri'] = destination_base + key + + if cfg.dry_run: + keys = filedicts_to_keys(src_exclude_list, dst_exclude_list) + for key in keys: + output(u"exclude: %s" % key) + if cfg.delete_removed: + for key in dst_list: + output(u"delete: '%s'" % dst_list[key]['object_uri_str']) + for key in src_list: + output(u"remote copy: '%s' -> '%s'" % (src_list[key]['object_uri_str'], src_list[key]['target_uri'])) + for key in update_list: + output(u"remote copy: '%s' -> '%s'" % (update_list[key]['object_uri_str'], update_list[key]['target_uri'])) + warning(u"Exiting now because of --dry-run") + return EX_OK + + # if there are copy pairs, we can't do delete_before, on the chance + # we need one of the to-be-deleted files as a copy source. + if len(copy_pairs) > 0: + cfg.delete_after = True + + if cfg.delete_removed and orig_src_count == 0 and len(dst_list) and not cfg.force: + warning(u"delete: cowardly refusing to delete because no source files were found. Use --force to override.") + cfg.delete_removed = False + + # Delete items in destination that are not in source + if cfg.delete_removed and not cfg.delete_after: + subcmd_batch_del(remote_list = dst_list) + deleted_count = len(dst_list) + + def _upload(src_list, seq, src_count): + file_list = src_list.keys() + file_list.sort() + ret = EX_OK + total_nb_files = 0 + total_size = 0 + for file in file_list: + seq += 1 + item = src_list[file] + src_uri = S3Uri(item['object_uri_str']) + dst_uri = S3Uri(item['target_uri']) + src_size = item.get('size') + seq_label = "[%d of %d]" % (seq, src_count) + extra_headers = copy(cfg.extra_headers) + try: + response = s3.object_copy(src_uri, dst_uri, extra_headers, + src_size=src_size, + extra_label=seq_label) + output(u"remote copy: '%s' -> '%s' %s" % + (src_uri, dst_uri, seq_label)) + total_nb_files += 1 + total_size += item.get(u'size', 0) + except (S3Error, S3UploadError) as exc: + ret = EX_PARTIAL + error(u"File '%s' could not be copied: %s", src_uri, exc) + if cfg.stop_on_error: + raise + return ret, seq, total_nb_files, total_size + + # Perform the synchronization of files + timestamp_start = time.time() + seq = 0 + ret, seq, nb_files, size = _upload(src_list, seq, src_count + update_count) + total_files_copied = nb_files + total_size_copied = size + + status, seq, nb_files, size = _upload(update_list, seq, src_count + update_count) + if ret == EX_OK: + ret = status + total_files_copied += nb_files + total_size_copied += size + + n_copied, bytes_saved, failed_copy_files = remote_copy( + s3, copy_pairs, destination_base, None, False) + total_files_copied += n_copied + total_size_copied += bytes_saved + + #process files not copied + debug("Process files that were not remotely copied") + failed_copy_count = len(failed_copy_files) + for key in failed_copy_files: + failed_copy_files[key]['target_uri'] = destination_base + key + status, seq, nb_files, size = _upload(failed_copy_files, seq, src_count + update_count + failed_copy_count) + if ret == EX_OK: + ret = status + total_files_copied += nb_files + total_size_copied += size + + # Delete items in destination that are not in source + if cfg.delete_removed and cfg.delete_after: + subcmd_batch_del(remote_list = dst_list) + deleted_count = len(dst_list) + + stats_info.files = orig_src_count + stats_info.size = remote_total_size + stats_info.files_copied = total_files_copied + stats_info.size_copied = total_size_copied + stats_info.files_deleted = deleted_count + + total_elapsed = max(1.0, time.time() - timestamp_start) + outstr = "Done. Copied %d files in %0.1f seconds, %0.2f files/s." % (total_files_copied, total_elapsed, seq / total_elapsed) + if cfg.stats: + outstr += stats_info.format_output() + output(outstr) + elif seq > 0: + output(outstr) + else: + info(outstr) + + return ret + +def cmd_sync_remote2local(args): + cfg = Config() + s3 = S3(cfg) + + def _do_deletes(local_list): + total_size = 0 + if cfg.max_delete > 0 and len(local_list) > cfg.max_delete: + warning(u"delete: maximum requested number of deletes would be exceeded, none performed.") + return total_size + for key in local_list: + os.unlink(deunicodise(local_list[key]['full_name'])) + output(u"delete: '%s'" % local_list[key]['full_name']) + total_size += local_list[key].get(u'size', 0) + return len(local_list), total_size + + destination_base = args[-1] + source_args = args[:-1] + fetch_source_args = args[:-1] + + if not destination_base.endswith(os.path.sep): + if fetch_source_args[0].endswith(u'/') or len(fetch_source_args) > 1: + raise ParameterError("Destination must be a directory and end with '/' when downloading multiple sources.") + + stats_info = StatsInfo() + + remote_list, src_exclude_list, remote_total_size = fetch_remote_list(fetch_source_args, recursive = True, require_attribs = True) + + + # - The source path is either like "/myPath/my_src_folder" and + # the user want to download this single folder and Optionally only delete + # things that have been removed inside this folder. For this case, we only + # have to look inside destination_base/my_src_folder and not at the root of + # destination_base. + # - Or like "/myPath/my_src_folder/" and the user want to have the sync + # with the content of this folder + destbase_with_source_list = set() + for source_arg in fetch_source_args: + if source_arg.endswith('/'): + if destination_base.endswith(os.path.sep): + destbase_with_source_list.add(destination_base) + else: + destbase_with_source_list.add(destination_base + os.path.sep) + else: + destbase_with_source_list.add(os.path.join(destination_base, + os.path.basename(source_arg))) + local_list, single_file_local, dst_exclude_list, local_total_size = fetch_local_list(destbase_with_source_list, is_src = False, recursive = True) + + local_count = len(local_list) + remote_count = len(remote_list) + orig_remote_count = remote_count + + info(u"Found %d remote files, %d local files" % (remote_count, local_count)) + + remote_list, local_list, update_list, copy_pairs = compare_filelists(remote_list, local_list, src_remote = True, dst_remote = False) + + local_count = len(local_list) + remote_count = len(remote_list) + update_count = len(update_list) + copy_pairs_count = len(copy_pairs) + + info(u"Summary: %d remote files to download, %d local files to delete, %d local files to hardlink" % (remote_count + update_count, local_count, copy_pairs_count)) + + def _set_local_filename(remote_list, destination_base, source_args): + if len(remote_list) == 0: + return + + if destination_base.endswith(os.path.sep): + if not os.path.exists(deunicodise(destination_base)): + if not cfg.dry_run: + os.makedirs(deunicodise(destination_base)) + if not os.path.isdir(deunicodise(destination_base)): + raise ParameterError("Destination is not an existing directory") + elif len(remote_list) == 1 and \ + source_args[0] == remote_list[remote_list.keys()[0]].get(u'object_uri_str', ''): + if os.path.isdir(deunicodise(destination_base)): + raise ParameterError("Destination already exists and is a directory") + remote_list[remote_list.keys()[0]]['local_filename'] = destination_base + return + + if destination_base[-1] != os.path.sep: + destination_base += os.path.sep + for key in remote_list: + local_filename = destination_base + key + if os.path.sep != "/": + local_filename = os.path.sep.join(local_filename.split("/")) + remote_list[key]['local_filename'] = local_filename + + _set_local_filename(remote_list, destination_base, source_args) + _set_local_filename(update_list, destination_base, source_args) + + if cfg.dry_run: + keys = filedicts_to_keys(src_exclude_list, dst_exclude_list) + for key in keys: + output(u"exclude: %s" % key) + if cfg.delete_removed: + for key in local_list: + output(u"delete: '%s'" % local_list[key]['full_name']) + for key in remote_list: + output(u"download: '%s' -> '%s'" % (remote_list[key]['object_uri_str'], remote_list[key]['local_filename'])) + for key in update_list: + output(u"download: '%s' -> '%s'" % (update_list[key]['object_uri_str'], update_list[key]['local_filename'])) + + warning(u"Exiting now because of --dry-run") + return EX_OK + + # if there are copy pairs, we can't do delete_before, on the chance + # we need one of the to-be-deleted files as a copy source. + if len(copy_pairs) > 0: + cfg.delete_after = True + + if cfg.delete_removed and orig_remote_count == 0 and len(local_list) and not cfg.force: + warning(u"delete: cowardly refusing to delete because no source files were found. Use --force to override.") + cfg.delete_removed = False + + if cfg.delete_removed and not cfg.delete_after: + deleted_count, deleted_size = _do_deletes(local_list) + else: + deleted_count, deleted_size = (0, 0) + + def _download(remote_list, seq, total, total_size, dir_cache): + original_umask = os.umask(0) + os.umask(original_umask) + file_list = remote_list.keys() + file_list.sort() + ret = EX_OK + for file in file_list: + seq += 1 + item = remote_list[file] + uri = S3Uri(item['object_uri_str']) + dst_file = item['local_filename'] + is_empty_directory = dst_file.endswith('/') + seq_label = "[%d of %d]" % (seq, total) + + dst_dir = unicodise(os.path.dirname(deunicodise(dst_file))) + if not dst_dir in dir_cache: + dir_cache[dst_dir] = Utils.mkdir_with_parents(dst_dir) + if dir_cache[dst_dir] == False: + if cfg.stop_on_error: + error(u"Exiting now because of --stop-on-error") + raise OSError("Download of '%s' failed (Reason: %s destination directory is not writable)" % (file, dst_dir)) + error(u"Download of '%s' failed (Reason: %s destination directory is not writable)" % (file, dst_dir)) + ret = EX_PARTIAL + continue + + try: + chkptfname_b = '' + if not is_empty_directory: # ignore empty directory at S3: + debug(u"dst_file=%s" % dst_file) + # create temporary files (of type .s3cmd.XXXX.tmp) in the same directory + # for downloading and then rename once downloaded + # unicode provided to mkstemp argument + chkptfd, chkptfname_b = tempfile.mkstemp(u".tmp", u".s3cmd.", + os.path.dirname(dst_file)) + with io.open(chkptfd, mode='wb') as dst_stream: + dst_stream.stream_name = unicodise(chkptfname_b) + debug(u"created chkptfname=%s" % dst_stream.stream_name) + response = s3.object_get(uri, dst_stream, dst_file, extra_label = seq_label) + + # download completed, rename the file to destination + if os.name == "nt": + # Windows is really a bad OS. Rename can't overwrite an existing file + try: + os.unlink(deunicodise(dst_file)) + except OSError: + pass + os.rename(chkptfname_b, deunicodise(dst_file)) + debug(u"renamed chkptfname=%s to dst_file=%s" % (dst_stream.stream_name, dst_file)) + except OSError as exc: + allow_partial = True + + if exc.errno == errno.EISDIR: + error(u"Download of '%s' failed (Reason: %s is a directory)" % (file, dst_file)) + elif os.name != "nt" and exc.errno == errno.ETXTBSY: + error(u"Download of '%s' failed (Reason: %s is currently open for execute, cannot be overwritten)" % (file, dst_file)) + elif exc.errno == errno.EPERM or exc.errno == errno.EACCES: + error(u"Download of '%s' failed (Reason: %s permission denied)" % (file, dst_file)) + elif exc.errno == errno.EBUSY: + error(u"Download of '%s' failed (Reason: %s is busy)" % (file, dst_file)) + elif exc.errno == errno.EFBIG: + error(u"Download of '%s' failed (Reason: %s is too big)" % (file, dst_file)) + elif exc.errno == errno.ENAMETOOLONG: + error(u"Download of '%s' failed (Reason: File Name is too long)" % file) + + elif (exc.errno == errno.ENOSPC or (os.name != "nt" and exc.errno == errno.EDQUOT)): + error(u"Download of '%s' failed (Reason: No space left)" % file) + allow_partial = False + else: + error(u"Download of '%s' failed (Reason: Unknown OsError %d)" % (file, exc.errno or 0)) + allow_partial = False + + try: + # Try to remove the temp file if it exists + if chkptfname_b: + os.unlink(chkptfname_b) + except Exception: + pass + + if allow_partial and not cfg.stop_on_error: + ret = EX_PARTIAL + continue + + ret = EX_OSFILE + if allow_partial: + error(u"Exiting now because of --stop-on-error") + else: + error(u"Exiting now because of fatal error") + raise + except S3DownloadError as exc: + error(u"Download of '%s' failed too many times (Last Reason: %s). " + "This is usually a transient error, please try again " + "later." % (file, exc)) + try: + os.unlink(chkptfname_b) + except Exception as sub_exc: + warning(u"Error deleting temporary file %s (Reason: %s)", + (dst_stream.stream_name, sub_exc)) + if cfg.stop_on_error: + ret = EX_DATAERR + error(u"Exiting now because of --stop-on-error") + raise + ret = EX_PARTIAL + continue + except S3Error as exc: + warning(u"Remote file '%s'. S3Error: %s" % (exc.resource, exc)) + try: + os.unlink(chkptfname_b) + except Exception as sub_exc: + warning(u"Error deleting temporary file %s (Reason: %s)", + (dst_stream.stream_name, sub_exc)) + if cfg.stop_on_error: + raise + ret = EX_PARTIAL + continue + + try: + # set permissions on destination file + if not is_empty_directory: # a normal file + mode = 0o777 - original_umask + else: + # an empty directory, make them readable/executable + mode = 0o775 + debug(u"mode=%s" % oct(mode)) + os.chmod(deunicodise(dst_file), mode) + except: + raise + + # because we don't upload empty directories, + # we can continue the loop here, we won't be setting stat info. + # if we do start to upload empty directories, we'll have to reconsider this. + if is_empty_directory: + continue + + try: + if 's3cmd-attrs' in response and cfg.preserve_attrs: + attrs = response['s3cmd-attrs'] + if 'mode' in attrs: + os.chmod(deunicodise(dst_file), int(attrs['mode'])) + if 'mtime' in attrs or 'atime' in attrs: + mtime = ('mtime' in attrs) and int(attrs['mtime']) or int(time.time()) + atime = ('atime' in attrs) and int(attrs['atime']) or int(time.time()) + os.utime(deunicodise(dst_file), (atime, mtime)) + if 'uid' in attrs and 'gid' in attrs: + uid = int(attrs['uid']) + gid = int(attrs['gid']) + os.lchown(deunicodise(dst_file),uid,gid) + elif 'last-modified' in response['headers']: + last_modified = time.mktime(time.strptime(response["headers"]["last-modified"], "%a, %d %b %Y %H:%M:%S GMT")) + os.utime(deunicodise(dst_file), (last_modified, last_modified)) + debug("set mtime to %s" % last_modified) + except OSError as e: + ret = EX_PARTIAL + if e.errno == errno.EEXIST: + warning(u"%s exists - not overwriting" % dst_file) + continue + if e.errno in (errno.EPERM, errno.EACCES): + warning(u"%s not writable: %s" % (dst_file, e.strerror)) + if cfg.stop_on_error: + raise e + continue + raise e + except KeyboardInterrupt: + warning(u"Exiting after keyboard interrupt") + return + except Exception as e: + ret = EX_PARTIAL + error(u"%s: %s" % (file, e)) + if cfg.stop_on_error: + raise OSError(e) + continue + finally: + try: + os.remove(chkptfname_b) + except Exception: + pass + + speed_fmt = formatSize(response["speed"], human_readable = True, floating_point = True) + if not Config().progress_meter: + output(u"download: '%s' -> '%s' (%d bytes in %0.1f seconds, %0.2f %sB/s) %s" % + (uri, dst_file, response["size"], response["elapsed"], speed_fmt[0], speed_fmt[1], + seq_label)) + total_size += response["size"] + if Config().delete_after_fetch: + s3.object_delete(uri) + output(u"File '%s' removed after syncing" % (uri)) + return ret, seq, total_size + + size_transferred = 0 + total_elapsed = 0.0 + timestamp_start = time.time() + dir_cache = {} + seq = 0 + ret, seq, size_transferred = _download(remote_list, seq, remote_count + update_count, size_transferred, dir_cache) + status, seq, size_transferred = _download(update_list, seq, remote_count + update_count, size_transferred, dir_cache) + if ret == EX_OK: + ret = status + + n_copies, size_copies, failed_copy_list = local_copy(copy_pairs, destination_base) + _set_local_filename(failed_copy_list, destination_base, source_args) + status, seq, size_transferred = _download(failed_copy_list, seq, len(failed_copy_list) + remote_count + update_count, size_transferred, dir_cache) + if ret == EX_OK: + ret = status + + if cfg.delete_removed and cfg.delete_after: + deleted_count, deleted_size = _do_deletes(local_list) + + total_elapsed = max(1.0, time.time() - timestamp_start) + speed_fmt = formatSize(size_transferred / total_elapsed, human_readable = True, floating_point = True) + + stats_info.files = orig_remote_count + stats_info.size = remote_total_size + stats_info.files_transferred = len(failed_copy_list) + remote_count + update_count + stats_info.size_transferred = size_transferred + stats_info.files_copied = n_copies + stats_info.size_copied = size_copies + stats_info.files_deleted = deleted_count + stats_info.size_deleted = deleted_size + + # Only print out the result if any work has been done or + # if the user asked for verbose output + outstr = "Done. Downloaded %d bytes in %0.1f seconds, %0.2f %sB/s." % (size_transferred, total_elapsed, speed_fmt[0], speed_fmt[1]) + if cfg.stats: + outstr += stats_info.format_output() + output(outstr) + elif size_transferred > 0: + output(outstr) + else: + info(outstr) + + return ret + +def local_copy(copy_pairs, destination_base): + # Do NOT hardlink local files by default, that'd be silly + # For instance all empty files would become hardlinked together! + saved_bytes = 0 + failed_copy_list = FileDict() + for (src_obj, dst1, relative_file, md5) in copy_pairs: + src_file = os.path.join(destination_base, dst1) + dst_file = os.path.join(destination_base, relative_file) + dst_dir = os.path.dirname(deunicodise(dst_file)) + try: + if not os.path.isdir(deunicodise(dst_dir)): + debug("MKDIR %s" % dst_dir) + os.makedirs(deunicodise(dst_dir)) + debug(u"Copying %s to %s" % (src_file, dst_file)) + shutil.copy2(deunicodise(src_file), deunicodise(dst_file)) + saved_bytes += src_obj.get(u'size', 0) + except (IOError, OSError) as e: + warning(u'Unable to copy or hardlink files %s -> %s (Reason: %s)' % (src_file, dst_file, e)) + failed_copy_list[relative_file] = src_obj + return len(copy_pairs), saved_bytes, failed_copy_list + +def remote_copy(s3, copy_pairs, destination_base, uploaded_objects_list=None, + metadata_update=False): + cfg = Config() + saved_bytes = 0 + failed_copy_list = FileDict() + seq = 0 + src_count = len(copy_pairs) + for (src_obj, dst1, dst2, src_md5) in copy_pairs: + seq += 1 + debug(u"Remote Copying from %s to %s" % (dst1, dst2)) + dst1_uri = S3Uri(destination_base + dst1) + dst2_uri = S3Uri(destination_base + dst2) + src_obj_size = src_obj.get(u'size', 0) + seq_label = "[%d of %d]" % (seq, src_count) + extra_headers = copy(cfg.extra_headers) + if metadata_update: + # source is a real local file with its own personal metadata + attr_header = _build_attr_header(src_obj, dst2, src_md5) + debug(u"attr_header: %s" % attr_header) + extra_headers.update(attr_header) + extra_headers['content-type'] = \ + s3.content_type(filename=src_obj['full_name']) + try: + s3.object_copy(dst1_uri, dst2_uri, extra_headers, + src_size=src_obj_size, + extra_label=seq_label) + output(u"remote copy: '%s' -> '%s' %s" % (dst1, dst2, seq_label)) + saved_bytes += src_obj_size + if uploaded_objects_list is not None: + uploaded_objects_list.append(dst2) + except Exception: + warning(u"Unable to remote copy files '%s' -> '%s'" % (dst1_uri, dst2_uri)) + failed_copy_list[dst2] = src_obj + return (len(copy_pairs), saved_bytes, failed_copy_list) + +def _build_attr_header(src_obj, src_relative_name, md5=None): + cfg = Config() + attrs = {} + if cfg.preserve_attrs: + for attr in cfg.preserve_attrs_list: + val = None + if attr == 'uname': + try: + val = Utils.urlencode_string(Utils.getpwuid_username(src_obj['uid']), unicode_output=True) + except (KeyError, TypeError): + attr = "uid" + val = src_obj.get('uid') + if val: + warning(u"%s: Owner username not known. Storing UID=%d instead." % (src_relative_name, val)) + elif attr == 'gname': + try: + val = Utils.urlencode_string(Utils.getgrgid_grpname(src_obj.get('gid')), unicode_output=True) + except (KeyError, TypeError): + attr = "gid" + val = src_obj.get('gid') + if val: + warning(u"%s: Owner groupname not known. Storing GID=%d instead." % (src_relative_name, val)) + elif attr != "md5": + try: + val = getattr(src_obj['sr'], 'st_' + attr) + except Exception: + val = None + if val is not None: + attrs[attr] = val + + if 'md5' in cfg.preserve_attrs_list and md5: + attrs['md5'] = md5 + + if attrs: + attr_str_list = [] + for k in sorted(attrs.keys()): + attr_str_list.append(u"%s:%s" % (k, attrs[k])) + attr_header = {'x-amz-meta-s3cmd-attrs': u'/'.join(attr_str_list)} + else: + attr_header = {} + + return attr_header + +def cmd_sync_local2remote(args): + cfg = Config() + s3 = S3(cfg) + + def _single_process(source_args): + for dest in destinations: + ## Normalize URI to convert s3://bkt to s3://bkt/ (trailing slash) + destination_base_uri = S3Uri(dest) + if destination_base_uri.type != 's3': + raise ParameterError("Destination must be S3Uri. Got: %s" % destination_base_uri) + destination_base = destination_base_uri.uri() + return _child(destination_base, source_args) + + def _parent(source_args): + # Now that we've done all the disk I/O to look at the local file system and + # calculate the md5 for each file, fork for each destination to upload to them separately + # and in parallel + child_pids = [] + ret = EX_OK + + for dest in destinations: + ## Normalize URI to convert s3://bkt to s3://bkt/ (trailing slash) + destination_base_uri = S3Uri(dest) + if destination_base_uri.type != 's3': + raise ParameterError("Destination must be S3Uri. Got: %s" % destination_base_uri) + destination_base = destination_base_uri.uri() + child_pid = os.fork() + if child_pid == 0: + os._exit(_child(destination_base, source_args)) + else: + child_pids.append(child_pid) + + while len(child_pids): + (pid, status) = os.wait() + child_pids.remove(pid) + if ret == EX_OK: + ret = os.WEXITSTATUS(status) + + return ret + + def _child(destination_base, source_args): + def _set_remote_uri(local_list, destination_base, single_file_local): + if len(local_list) > 0: + ## Populate 'remote_uri' only if we've got something to upload + if not destination_base.endswith("/"): + if not single_file_local: + raise ParameterError("Destination S3 URI must end with '/' (ie must refer to a directory on the remote side).") + local_list[local_list.keys()[0]]['remote_uri'] = destination_base + else: + for key in local_list: + local_list[key]['remote_uri'] = destination_base + key + + def _upload(local_list, seq, total, total_size): + file_list = local_list.keys() + file_list.sort() + ret = EX_OK + for file in file_list: + seq += 1 + item = local_list[file] + src = item['full_name'] + try: + src_md5 = local_list.get_md5(file) + except IOError: + src_md5 = None + uri = S3Uri(item['remote_uri']) + seq_label = "[%d of %d]" % (seq, total) + extra_headers = copy(cfg.extra_headers) + try: + attr_header = _build_attr_header(local_list[file], + file, src_md5) + debug(u"attr_header: %s" % attr_header) + extra_headers.update(attr_header) + response = s3.object_put(src, uri, extra_headers, extra_label = seq_label) + except S3UploadError as exc: + error(u"Upload of '%s' failed too many times (Last reason: %s)" % (item['full_name'], exc)) + if cfg.stop_on_error: + ret = EX_DATAERR + error(u"Exiting now because of --stop-on-error") + raise + ret = EX_PARTIAL + continue + except InvalidFileError as exc: + error(u"Upload of '%s' is not possible (Reason: %s)" % (item['full_name'], exc)) + if cfg.stop_on_error: + ret = EX_OSFILE + error(u"Exiting now because of --stop-on-error") + raise + ret = EX_PARTIAL + continue + speed_fmt = formatSize(response["speed"], human_readable = True, floating_point = True) + if not cfg.progress_meter: + output(u"upload: '%s' -> '%s' (%d bytes in %0.1f seconds, %0.2f %sB/s) %s" % + (item['full_name'], uri, response["size"], response["elapsed"], + speed_fmt[0], speed_fmt[1], seq_label)) + total_size += response["size"] + uploaded_objects_list.append(uri.object()) + return ret, seq, total_size + + + stats_info = StatsInfo() + + local_list, single_file_local, src_exclude_list, local_total_size = fetch_local_list(args[:-1], is_src = True, recursive = True) + + # - The source path is either like "/myPath/my_src_folder" and + # the user want to upload this single folder and optionally only delete + # things that have been removed inside this folder. For this case, + # we only have to look inside destination_base/my_src_folder and not at + # the root of destination_base. + # - Or like "/myPath/my_src_folder/" and the user want to have the sync + # with the content of this folder + # Special case, "." for current folder. + destbase_with_source_list = set() + for source_arg in source_args: + if not source_arg.endswith('/') and os.path.basename(source_arg) != '.' \ + and not single_file_local: + destbase_with_source_list.add(os.path.join(destination_base, + os.path.basename(source_arg))) + else: + destbase_with_source_list.add(destination_base) + + remote_list, dst_exclude_list, remote_total_size = fetch_remote_list(destbase_with_source_list, recursive = True, require_attribs = True) + + local_count = len(local_list) + orig_local_count = local_count + remote_count = len(remote_list) + + info(u"Found %d local files, %d remote files" % (local_count, remote_count)) + + if single_file_local and len(local_list) == 1 and len(remote_list) == 1: + ## Make remote_key same as local_key for comparison if we're dealing with only one file + remote_list_entry = remote_list[remote_list.keys()[0]] + # Flush remote_list, by the way + remote_list = FileDict() + remote_list[local_list.keys()[0]] = remote_list_entry + + local_list, remote_list, update_list, copy_pairs = compare_filelists(local_list, remote_list, src_remote = False, dst_remote = True) + + local_count = len(local_list) + update_count = len(update_list) + copy_count = len(copy_pairs) + remote_count = len(remote_list) + upload_count = local_count + update_count + + info(u"Summary: %d local files to upload, %d files to remote copy, %d remote files to delete" % (upload_count, copy_count, remote_count)) + + _set_remote_uri(local_list, destination_base, single_file_local) + _set_remote_uri(update_list, destination_base, single_file_local) + + if cfg.dry_run: + keys = filedicts_to_keys(src_exclude_list, dst_exclude_list) + for key in keys: + output(u"exclude: %s" % key) + for key in local_list: + output(u"upload: '%s' -> '%s'" % (local_list[key]['full_name'], local_list[key]['remote_uri'])) + for key in update_list: + output(u"upload: '%s' -> '%s'" % (update_list[key]['full_name'], update_list[key]['remote_uri'])) + for (src_obj, dst1, dst2, md5) in copy_pairs: + output(u"remote copy: '%s' -> '%s'" % (dst1, dst2)) + if cfg.delete_removed: + for key in remote_list: + output(u"delete: '%s'" % remote_list[key]['object_uri_str']) + + warning(u"Exiting now because of --dry-run") + return EX_OK + + # if there are copy pairs, we can't do delete_before, on the chance + # we need one of the to-be-deleted files as a copy source. + if len(copy_pairs) > 0: + cfg.delete_after = True + + if cfg.delete_removed and orig_local_count == 0 and len(remote_list) and not cfg.force: + warning(u"delete: cowardly refusing to delete because no source files were found. Use --force to override.") + cfg.delete_removed = False + + if cfg.delete_removed and not cfg.delete_after and remote_list: + subcmd_batch_del(remote_list = remote_list) + + size_transferred = 0 + total_elapsed = 0.0 + timestamp_start = time.time() + ret, n, size_transferred = _upload(local_list, 0, upload_count, size_transferred) + status, n, size_transferred = _upload(update_list, n, upload_count, size_transferred) + if ret == EX_OK: + ret = status + # uploaded_objects_list reference is passed so it can be filled with + # destination object of succcessful copies so that they can be + # invalidated by cf + n_copies, saved_bytes, failed_copy_files = remote_copy( + s3, copy_pairs, destination_base, uploaded_objects_list, True) + + #upload file that could not be copied + debug("Process files that were not remotely copied") + failed_copy_count = len(failed_copy_files) + _set_remote_uri(failed_copy_files, destination_base, single_file_local) + status, n, size_transferred = _upload(failed_copy_files, n, upload_count + failed_copy_count, size_transferred) + if ret == EX_OK: + ret = status + + if cfg.delete_removed and cfg.delete_after and remote_list: + subcmd_batch_del(remote_list = remote_list) + total_elapsed = max(1.0, time.time() - timestamp_start) + total_speed = total_elapsed and size_transferred / total_elapsed or 0.0 + speed_fmt = formatSize(total_speed, human_readable = True, floating_point = True) + + + stats_info.files = orig_local_count + stats_info.size = local_total_size + stats_info.files_transferred = upload_count + failed_copy_count + stats_info.size_transferred = size_transferred + stats_info.files_copied = n_copies + stats_info.size_copied = saved_bytes + stats_info.files_deleted = remote_count + + + # Only print out the result if any work has been done or + # if the user asked for verbose output + outstr = "Done. Uploaded %d bytes in %0.1f seconds, %0.2f %sB/s." % (size_transferred, total_elapsed, speed_fmt[0], speed_fmt[1]) + if cfg.stats: + outstr += stats_info.format_output() + output(outstr) + elif size_transferred + saved_bytes > 0: + output(outstr) + else: + info(outstr) + + return ret + + def _invalidate_on_cf(destination_base_uri): + cf = CloudFront(cfg) + default_index_file = None + if cfg.invalidate_default_index_on_cf or cfg.invalidate_default_index_root_on_cf: + info_response = s3.website_info(destination_base_uri, cfg.bucket_location) + if info_response: + default_index_file = info_response['index_document'] + if len(default_index_file) < 1: + default_index_file = None + + results = cf.InvalidateObjects(destination_base_uri, uploaded_objects_list, default_index_file, cfg.invalidate_default_index_on_cf, cfg.invalidate_default_index_root_on_cf) + for result in results: + if result['status'] == 201: + output(u"Created invalidation request for %d paths" % len(uploaded_objects_list)) + output(u"Check progress with: s3cmd cfinvalinfo cf://%s/%s" % (result['dist_id'], result['request_id'])) + + # main execution + uploaded_objects_list = [] + + if cfg.encrypt: + error(u"S3cmd 'sync' doesn't yet support GPG encryption, sorry.") + error(u"Either use unconditional 's3cmd put --recursive'") + error(u"or disable encryption with --no-encrypt parameter.") + sys.exit(EX_USAGE) + + for arg in args[:-1]: + if not os.path.exists(deunicodise(arg)): + raise ParameterError("Invalid source: '%s' is not an existing file or directory" % arg) + + destinations = [args[-1]] + if cfg.additional_destinations: + destinations = destinations + cfg.additional_destinations + + if 'fork' not in os.__all__ or len(destinations) < 2: + ret = _single_process(args[:-1]) + destination_base_uri = S3Uri(destinations[-1]) + if cfg.invalidate_on_cf: + if len(uploaded_objects_list) == 0: + info("Nothing to invalidate in CloudFront") + else: + _invalidate_on_cf(destination_base_uri) + else: + ret = _parent(args[:-1]) + if cfg.invalidate_on_cf: + error(u"You cannot use both --cf-invalidate and --add-destination.") + return(EX_USAGE) + + return ret + +def cmd_sync(args): + cfg = Config() + if (len(args) < 2): + syntax_msg = '' + commands_list = get_commands_list() + for cmd in commands_list: + if cmd.get('cmd') == 'sync': + syntax_msg = cmd.get('param', '') + break + raise ParameterError("Too few parameters! Expected: %s" % syntax_msg) + if cfg.delay_updates: + warning(u"`delay-updates` is obsolete.") + + for arg in args: + if arg == u'-': + raise ParameterError("Stdin or stdout ('-') can't be used for a source or a destination with the sync command.") + + if S3Uri(args[0]).type == "file" and S3Uri(args[-1]).type == "s3": + return cmd_sync_local2remote(args) + if S3Uri(args[0]).type == "s3" and S3Uri(args[-1]).type == "file": + return cmd_sync_remote2local(args) + if S3Uri(args[0]).type == "s3" and S3Uri(args[-1]).type == "s3": + return cmd_sync_remote2remote(args) + raise ParameterError("Invalid source/destination: '%s'" % "' '".join(args)) + +def cmd_setacl(args): + cfg = Config() + s3 = S3(cfg) + + set_to_acl = cfg.acl_public and "Public" or "Private" + + if not cfg.recursive: + old_args = args + args = [] + for arg in old_args: + uri = S3Uri(arg) + if not uri.has_object(): + if cfg.acl_public != None: + info("Setting bucket-level ACL for %s to %s" % (uri.uri(), set_to_acl)) + else: + info("Setting bucket-level ACL for %s" % (uri.uri())) + if not cfg.dry_run: + update_acl(s3, uri) + else: + args.append(arg) + + remote_list, exclude_list, _ = fetch_remote_list(args) + + remote_count = len(remote_list) + + info(u"Summary: %d remote files to update" % remote_count) + + if cfg.dry_run: + for key in exclude_list: + output(u"exclude: %s" % key) + for key in remote_list: + output(u"setacl: '%s'" % remote_list[key]['object_uri_str']) + + warning(u"Exiting now because of --dry-run") + return EX_OK + + seq = 0 + for key in remote_list: + seq += 1 + seq_label = "[%d of %d]" % (seq, remote_count) + uri = S3Uri(remote_list[key]['object_uri_str']) + update_acl(s3, uri, seq_label) + return EX_OK + +def cmd_setpolicy(args): + cfg = Config() + s3 = S3(cfg) + uri = S3Uri(args[1]) + policy_file = args[0] + + with open(deunicodise(policy_file), 'r') as fp: + policy = fp.read() + + if cfg.dry_run: + return EX_OK + + response = s3.set_policy(uri, policy) + + #if retsponse['status'] == 200: + debug(u"response - %s" % response['status']) + if response['status'] == 204: + output(u"%s: Policy updated" % uri) + return EX_OK + +def cmd_delpolicy(args): + cfg = Config() + s3 = S3(cfg) + uri = S3Uri(args[0]) + if cfg.dry_run: return EX_OK + + response = s3.delete_policy(uri) + + #if retsponse['status'] == 200: + debug(u"response - %s" % response['status']) + output(u"%s: Policy deleted" % uri) + return EX_OK + +def cmd_setcors(args): + cfg = Config() + s3 = S3(cfg) + uri = S3Uri(args[1]) + cors_file = args[0] + + with open(deunicodise(cors_file), 'r') as fp: + cors = fp.read() + + if cfg.dry_run: + return EX_OK + + response = s3.set_cors(uri, cors) + + #if retsponse['status'] == 200: + debug(u"response - %s" % response['status']) + if response['status'] == 204: + output(u"%s: CORS updated" % uri) + return EX_OK + +def cmd_delcors(args): + cfg = Config() + s3 = S3(cfg) + uri = S3Uri(args[0]) + if cfg.dry_run: return EX_OK + + response = s3.delete_cors(uri) + + #if retsponse['status'] == 200: + debug(u"response - %s" % response['status']) + output(u"%s: CORS deleted" % uri) + return EX_OK + +def cmd_set_payer(args): + cfg = Config() + s3 = S3(cfg) + uri = S3Uri(args[0]) + + if cfg.dry_run: return EX_OK + + response = s3.set_payer(uri) + if response['status'] == 200: + output(u"%s: Payer updated" % uri) + return EX_OK + else: + output(u"%s: Payer NOT updated" % uri) + return EX_CONFLICT + +def cmd_setlifecycle(args): + cfg = Config() + s3 = S3(cfg) + uri = S3Uri(args[1]) + lifecycle_policy_file = args[0] + + with open(deunicodise(lifecycle_policy_file), 'r') as fp: + lifecycle_policy = fp.read() + + if cfg.dry_run: + return EX_OK + + response = s3.set_lifecycle_policy(uri, lifecycle_policy) + + debug(u"response - %s" % response['status']) + if response['status'] == 200: + output(u"%s: Lifecycle Policy updated" % uri) + return EX_OK + +def cmd_getlifecycle(args): + cfg = Config() + s3 = S3(cfg) + uri = S3Uri(args[0]) + + response = s3.get_lifecycle_policy(uri) + + output(u"%s" % getPrettyFromXml(response['data'])) + return EX_OK + +def cmd_dellifecycle(args): + cfg = Config() + s3 = S3(cfg) + uri = S3Uri(args[0]) + if cfg.dry_run: return EX_OK + + response = s3.delete_lifecycle_policy(uri) + + debug(u"response - %s" % response['status']) + output(u"%s: Lifecycle Policy deleted" % uri) + return EX_OK + +def cmd_setnotification(args): + s3 = S3(Config()) + uri = S3Uri(args[1]) + notification_policy_file = args[0] + + with open(deunicodise(notification_policy_file), 'r') as fp: + notification_policy = fp.read() + + response = s3.set_notification_policy(uri, notification_policy) + + debug(u"response - %s" % response['status']) + if response['status'] == 200: + output(u"%s: Notification Policy updated" % uri) + return EX_OK + +def cmd_getnotification(args): + s3 = S3(Config()) + uri = S3Uri(args[0]) + + response = s3.get_notification_policy(uri) + + output(getPrettyFromXml(response['data'])) + return EX_OK + +def cmd_delnotification(args): + s3 = S3(Config()) + uri = S3Uri(args[0]) + + response = s3.delete_notification_policy(uri) + + debug(u"response - %s" % response['status']) + output(u"%s: Notification Policy deleted" % uri) + return EX_OK + +def cmd_multipart(args): + cfg = Config() + s3 = S3(cfg) + uri = S3Uri(args[0]) + + #id = '' + #if(len(args) > 1): id = args[1] + + upload_list = s3.get_multipart(uri) + output(u"%s" % uri) + debug(upload_list) + output(u"Initiated\tPath\tId") + for mpupload in upload_list: + try: + output(u"%s\t%s\t%s" % ( + mpupload['Initiated'], + "s3://" + uri.bucket() + "/" + mpupload['Key'], + mpupload['UploadId'])) + except KeyError: + pass + return EX_OK + +def cmd_abort_multipart(args): + '''{"cmd":"abortmp", "label":"abort a multipart upload", "param":"s3://BUCKET Id", "func":cmd_abort_multipart, "argc":2},''' + cfg = Config() + s3 = S3(cfg) + uri = S3Uri(args[0]) + id = args[1] + response = s3.abort_multipart(uri, id) + debug(u"response - %s" % response['status']) + output(u"%s" % uri) + return EX_OK + +def cmd_list_multipart(args): + '''{"cmd":"abortmp", "label":"list a multipart upload", "param":"s3://BUCKET Id", "func":cmd_list_multipart, "argc":2},''' + cfg = Config() + s3 = S3(cfg) + uri = S3Uri(args[0]) + id = args[1] + + part_list = s3.list_multipart(uri, id) + output(u"LastModified\t\t\tPartNumber\tETag\tSize") + for mpupload in part_list: + try: + output(u"%s\t%s\t%s\t%s" % (mpupload['LastModified'], + mpupload['PartNumber'], + mpupload['ETag'], + mpupload['Size'])) + except KeyError: + pass + return EX_OK + +def cmd_accesslog(args): + cfg = Config() + s3 = S3(cfg) + bucket_uri = S3Uri(args.pop()) + if bucket_uri.object(): + raise ParameterError("Only bucket name is required for [accesslog] command") + if cfg.log_target_prefix == False: + accesslog, response = s3.set_accesslog(bucket_uri, enable = False) + elif cfg.log_target_prefix: + log_target_prefix_uri = S3Uri(cfg.log_target_prefix) + if log_target_prefix_uri.type != "s3": + raise ParameterError("--log-target-prefix must be a S3 URI") + accesslog, response = s3.set_accesslog(bucket_uri, enable = True, log_target_prefix_uri = log_target_prefix_uri, acl_public = cfg.acl_public) + else: # cfg.log_target_prefix == None + accesslog = s3.get_accesslog(bucket_uri) + + output(u"Access logging for: %s" % bucket_uri.uri()) + output(u" Logging Enabled: %s" % accesslog.isLoggingEnabled()) + if accesslog.isLoggingEnabled(): + output(u" Target prefix: %s" % accesslog.targetPrefix().uri()) + #output(u" Public Access: %s" % accesslog.isAclPublic()) + return EX_OK + +def cmd_sign(args): + string_to_sign = args.pop() + debug(u"string-to-sign: %r" % string_to_sign) + signature = Crypto.sign_string_v2(encode_to_s3(string_to_sign)) + output(u"Signature: %s" % decode_from_s3(signature)) + return EX_OK + +def cmd_signurl(args): + expiry = args.pop() + url_to_sign = S3Uri(args.pop()) + if url_to_sign.type != 's3': + raise ParameterError("Must be S3Uri. Got: %s" % url_to_sign) + debug("url to sign: %r" % url_to_sign) + signed_url = Crypto.sign_url_v2(url_to_sign, expiry) + output(signed_url) + return EX_OK + +def cmd_fixbucket(args): + def _unescape(text): + ## + # Removes HTML or XML character references and entities from a text string. + # + # @param text The HTML (or XML) source text. + # @return The plain text, as a Unicode string, if necessary. + # + # From: http://effbot.org/zone/re-sub.htm#unescape-html + def _unescape_fixup(m): + text = m.group(0) + if not 'apos' in htmlentitydefs.name2codepoint: + htmlentitydefs.name2codepoint['apos'] = ord("'") + if text[:2] == "&#": + # character reference + try: + if text[:3] == "&#x": + return unichr(int(text[3:-1], 16)) + else: + return unichr(int(text[2:-1])) + except ValueError: + pass + else: + # named entity + try: + text = unichr(htmlentitydefs.name2codepoint[text[1:-1]]) + except KeyError: + pass + return text # leave as is + text = text.encode('ascii', 'xmlcharrefreplace') + return re.sub(r"&#?\w+;", _unescape_fixup, text) + + cfg = Config() + cfg.urlencoding_mode = "fixbucket" + s3 = S3(cfg) + + count = 0 + for arg in args: + culprit = S3Uri(arg) + if culprit.type != "s3": + raise ParameterError("Expecting S3Uri instead of: %s" % arg) + response = s3.bucket_list_noparse(culprit.bucket(), culprit.object(), recursive = True) + r_xent = re.compile(r"&#x[\da-fA-F]+;") + data = decode_from_s3(response['data']) + keys = re.findall("(.*?)", data, re.MULTILINE | re.UNICODE) + debug("Keys: %r" % keys) + for key in keys: + if r_xent.search(key): + info("Fixing: %s" % key) + debug("Step 1: Transforming %s" % key) + key_bin = _unescape(key) + debug("Step 2: ... to %s" % key_bin) + key_new = replace_nonprintables(key_bin) + debug("Step 3: ... then to %s" % key_new) + src = S3Uri("s3://%s/%s" % (culprit.bucket(), key_bin)) + dst = S3Uri("s3://%s/%s" % (culprit.bucket(), key_new)) + if cfg.dry_run: + output(u"[--dry-run] File %r would be renamed to %s" % (key_bin, key_new)) + continue + try: + resp_move = s3.object_move(src, dst) + if resp_move['status'] == 200: + output(u"File '%r' renamed to '%s'" % (key_bin, key_new)) + count += 1 + else: + error(u"Something went wrong for: %r" % key) + error(u"Please report the problem to s3tools-bugs@lists.sourceforge.net") + except S3Error: + error(u"Something went wrong for: %r" % key) + error(u"Please report the problem to s3tools-bugs@lists.sourceforge.net") + + if count > 0: + warning(u"Fixed %d files' names. Their ACL were reset to Private." % count) + warning(u"Use 's3cmd setacl --acl-public s3://...' to make") + warning(u"them publicly readable if required.") + return EX_OK + +def resolve_list(lst, args): + retval = [] + for item in lst: + retval.append(item % args) + return retval + +def gpg_command(command, passphrase = ""): + debug(u"GPG command: " + " ".join(command)) + command = [deunicodise(cmd_entry) for cmd_entry in command] + p = subprocess.Popen(command, stdin = subprocess.PIPE, stdout = subprocess.PIPE, stderr = subprocess.STDOUT, + close_fds = True) + p_stdout, p_stderr = p.communicate(deunicodise(passphrase + "\n")) + debug(u"GPG output:") + for line in unicodise(p_stdout).split("\n"): + debug(u"GPG: " + line) + p_exitcode = p.wait() + return p_exitcode + +def gpg_encrypt(filename): + cfg = Config() + tmp_filename = Utils.mktmpfile() + args = { + "gpg_command" : cfg.gpg_command, + "passphrase_fd" : "0", + "input_file" : filename, + "output_file" : tmp_filename, + } + info(u"Encrypting file %s to %s..." % (filename, tmp_filename)) + command = resolve_list(cfg.gpg_encrypt.split(" "), args) + code = gpg_command(command, cfg.gpg_passphrase) + return (code, tmp_filename, "gpg") + +def gpg_decrypt(filename, gpgenc_header = "", in_place = True): + cfg = Config() + tmp_filename = Utils.mktmpfile(filename) + args = { + "gpg_command" : cfg.gpg_command, + "passphrase_fd" : "0", + "input_file" : filename, + "output_file" : tmp_filename, + } + info(u"Decrypting file %s to %s..." % (filename, tmp_filename)) + command = resolve_list(cfg.gpg_decrypt.split(" "), args) + code = gpg_command(command, cfg.gpg_passphrase) + if code == 0 and in_place: + debug(u"Renaming %s to %s" % (tmp_filename, filename)) + os.unlink(deunicodise(filename)) + os.rename(deunicodise(tmp_filename), deunicodise(filename)) + tmp_filename = filename + return (code, tmp_filename) + +def run_configure(config_file, args): + cfg = Config() + options = [ + ("access_key", "Access Key", "Access key and Secret key are your identifiers for Amazon S3. Leave them empty for using the env variables."), + ("secret_key", "Secret Key"), + ("bucket_location", "Default Region"), + ("host_base", "S3 Endpoint", "Use \"s3.amazonaws.com\" for S3 Endpoint and not modify it to the target Amazon S3."), + ("host_bucket", "DNS-style bucket+hostname:port template for accessing a bucket", "Use \"%(bucket)s.s3.amazonaws.com\" to the target Amazon S3. \"%(bucket)s\" and \"%(location)s\" vars can be used\nif the target S3 system supports dns based buckets."), + ("gpg_passphrase", "Encryption password", "Encryption password is used to protect your files from reading\nby unauthorized persons while in transfer to S3"), + ("gpg_command", "Path to GPG program"), + ("use_https", "Use HTTPS protocol", "When using secure HTTPS protocol all communication with Amazon S3\nservers is protected from 3rd party eavesdropping. This method is\nslower than plain HTTP, and can only be proxied with Python 2.7 or newer"), + ("proxy_host", "HTTP Proxy server name", "On some networks all internet access must go through a HTTP proxy.\nTry setting it here if you can't connect to S3 directly"), + ("proxy_port", "HTTP Proxy server port"), + ] + ## Option-specfic defaults + if getattr(cfg, "gpg_command") == "": + setattr(cfg, "gpg_command", which("gpg")) + + if getattr(cfg, "proxy_host") == "" and os.getenv("http_proxy"): + autodetected_encoding = locale.getpreferredencoding() or "UTF-8" + re_match=re.match(r"(http://)?([^:]+):(\d+)", + unicodise_s(os.getenv("http_proxy"), autodetected_encoding)) + if re_match: + setattr(cfg, "proxy_host", re_match.groups()[1]) + setattr(cfg, "proxy_port", re_match.groups()[2]) + + try: + # Support for python3 + # raw_input only exists in py2 and was renamed to input in py3 + global input + input = raw_input + except NameError: + pass + + try: + while True: + output(u"\nEnter new values or accept defaults in brackets with Enter.") + output(u"Refer to user manual for detailed description of all options.") + for option in options: + prompt = option[1] + ## Option-specific handling + if option[0] == 'proxy_host' and getattr(cfg, 'use_https') == True and sys.hexversion < 0x02070000: + setattr(cfg, option[0], "") + continue + if option[0] == 'proxy_port' and getattr(cfg, 'proxy_host') == "": + setattr(cfg, option[0], 0) + continue + + try: + val = getattr(cfg, option[0]) + if type(val) is bool: + val = val and "Yes" or "No" + if val not in (None, ""): + prompt += " [%s]" % val + except AttributeError: + pass + + if len(option) >= 3: + output(u"\n%s" % option[2]) + + val = unicodise_s(input(prompt + ": ")) + if val != "": + if type(getattr(cfg, option[0])) is bool: + # Turn 'Yes' into True, everything else into False + val = val.lower().startswith('y') + setattr(cfg, option[0], val) + output(u"\nNew settings:") + for option in options: + output(u" %s: %s" % (option[1], getattr(cfg, option[0]))) + val = input("\nTest access with supplied credentials? [Y/n] ") + if val.lower().startswith("y") or val == "": + try: + # Default, we try to list 'all' buckets which requires + # ListAllMyBuckets permission + if len(args) == 0: + output(u"Please wait, attempting to list all buckets...") + S3(Config()).bucket_list("", "") + else: + # If user specified a bucket name directly, we check it and only it. + # Thus, access check can succeed even if user only has access to + # to a single bucket and not ListAllMyBuckets permission. + output(u"Please wait, attempting to list bucket: " + args[0]) + uri = S3Uri(args[0]) + if uri.type == "s3" and uri.has_bucket(): + S3(Config()).bucket_list(uri.bucket(), "") + else: + raise Exception(u"Invalid bucket uri: " + args[0]) + + output(u"Success. Your access key and secret key worked fine :-)") + + output(u"\nNow verifying that encryption works...") + if not getattr(cfg, "gpg_command") or not getattr(cfg, "gpg_passphrase"): + output(u"Not configured. Never mind.") + else: + if not getattr(cfg, "gpg_command"): + raise Exception("Path to GPG program not set") + if not os.path.isfile(deunicodise(getattr(cfg, "gpg_command"))): + raise Exception("GPG program not found") + filename = Utils.mktmpfile() + with open(deunicodise(filename), "w") as fp: + fp.write(os.sys.copyright) + ret_enc = gpg_encrypt(filename) + ret_dec = gpg_decrypt(ret_enc[1], ret_enc[2], False) + hash = [ + Utils.hash_file_md5(filename), + Utils.hash_file_md5(ret_enc[1]), + Utils.hash_file_md5(ret_dec[1]), + ] + os.unlink(deunicodise(filename)) + os.unlink(deunicodise(ret_enc[1])) + os.unlink(deunicodise(ret_dec[1])) + if hash[0] == hash[2] and hash[0] != hash[1]: + output(u"Success. Encryption and decryption worked fine :-)") + else: + raise Exception("Encryption verification error.") + + except S3Error as e: + error(u"Test failed: %s" % (e)) + if e.code == "AccessDenied": + error(u"Are you sure your keys have s3:ListAllMyBuckets permissions?") + val = input("\nRetry configuration? [Y/n] ") + if val.lower().startswith("y") or val == "": + continue + except Exception as e: + error(u"Test failed: %s" % (e)) + val = input("\nRetry configuration? [Y/n] ") + if val.lower().startswith("y") or val == "": + continue + + + val = input("\nSave settings? [y/N] ") + if val.lower().startswith("y"): + break + val = input("Retry configuration? [Y/n] ") + if val.lower().startswith("n"): + raise EOFError() + + ## Overwrite existing config file, make it user-readable only + old_mask = os.umask(0o077) + try: + os.remove(deunicodise(config_file)) + except OSError as e: + if e.errno != errno.ENOENT: + raise + try: + with io.open(deunicodise(config_file), "w", encoding=cfg.encoding) as fp: + cfg.dump_config(fp) + finally: + os.umask(old_mask) + output(u"Configuration saved to '%s'" % config_file) + + except (EOFError, KeyboardInterrupt): + output(u"\nConfiguration aborted. Changes were NOT saved.") + return + + except IOError as e: + error(u"Writing config file failed: %s: %s" % (config_file, e.strerror)) + sys.exit(EX_IOERR) + +def process_patterns_from_file(fname, patterns_list): + try: + with open(deunicodise(fname), "rt") as fn: + for pattern in fn: + pattern = unicodise(pattern).strip() + if re.match("^#", pattern) or re.match(r"^\s*$", pattern): + continue + debug(u"%s: adding rule: %s" % (fname, pattern)) + patterns_list.append(pattern) + except IOError as e: + error(e) + sys.exit(EX_IOERR) + + return patterns_list + +def process_patterns(patterns_list, patterns_from, is_glob, option_txt = ""): + r""" + process_patterns(patterns, patterns_from, is_glob, option_txt = "") + Process --exclude / --include GLOB and REGEXP patterns. + 'option_txt' is 'exclude' / 'include' / 'rexclude' / 'rinclude' + Returns: patterns_compiled, patterns_text + Note: process_patterns_from_file will ignore lines starting with # as these + are comments. To target escape the initial #, to use it in a file name, one + can use: "[#]" (for exclude) or "\#" (for rexclude). + """ + + patterns_compiled = [] + patterns_textual = {} + + if patterns_list is None: + patterns_list = [] + + if patterns_from: + ## Append patterns from glob_from + for fname in patterns_from: + debug(u"processing --%s-from %s" % (option_txt, fname)) + patterns_list = process_patterns_from_file(fname, patterns_list) + + for pattern in patterns_list: + debug(u"processing %s rule: %s" % (option_txt, patterns_list)) + if is_glob: + pattern = glob.fnmatch.translate(pattern) + r = re.compile(pattern) + patterns_compiled.append(r) + patterns_textual[r] = pattern + + return patterns_compiled, patterns_textual + +def get_commands_list(): + return [ + {"cmd":"mb", "label":"Make bucket", "param":"s3://BUCKET", "func":cmd_bucket_create, "argc":1}, + {"cmd":"rb", "label":"Remove bucket", "param":"s3://BUCKET", "func":cmd_bucket_delete, "argc":1}, + {"cmd":"ls", "label":"List objects or buckets", "param":"[s3://BUCKET[/PREFIX]]", "func":cmd_ls, "argc":0}, + {"cmd":"la", "label":"List all object in all buckets", "param":"", "func":cmd_all_buckets_list_all_content, "argc":0}, + {"cmd":"put", "label":"Put file into bucket", "param":"FILE [FILE...] s3://BUCKET[/PREFIX]", "func":cmd_object_put, "argc":2}, + {"cmd":"get", "label":"Get file from bucket", "param":"s3://BUCKET/OBJECT LOCAL_FILE", "func":cmd_object_get, "argc":1}, + {"cmd":"del", "label":"Delete file from bucket", "param":"s3://BUCKET/OBJECT", "func":cmd_object_del, "argc":1}, + {"cmd":"rm", "label":"Delete file from bucket (alias for del)", "param":"s3://BUCKET/OBJECT", "func":cmd_object_del, "argc":1}, + #{"cmd":"mkdir", "label":"Make a virtual S3 directory", "param":"s3://BUCKET/path/to/dir", "func":cmd_mkdir, "argc":1}, + {"cmd":"restore", "label":"Restore file from Glacier storage", "param":"s3://BUCKET/OBJECT", "func":cmd_object_restore, "argc":1}, + {"cmd":"sync", "label":"Synchronize a directory tree to S3 (checks files freshness using size and md5 checksum, unless overridden by options, see below)", "param":"LOCAL_DIR s3://BUCKET[/PREFIX] or s3://BUCKET[/PREFIX] LOCAL_DIR or s3://BUCKET[/PREFIX] s3://BUCKET[/PREFIX]", "func":cmd_sync, "argc":2}, + {"cmd":"du", "label":"Disk usage by buckets", "param":"[s3://BUCKET[/PREFIX]]", "func":cmd_du, "argc":0}, + {"cmd":"info", "label":"Get various information about Buckets or Files", "param":"s3://BUCKET[/OBJECT]", "func":cmd_info, "argc":1}, + {"cmd":"cp", "label":"Copy object", "param":"s3://BUCKET1/OBJECT1 s3://BUCKET2[/OBJECT2]", "func":cmd_cp, "argc":2}, + {"cmd":"modify", "label":"Modify object metadata", "param":"s3://BUCKET1/OBJECT", "func":cmd_modify, "argc":1}, + {"cmd":"mv", "label":"Move object", "param":"s3://BUCKET1/OBJECT1 s3://BUCKET2[/OBJECT2]", "func":cmd_mv, "argc":2}, + {"cmd":"setacl", "label":"Modify Access control list for Bucket or Files", "param":"s3://BUCKET[/OBJECT]", "func":cmd_setacl, "argc":1}, + + {"cmd":"setpolicy", "label":"Modify Bucket Policy", "param":"FILE s3://BUCKET", "func":cmd_setpolicy, "argc":2}, + {"cmd":"delpolicy", "label":"Delete Bucket Policy", "param":"s3://BUCKET", "func":cmd_delpolicy, "argc":1}, + {"cmd":"setcors", "label":"Modify Bucket CORS", "param":"FILE s3://BUCKET", "func":cmd_setcors, "argc":2}, + {"cmd":"delcors", "label":"Delete Bucket CORS", "param":"s3://BUCKET", "func":cmd_delcors, "argc":1}, + + {"cmd":"payer", "label":"Modify Bucket Requester Pays policy", "param":"s3://BUCKET", "func":cmd_set_payer, "argc":1}, + {"cmd":"multipart", "label":"Show multipart uploads", "param":"s3://BUCKET [Id]", "func":cmd_multipart, "argc":1}, + {"cmd":"abortmp", "label":"Abort a multipart upload", "param":"s3://BUCKET/OBJECT Id", "func":cmd_abort_multipart, "argc":2}, + + {"cmd":"listmp", "label":"List parts of a multipart upload", "param":"s3://BUCKET/OBJECT Id", "func":cmd_list_multipart, "argc":2}, + + {"cmd":"accesslog", "label":"Enable/disable bucket access logging", "param":"s3://BUCKET", "func":cmd_accesslog, "argc":1}, + {"cmd":"sign", "label":"Sign arbitrary string using the secret key", "param":"STRING-TO-SIGN", "func":cmd_sign, "argc":1}, + {"cmd":"signurl", "label":"Sign an S3 URL to provide limited public access with expiry", "param":"s3://BUCKET/OBJECT ", "func":cmd_signurl, "argc":2}, + {"cmd":"fixbucket", "label":"Fix invalid file names in a bucket", "param":"s3://BUCKET[/PREFIX]", "func":cmd_fixbucket, "argc":1}, + + ## Website commands + {"cmd":"ws-create", "label":"Create Website from bucket", "param":"s3://BUCKET", "func":cmd_website_create, "argc":1}, + {"cmd":"ws-delete", "label":"Delete Website", "param":"s3://BUCKET", "func":cmd_website_delete, "argc":1}, + {"cmd":"ws-info", "label":"Info about Website", "param":"s3://BUCKET", "func":cmd_website_info, "argc":1}, + + ## Lifecycle commands + {"cmd":"expire", "label":"Set or delete expiration rule for the bucket", "param":"s3://BUCKET", "func":cmd_expiration_set, "argc":1}, + {"cmd":"setlifecycle", "label":"Upload a lifecycle policy for the bucket", "param":"FILE s3://BUCKET", "func":cmd_setlifecycle, "argc":2}, + {"cmd":"getlifecycle", "label":"Get a lifecycle policy for the bucket", "param":"s3://BUCKET", "func":cmd_getlifecycle, "argc":1}, + {"cmd":"dellifecycle", "label":"Remove a lifecycle policy for the bucket", "param":"s3://BUCKET", "func":cmd_dellifecycle, "argc":1}, + + ## Notification commands + {"cmd":"setnotification", "label":"Upload a notification policy for the bucket", "param":"FILE s3://BUCKET", "func":cmd_setnotification, "argc":2}, + {"cmd":"getnotification", "label":"Get a notification policy for the bucket", "param":"s3://BUCKET", "func":cmd_getnotification, "argc":1}, + {"cmd":"delnotification", "label":"Remove a notification policy for the bucket", "param":"s3://BUCKET", "func":cmd_delnotification, "argc":1}, + + ## CloudFront commands + {"cmd":"cflist", "label":"List CloudFront distribution points", "param":"", "func":CfCmd.info, "argc":0}, + {"cmd":"cfinfo", "label":"Display CloudFront distribution point parameters", "param":"[cf://DIST_ID]", "func":CfCmd.info, "argc":0}, + {"cmd":"cfcreate", "label":"Create CloudFront distribution point", "param":"s3://BUCKET", "func":CfCmd.create, "argc":1}, + {"cmd":"cfdelete", "label":"Delete CloudFront distribution point", "param":"cf://DIST_ID", "func":CfCmd.delete, "argc":1}, + {"cmd":"cfmodify", "label":"Change CloudFront distribution point parameters", "param":"cf://DIST_ID", "func":CfCmd.modify, "argc":1}, + #{"cmd":"cfinval", "label":"Invalidate CloudFront objects", "param":"s3://BUCKET/OBJECT [s3://BUCKET/OBJECT ...]", "func":CfCmd.invalidate, "argc":1}, + {"cmd":"cfinvalinfo", "label":"Display CloudFront invalidation request(s) status", "param":"cf://DIST_ID[/INVAL_ID]", "func":CfCmd.invalinfo, "argc":1}, + ] + +def format_commands(progname, commands_list): + help = "Commands:\n" + for cmd in commands_list: + help += " %s\n %s %s %s\n" % (cmd["label"], progname, cmd["cmd"], cmd["param"]) + return help + + +def update_acl(s3, uri, seq_label=""): + cfg = Config() + something_changed = False + acl = s3.get_acl(uri) + debug(u"acl: %s - %r" % (uri, acl.grantees)) + if cfg.acl_public == True: + if acl.isAnonRead(): + info(u"%s: already Public, skipping %s" % (uri, seq_label)) + else: + acl.grantAnonRead() + something_changed = True + elif cfg.acl_public == False: # we explicitely check for False, because it could be None + if not acl.isAnonRead() and not acl.isAnonWrite(): + info(u"%s: already Private, skipping %s" % (uri, seq_label)) + else: + acl.revokeAnonRead() + acl.revokeAnonWrite() + something_changed = True + + # update acl with arguments + # grant first and revoke later, because revoke has priority + if cfg.acl_grants: + something_changed = True + for grant in cfg.acl_grants: + acl.grant(**grant) + + if cfg.acl_revokes: + something_changed = True + for revoke in cfg.acl_revokes: + acl.revoke(**revoke) + + if not something_changed: + return + + retsponse = s3.set_acl(uri, acl) + if retsponse['status'] == 200: + if cfg.acl_public in (True, False): + set_to_acl = cfg.acl_public and "Public" or "Private" + output(u"%s: ACL set to %s %s" % (uri, set_to_acl, seq_label)) + else: + output(u"%s: ACL updated" % uri) + +class OptionMimeType(Option): + def check_mimetype(self, opt, value): + if re.compile(r"^[a-z0-9]+/[a-z0-9+\.-]+(;.*)?$", re.IGNORECASE).match(value): + return value + raise OptionValueError("option %s: invalid MIME-Type format: %r" % (opt, value)) + +class OptionS3ACL(Option): + def check_s3acl(self, opt, value): + permissions = ('read', 'write', 'read_acp', 'write_acp', 'full_control', 'all') + try: + permission, grantee = re.compile(r"^(\w+):(.+)$", re.IGNORECASE).match(value).groups() + if not permission or not grantee: + raise OptionValueError("option %s: invalid S3 ACL format: %r" % (opt, value)) + if permission in permissions: + return { 'name' : grantee, 'permission' : permission.upper() } + else: + raise OptionValueError("option %s: invalid S3 ACL permission: %s (valid values: %s)" % + (opt, permission, ", ".join(permissions))) + except OptionValueError: + raise + except Exception: + raise OptionValueError("option %s: invalid S3 ACL format: %r" % (opt, value)) + +class OptionAll(OptionMimeType, OptionS3ACL): + TYPE_CHECKER = copy(Option.TYPE_CHECKER) + TYPE_CHECKER["mimetype"] = OptionMimeType.check_mimetype + TYPE_CHECKER["s3acl"] = OptionS3ACL.check_s3acl + TYPES = Option.TYPES + ("mimetype", "s3acl") + +class MyHelpFormatter(IndentedHelpFormatter): + def format_epilog(self, epilog): + if epilog: + return "\n" + epilog + "\n" + else: + return "" + +def main(): + cfg = Config() + commands_list = get_commands_list() + commands = {} + + ## Populate "commands" from "commands_list" + for cmd in commands_list: + if 'cmd' in cmd: + commands[cmd['cmd']] = cmd + + optparser = OptionParser(option_class=OptionAll, formatter=MyHelpFormatter()) + #optparser.disable_interspersed_args() + + autodetected_encoding = locale.getpreferredencoding() or "UTF-8" + + config_file = None + if os.getenv("S3CMD_CONFIG"): + config_file = unicodise_s(os.getenv("S3CMD_CONFIG"), + autodetected_encoding) + elif os.name == "nt" and os.getenv("USERPROFILE"): + config_file = os.path.join( + unicodise_s(os.getenv("USERPROFILE"), autodetected_encoding), + os.getenv("APPDATA") + and unicodise_s(os.getenv("APPDATA"), autodetected_encoding) + or 'Application Data', + "s3cmd.ini") + else: + from os.path import expanduser + config_file = os.path.join(expanduser("~"), ".s3cfg") + + optparser.set_defaults(config = config_file) + + optparser.add_option( "--configure", dest="run_configure", action="store_true", help="Invoke interactive (re)configuration tool. Optionally use as '--configure s3://some-bucket' to test access to a specific bucket instead of attempting to list them all.") + optparser.add_option("-c", "--config", dest="config", metavar="FILE", help="Config file name. Defaults to $HOME/.s3cfg") + optparser.add_option( "--dump-config", dest="dump_config", action="store_true", help="Dump current configuration after parsing config files and command line options and exit.") + optparser.add_option( "--access_key", dest="access_key", help="AWS Access Key") + optparser.add_option( "--secret_key", dest="secret_key", help="AWS Secret Key") + optparser.add_option( "--access_token", dest="access_token", help="AWS Access Token") + + optparser.add_option("-n", "--dry-run", dest="dry_run", action="store_true", help="Only show what should be uploaded or downloaded but don't actually do it. May still perform S3 requests to get bucket listings and other information though (only for file transfer commands)") + + optparser.add_option("-s", "--ssl", dest="use_https", action="store_true", help="Use HTTPS connection when communicating with S3. (default)") + optparser.add_option( "--no-ssl", dest="use_https", action="store_false", help="Don't use HTTPS.") + optparser.add_option("-e", "--encrypt", dest="encrypt", action="store_true", help="Encrypt files before uploading to S3.") + optparser.add_option( "--no-encrypt", dest="encrypt", action="store_false", help="Don't encrypt files.") + optparser.add_option("-f", "--force", dest="force", action="store_true", help="Force overwrite and other dangerous operations.") + optparser.add_option( "--continue", dest="get_continue", action="store_true", help="Continue getting a partially downloaded file (only for [get] command).") + optparser.add_option( "--continue-put", dest="put_continue", action="store_true", help="Continue uploading partially uploaded files or multipart upload parts. Restarts parts/files that don't have matching size and md5. Skips files/parts that do. Note: md5sum checks are not always sufficient to check (part) file equality. Enable this at your own risk.") + optparser.add_option( "--upload-id", dest="upload_id", help="UploadId for Multipart Upload, in case you want continue an existing upload (equivalent to --continue-put) and there are multiple partial uploads. Use s3cmd multipart [URI] to see what UploadIds are associated with the given URI.") + optparser.add_option( "--skip-existing", dest="skip_existing", action="store_true", help="Skip over files that exist at the destination (only for [get] and [sync] commands).") + optparser.add_option("-r", "--recursive", dest="recursive", action="store_true", help="Recursive upload, download or removal.") + optparser.add_option( "--check-md5", dest="check_md5", action="store_true", help="Check MD5 sums when comparing files for [sync]. (default)") + optparser.add_option( "--no-check-md5", dest="check_md5", action="store_false", help="Do not check MD5 sums when comparing files for [sync]. Only size will be compared. May significantly speed up transfer but may also miss some changed files.") + optparser.add_option("-P", "--acl-public", dest="acl_public", action="store_true", help="Store objects with ACL allowing read for anyone.") + optparser.add_option( "--acl-private", dest="acl_public", action="store_false", help="Store objects with default ACL allowing access for you only.") + optparser.add_option( "--acl-grant", dest="acl_grants", type="s3acl", action="append", metavar="PERMISSION:EMAIL or USER_CANONICAL_ID", help="Grant stated permission to a given amazon user. Permission is one of: read, write, read_acp, write_acp, full_control, all") + optparser.add_option( "--acl-revoke", dest="acl_revokes", type="s3acl", action="append", metavar="PERMISSION:USER_CANONICAL_ID", help="Revoke stated permission for a given amazon user. Permission is one of: read, write, read_acp, write_acp, full_control, all") + + optparser.add_option("-D", "--restore-days", dest="restore_days", action="store", help="Number of days to keep restored file available (only for 'restore' command). Default is 1 day.", metavar="NUM") + optparser.add_option( "--restore-priority", dest="restore_priority", action="store", choices=['standard', 'expedited', 'bulk'], help="Priority for restoring files from S3 Glacier (only for 'restore' command). Choices available: bulk, standard, expedited") + + optparser.add_option( "--delete-removed", dest="delete_removed", action="store_true", help="Delete destination objects with no corresponding source file [sync]") + optparser.add_option( "--no-delete-removed", dest="delete_removed", action="store_false", help="Don't delete destination objects [sync]") + optparser.add_option( "--delete-after", dest="delete_after", action="store_true", help="Perform deletes AFTER new uploads when delete-removed is enabled [sync]") + optparser.add_option( "--delay-updates", dest="delay_updates", action="store_true", help="*OBSOLETE* Put all updated files into place at end [sync]") # OBSOLETE + optparser.add_option( "--max-delete", dest="max_delete", action="store", help="Do not delete more than NUM files. [del] and [sync]", metavar="NUM") + optparser.add_option( "--limit", dest="limit", action="store", help="Limit number of objects returned in the response body (only for [ls] and [la] commands)", metavar="NUM") + optparser.add_option( "--add-destination", dest="additional_destinations", action="append", help="Additional destination for parallel uploads, in addition to last arg. May be repeated.") + optparser.add_option( "--delete-after-fetch", dest="delete_after_fetch", action="store_true", help="Delete remote objects after fetching to local file (only for [get] and [sync] commands).") + optparser.add_option("-p", "--preserve", dest="preserve_attrs", action="store_true", help="Preserve filesystem attributes (mode, ownership, timestamps). Default for [sync] command.") + optparser.add_option( "--no-preserve", dest="preserve_attrs", action="store_false", help="Don't store FS attributes") + optparser.add_option( "--exclude", dest="exclude", action="append", metavar="GLOB", help="Filenames and paths matching GLOB will be excluded from sync") + optparser.add_option( "--exclude-from", dest="exclude_from", action="append", metavar="FILE", help="Read --exclude GLOBs from FILE") + optparser.add_option( "--rexclude", dest="rexclude", action="append", metavar="REGEXP", help="Filenames and paths matching REGEXP (regular expression) will be excluded from sync") + optparser.add_option( "--rexclude-from", dest="rexclude_from", action="append", metavar="FILE", help="Read --rexclude REGEXPs from FILE") + optparser.add_option( "--include", dest="include", action="append", metavar="GLOB", help="Filenames and paths matching GLOB will be included even if previously excluded by one of --(r)exclude(-from) patterns") + optparser.add_option( "--include-from", dest="include_from", action="append", metavar="FILE", help="Read --include GLOBs from FILE") + optparser.add_option( "--rinclude", dest="rinclude", action="append", metavar="REGEXP", help="Same as --include but uses REGEXP (regular expression) instead of GLOB") + optparser.add_option( "--rinclude-from", dest="rinclude_from", action="append", metavar="FILE", help="Read --rinclude REGEXPs from FILE") + + optparser.add_option( "--files-from", dest="files_from", action="append", metavar="FILE", help="Read list of source-file names from FILE. Use - to read from stdin.") + optparser.add_option( "--region", "--bucket-location", metavar="REGION", dest="bucket_location", help="Region to create bucket in. As of now the regions are: us-east-1, us-west-1, us-west-2, eu-west-1, eu-central-1, ap-northeast-1, ap-southeast-1, ap-southeast-2, sa-east-1") + optparser.add_option( "--host", metavar="HOSTNAME", dest="host_base", help="HOSTNAME:PORT for S3 endpoint (default: %s, alternatives such as s3-eu-west-1.amazonaws.com). You should also set --host-bucket." % (cfg.host_base)) + optparser.add_option( "--host-bucket", dest="host_bucket", help="DNS-style bucket+hostname:port template for accessing a bucket (default: %s)" % (cfg.host_bucket)) + optparser.add_option( "--reduced-redundancy", "--rr", dest="reduced_redundancy", action="store_true", help="Store object with 'Reduced redundancy'. Lower per-GB price. [put, cp, mv]") + optparser.add_option( "--no-reduced-redundancy", "--no-rr", dest="reduced_redundancy", action="store_false", help="Store object without 'Reduced redundancy'. Higher per-GB price. [put, cp, mv]") + optparser.add_option( "--storage-class", dest="storage_class", action="store", metavar="CLASS", help="Store object with specified CLASS (STANDARD, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, GLACIER or DEEP_ARCHIVE). [put, cp, mv]") + optparser.add_option( "--access-logging-target-prefix", dest="log_target_prefix", help="Target prefix for access logs (S3 URI) (for [cfmodify] and [accesslog] commands)") + optparser.add_option( "--no-access-logging", dest="log_target_prefix", action="store_false", help="Disable access logging (for [cfmodify] and [accesslog] commands)") + + optparser.add_option( "--default-mime-type", dest="default_mime_type", type="mimetype", action="store", help="Default MIME-type for stored objects. Application default is binary/octet-stream.") + optparser.add_option("-M", "--guess-mime-type", dest="guess_mime_type", action="store_true", help="Guess MIME-type of files by their extension or mime magic. Fall back to default MIME-Type as specified by --default-mime-type option") + optparser.add_option( "--no-guess-mime-type", dest="guess_mime_type", action="store_false", help="Don't guess MIME-type and use the default type instead.") + optparser.add_option( "--no-mime-magic", dest="use_mime_magic", action="store_false", help="Don't use mime magic when guessing MIME-type.") + optparser.add_option("-m", "--mime-type", dest="mime_type", type="mimetype", metavar="MIME/TYPE", help="Force MIME-type. Override both --default-mime-type and --guess-mime-type.") + + optparser.add_option( "--add-header", dest="add_header", action="append", metavar="NAME:VALUE", help="Add a given HTTP header to the upload request. Can be used multiple times. For instance set 'Expires' or 'Cache-Control' headers (or both) using this option.") + optparser.add_option( "--remove-header", dest="remove_headers", action="append", metavar="NAME", help="Remove a given HTTP header. Can be used multiple times. For instance, remove 'Expires' or 'Cache-Control' headers (or both) using this option. [modify]") + + optparser.add_option( "--server-side-encryption", dest="server_side_encryption", action="store_true", help="Specifies that server-side encryption will be used when putting objects. [put, sync, cp, modify]") + optparser.add_option( "--server-side-encryption-kms-id", dest="kms_key", action="store", help="Specifies the key id used for server-side encryption with AWS KMS-Managed Keys (SSE-KMS) when putting objects. [put, sync, cp, modify]") + + optparser.add_option( "--encoding", dest="encoding", metavar="ENCODING", help="Override autodetected terminal and filesystem encoding (character set). Autodetected: %s" % autodetected_encoding) + optparser.add_option( "--add-encoding-exts", dest="add_encoding_exts", metavar="EXTENSIONs", help="Add encoding to these comma delimited extensions i.e. (css,js,html) when uploading to S3 )") + optparser.add_option( "--verbatim", dest="urlencoding_mode", action="store_const", const="verbatim", help="Use the S3 name as given on the command line. No pre-processing, encoding, etc. Use with caution!") + + optparser.add_option( "--disable-multipart", dest="enable_multipart", action="store_false", help="Disable multipart upload on files bigger than --multipart-chunk-size-mb") + optparser.add_option( "--multipart-chunk-size-mb", dest="multipart_chunk_size_mb", type="int", action="store", metavar="SIZE", help="Size of each chunk of a multipart upload. Files bigger than SIZE are automatically uploaded as multithreaded-multipart, smaller files are uploaded using the traditional method. SIZE is in Mega-Bytes, default chunk size is 15MB, minimum allowed chunk size is 5MB, maximum is 5GB.") + + optparser.add_option( "--list-md5", dest="list_md5", action="store_true", help="Include MD5 sums in bucket listings (only for 'ls' command).") + + optparser.add_option( "--list-allow-unordered", dest="list_allow_unordered", action="store_true", help="Not an AWS standard. Allow the listing results to be returned in unsorted order. This may be faster when listing very large buckets.") + + optparser.add_option("-H", "--human-readable-sizes", dest="human_readable_sizes", action="store_true", help="Print sizes in human readable form (eg 1kB instead of 1234).") + + optparser.add_option( "--ws-index", dest="website_index", action="store", help="Name of index-document (only for [ws-create] command)") + optparser.add_option( "--ws-error", dest="website_error", action="store", help="Name of error-document (only for [ws-create] command)") + + optparser.add_option( "--expiry-date", dest="expiry_date", action="store", help="Indicates when the expiration rule takes effect. (only for [expire] command)") + optparser.add_option( "--expiry-days", dest="expiry_days", action="store", help="Indicates the number of days after object creation the expiration rule takes effect. (only for [expire] command)") + optparser.add_option( "--expiry-prefix", dest="expiry_prefix", action="store", help="Identifying one or more objects with the prefix to which the expiration rule applies. (only for [expire] command)") + + optparser.add_option( "--progress", dest="progress_meter", action="store_true", help="Display progress meter (default on TTY).") + optparser.add_option( "--no-progress", dest="progress_meter", action="store_false", help="Don't display progress meter (default on non-TTY).") + optparser.add_option( "--stats", dest="stats", action="store_true", help="Give some file-transfer stats.") + optparser.add_option( "--enable", dest="enable", action="store_true", help="Enable given CloudFront distribution (only for [cfmodify] command)") + optparser.add_option( "--disable", dest="enable", action="store_false", help="Disable given CloudFront distribution (only for [cfmodify] command)") + optparser.add_option( "--cf-invalidate", dest="invalidate_on_cf", action="store_true", help="Invalidate the uploaded filed in CloudFront. Also see [cfinval] command.") + # joseprio: adding options to invalidate the default index and the default + # index root + optparser.add_option( "--cf-invalidate-default-index", dest="invalidate_default_index_on_cf", action="store_true", help="When using Custom Origin and S3 static website, invalidate the default index file.") + optparser.add_option( "--cf-no-invalidate-default-index-root", dest="invalidate_default_index_root_on_cf", action="store_false", help="When using Custom Origin and S3 static website, don't invalidate the path to the default index file.") + optparser.add_option( "--cf-add-cname", dest="cf_cnames_add", action="append", metavar="CNAME", help="Add given CNAME to a CloudFront distribution (only for [cfcreate] and [cfmodify] commands)") + optparser.add_option( "--cf-remove-cname", dest="cf_cnames_remove", action="append", metavar="CNAME", help="Remove given CNAME from a CloudFront distribution (only for [cfmodify] command)") + optparser.add_option( "--cf-comment", dest="cf_comment", action="store", metavar="COMMENT", help="Set COMMENT for a given CloudFront distribution (only for [cfcreate] and [cfmodify] commands)") + optparser.add_option( "--cf-default-root-object", dest="cf_default_root_object", action="store", metavar="DEFAULT_ROOT_OBJECT", help="Set the default root object to return when no object is specified in the URL. Use a relative path, i.e. default/index.html instead of /default/index.html or s3://bucket/default/index.html (only for [cfcreate] and [cfmodify] commands)") + optparser.add_option("-v", "--verbose", dest="verbosity", action="store_const", const=logging.INFO, help="Enable verbose output.") + optparser.add_option("-d", "--debug", dest="verbosity", action="store_const", const=logging.DEBUG, help="Enable debug output.") + optparser.add_option( "--version", dest="show_version", action="store_true", help="Show s3cmd version (%s) and exit." % (PkgInfo.version)) + optparser.add_option("-F", "--follow-symlinks", dest="follow_symlinks", action="store_true", default=False, help="Follow symbolic links as if they are regular files") + optparser.add_option( "--cache-file", dest="cache_file", action="store", default="", metavar="FILE", help="Cache FILE containing local source MD5 values") + optparser.add_option("-q", "--quiet", dest="quiet", action="store_true", default=False, help="Silence output on stdout") + optparser.add_option( "--ca-certs", dest="ca_certs_file", action="store", default=None, help="Path to SSL CA certificate FILE (instead of system default)") + optparser.add_option( "--ssl-cert", dest="ssl_client_cert_file", action="store", default=None, help="Path to client own SSL certificate CRT_FILE") + optparser.add_option( "--ssl-key", dest="ssl_client_key_file", action="store", default=None, help="Path to client own SSL certificate private key KEY_FILE") + optparser.add_option( "--check-certificate", dest="check_ssl_certificate", action="store_true", help="Check SSL certificate validity") + optparser.add_option( "--no-check-certificate", dest="check_ssl_certificate", action="store_false", help="Do not check SSL certificate validity") + optparser.add_option( "--check-hostname", dest="check_ssl_hostname", action="store_true", help="Check SSL certificate hostname validity") + optparser.add_option( "--no-check-hostname", dest="check_ssl_hostname", action="store_false", help="Do not check SSL certificate hostname validity") + optparser.add_option( "--signature-v2", dest="signature_v2", action="store_true", help="Use AWS Signature version 2 instead of newer signature methods. Helpful for S3-like systems that don't have AWS Signature v4 yet.") + optparser.add_option( "--limit-rate", dest="limitrate", action="store", type="string", help="Limit the upload or download speed to amount bytes per second. Amount may be expressed in bytes, kilobytes with the k suffix, or megabytes with the m suffix") + optparser.add_option( "--no-connection-pooling", dest="connection_pooling", action="store_false", help="Disable connection re-use") + optparser.add_option( "--requester-pays", dest="requester_pays", action="store_true", help="Set the REQUESTER PAYS flag for operations") + optparser.add_option("-l", "--long-listing", dest="long_listing", action="store_true", help="Produce long listing [ls]") + optparser.add_option( "--stop-on-error", dest="stop_on_error", action="store_true", help="stop if error in transfer") + optparser.add_option( "--content-disposition", dest="content_disposition", action="store", help="Provide a Content-Disposition for signed URLs, e.g., \"inline; filename=myvideo.mp4\"") + optparser.add_option( "--content-type", dest="content_type", action="store", help="Provide a Content-Type for signed URLs, e.g., \"video/mp4\"") + + optparser.set_usage(optparser.usage + " COMMAND [parameters]") + optparser.set_description('S3cmd is a tool for managing objects in '+ + 'Amazon S3 storage. It allows for making and removing '+ + '"buckets" and uploading, downloading and removing '+ + '"objects" from these buckets.') + optparser.epilog = format_commands(optparser.get_prog_name(), commands_list) + optparser.epilog += ("\nFor more information, updates and news, visit the s3cmd website:\n%s\n" % PkgInfo.url) + + (options, args) = optparser.parse_args() + + ## Some mucking with logging levels to enable + ## debugging/verbose output for config file parser on request + logging.basicConfig(level=options.verbosity or Config().verbosity, + format='%(levelname)s: %(message)s', + stream = sys.stderr) + + if options.show_version: + output(u"s3cmd version %s" % PkgInfo.version) + sys.exit(EX_OK) + debug(u"s3cmd version %s" % PkgInfo.version) + + if options.quiet: + try: + f = open("/dev/null", "w") + sys.stdout = f + except IOError: + warning(u"Unable to open /dev/null: --quiet disabled.") + + ## Now finally parse the config file + if not options.config: + error(u"Can't find a config file. Please use --config option.") + sys.exit(EX_CONFIG) + + try: + cfg = Config(options.config, options.access_key, options.secret_key, options.access_token) + except ValueError as exc: + raise ParameterError(unicode(exc)) + except IOError as e: + if options.run_configure: + cfg = Config() + else: + error(u"%s: %s" % (options.config, e.strerror)) + error(u"Configuration file not available.") + error(u"Consider using --configure parameter to create one.") + sys.exit(EX_CONFIG) + + # allow commandline verbosity config to override config file + if options.verbosity is not None: + cfg.verbosity = options.verbosity + logging.root.setLevel(cfg.verbosity) + ## Unsupported features on Win32 platform + if os.name == "nt": + if cfg.preserve_attrs: + error(u"Option --preserve is not yet supported on MS Windows platform. Assuming --no-preserve.") + cfg.preserve_attrs = False + if cfg.progress_meter: + error(u"Option --progress is not yet supported on MS Windows platform. Assuming --no-progress.") + cfg.progress_meter = False + + ## Pre-process --add-header's and put them to Config.extra_headers SortedDict() + if options.add_header: + for hdr in options.add_header: + try: + key, val = unicodise_s(hdr).split(":", 1) + except ValueError: + raise ParameterError("Invalid header format: %s" % unicodise_s(hdr)) + # key char restrictions of the http headers name specification + key_inval = re.sub(r"[a-zA-Z0-9\-.!#$%&*+^_|]", "", key) + if key_inval: + key_inval = key_inval.replace(" ", "") + key_inval = key_inval.replace("\t", "") + raise ParameterError("Invalid character(s) in header name '%s'" + ": \"%s\"" % (key, key_inval)) + debug(u"Updating Config.Config extra_headers[%s] -> %s" % + (key.strip().lower(), val.strip())) + cfg.extra_headers[key.strip().lower()] = val.strip() + + # Process --remove-header + if options.remove_headers: + cfg.remove_headers = options.remove_headers + + ## --acl-grant/--acl-revoke arguments are pre-parsed by OptionS3ACL() + if options.acl_grants: + for grant in options.acl_grants: + cfg.acl_grants.append(grant) + + if options.acl_revokes: + for grant in options.acl_revokes: + cfg.acl_revokes.append(grant) + + ## Process --(no-)check-md5 + if options.check_md5 == False: + if "md5" in cfg.sync_checks: + cfg.sync_checks.remove("md5") + if "md5" in cfg.preserve_attrs_list: + cfg.preserve_attrs_list.remove("md5") + elif options.check_md5 == True: + if "md5" not in cfg.sync_checks: + cfg.sync_checks.append("md5") + if "md5" not in cfg.preserve_attrs_list: + cfg.preserve_attrs_list.append("md5") + + ## Update Config with other parameters + for option in cfg.option_list(): + try: + value = getattr(options, option) + if value != None: + if type(value) == type(b''): + value = unicodise_s(value) + debug(u"Updating Config.Config %s -> %s" % (option, value)) + cfg.update_option(option, value) + except AttributeError: + ## Some Config() options are not settable from command line + pass + + ## Special handling for tri-state options (True, False, None) + cfg.update_option("enable", options.enable) + if options.acl_public is not None: + cfg.update_option("acl_public", options.acl_public) + + ## Check multipart chunk constraints + if cfg.multipart_chunk_size_mb < MultiPartUpload.MIN_CHUNK_SIZE_MB: + raise ParameterError("Chunk size %d MB is too small, must be >= %d MB. Please adjust --multipart-chunk-size-mb" % (cfg.multipart_chunk_size_mb, MultiPartUpload.MIN_CHUNK_SIZE_MB)) + if cfg.multipart_chunk_size_mb > MultiPartUpload.MAX_CHUNK_SIZE_MB: + raise ParameterError("Chunk size %d MB is too large, must be <= %d MB. Please adjust --multipart-chunk-size-mb" % (cfg.multipart_chunk_size_mb, MultiPartUpload.MAX_CHUNK_SIZE_MB)) + + ## If an UploadId was provided, set put_continue True + if options.upload_id: + cfg.upload_id = options.upload_id + cfg.put_continue = True + + if cfg.upload_id and not cfg.multipart_chunk_size_mb: + raise ParameterError("Must have --multipart-chunk-size-mb if using --put-continue or --upload-id") + + ## CloudFront's cf_enable and Config's enable share the same --enable switch + options.cf_enable = options.enable + + ## CloudFront's cf_logging and Config's log_target_prefix share the same --log-target-prefix switch + options.cf_logging = options.log_target_prefix + + ## Update CloudFront options if some were set + for option in CfCmd.options.option_list(): + try: + value = getattr(options, option) + if value != None: + if type(value) == type(b''): + value = unicodise_s(value) + if value != None: + debug(u"Updating CloudFront.Cmd %s -> %s" % (option, value)) + CfCmd.options.update_option(option, value) + except AttributeError: + ## Some CloudFront.Cmd.Options() options are not settable from command line + pass + + if options.additional_destinations: + cfg.additional_destinations = options.additional_destinations + if options.files_from: + cfg.files_from = options.files_from + + ## Set output and filesystem encoding for printing out filenames. + try: + # Support for python3 + # That don't need codecs if output is the + # encoding of the system, but just in case, still use it. + # For that, we need to use directly the binary buffer + # of stdout/stderr + sys.stdout = codecs.getwriter(cfg.encoding)(sys.stdout.buffer, "replace") + sys.stderr = codecs.getwriter(cfg.encoding)(sys.stderr.buffer, "replace") + # getwriter with create an "IObuffer" that have not the encoding attribute + # better to add it to not break some functions like "input". + sys.stdout.encoding = cfg.encoding + sys.stderr.encoding = cfg.encoding + except AttributeError: + sys.stdout = codecs.getwriter(cfg.encoding)(sys.stdout, "replace") + sys.stderr = codecs.getwriter(cfg.encoding)(sys.stderr, "replace") + + ## Process --exclude and --exclude-from + patterns_list, patterns_textual = process_patterns(options.exclude, options.exclude_from, is_glob = True, option_txt = "exclude") + cfg.exclude.extend(patterns_list) + cfg.debug_exclude.update(patterns_textual) + + ## Process --rexclude and --rexclude-from + patterns_list, patterns_textual = process_patterns(options.rexclude, options.rexclude_from, is_glob = False, option_txt = "rexclude") + cfg.exclude.extend(patterns_list) + cfg.debug_exclude.update(patterns_textual) + + ## Process --include and --include-from + patterns_list, patterns_textual = process_patterns(options.include, options.include_from, is_glob = True, option_txt = "include") + cfg.include.extend(patterns_list) + cfg.debug_include.update(patterns_textual) + + ## Process --rinclude and --rinclude-from + patterns_list, patterns_textual = process_patterns(options.rinclude, options.rinclude_from, is_glob = False, option_txt = "rinclude") + cfg.include.extend(patterns_list) + cfg.debug_include.update(patterns_textual) + + ## Set socket read()/write() timeout + socket.setdefaulttimeout(cfg.socket_timeout) + + if cfg.encrypt and cfg.gpg_passphrase == "": + error(u"Encryption requested but no passphrase set in config file.") + error(u"Please re-run 's3cmd --configure' and supply it.") + sys.exit(EX_CONFIG) + + if options.dump_config: + cfg.dump_config(sys.stdout) + sys.exit(EX_OK) + + if options.run_configure: + # 'args' may contain the test-bucket URI + run_configure(options.config, args) + sys.exit(EX_OK) + + ## set config if stop_on_error is set + if options.stop_on_error: + cfg.stop_on_error = options.stop_on_error + + if options.content_disposition: + cfg.content_disposition = options.content_disposition + + if options.content_type: + cfg.content_type = options.content_type + + if len(args) < 1: + optparser.print_help() + sys.exit(EX_USAGE) + + ## Unicodise all remaining arguments: + args = [unicodise(arg) for arg in args] + + command = args.pop(0) + try: + debug(u"Command: %s" % commands[command]["cmd"]) + ## We must do this lookup in extra step to + ## avoid catching all KeyError exceptions + ## from inner functions. + cmd_func = commands[command]["func"] + except KeyError as e: + error(u"Invalid command: %s", command) + sys.exit(EX_USAGE) + + if len(args) < commands[command]["argc"]: + error(u"Not enough parameters for command '%s'" % command) + sys.exit(EX_USAGE) + + rc = cmd_func(args) + if rc is None: # if we missed any cmd_*() returns + rc = EX_GENERAL + return rc + +def report_exception(e, msg=u''): + alert_header = u""" +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + An unexpected error has occurred. + Please try reproducing the error using + the latest s3cmd code from the git master + branch found at: + https://github.com/s3tools/s3cmd + and have a look at the known issues list: + https://github.com/s3tools/s3cmd/wiki/Common-known-issues-and-their-solutions-(FAQ) + If the error persists, please report the + %s (removing any private + info as necessary) to: + s3tools-bugs@lists.sourceforge.net%s +!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +""" + sys.stderr.write(alert_header % (u"following lines", u"\n\n" + msg)) + tb = traceback.format_exc() + try: + s = u' '.join([unicodise(a) for a in sys.argv]) + except NameError: + # Error happened before Utils module was yet imported to provide + # unicodise + try: + s = u' '.join([(a) for a in sys.argv]) + except UnicodeDecodeError: + s = u'[encoding safe] ' + u' '.join([('%r'%a) for a in sys.argv]) + sys.stderr.write(u"Invoked as: %s\n" % s) + + e_class = str(e.__class__) + e_class = e_class[e_class.rfind(".")+1 : -2] + try: + sys.stderr.write(u"Problem: %s: %s\n" % (e_class, e)) + except UnicodeDecodeError: + sys.stderr.write(u"Problem: [encoding safe] %r: %r\n" + % (e_class, e)) + try: + sys.stderr.write(u"S3cmd: %s\n" % PkgInfo.version) + except NameError: + sys.stderr.write(u"S3cmd: unknown version." + "Module import problem?\n") + sys.stderr.write(u"python: %s\n" % sys.version) + try: + sys.stderr.write(u"environment LANG=%s\n" + % unicodise_s(os.getenv("LANG", "NOTSET"), + 'ascii')) + except NameError: + # Error happened before Utils module was yet imported to provide + # unicodise + sys.stderr.write(u"environment LANG=%s\n" + % os.getenv("LANG", "NOTSET")) + sys.stderr.write(u"\n") + if type(tb) == unicode: + sys.stderr.write(tb) + else: + sys.stderr.write(unicode(tb, errors="replace")) + + if type(e) == ImportError: + sys.stderr.write("\n") + sys.stderr.write("Your sys.path contains these entries:\n") + for path in sys.path: + sys.stderr.write(u"\t%s\n" % path) + sys.stderr.write("Now the question is where have the s3cmd modules" + " been installed?\n") + + sys.stderr.write(alert_header % (u"above lines", u"")) + +if __name__ == '__main__': + try: + ## Our modules + ## Keep them in try/except block to + ## detect any syntax errors in there + from S3.ExitCodes import * + from S3.Exceptions import * + from S3 import PkgInfo + from S3.S3 import S3 + from S3.Config import Config + from S3.SortedDict import SortedDict + from S3.FileDict import FileDict + from S3.S3Uri import S3Uri + from S3 import Utils + from S3 import Crypto + from S3.BaseUtils import (formatDateTime, getPrettyFromXml, + encode_to_s3, decode_from_s3) + from S3.Utils import (formatSize, unicodise_safe, unicodise_s, + unicodise, deunicodise, replace_nonprintables) + from S3.Progress import Progress, StatsInfo + from S3.CloudFront import Cmd as CfCmd + from S3.CloudFront import CloudFront + from S3.FileLists import * + from S3.MultiPart import MultiPartUpload + except Exception as e: + report_exception(e, "Error loading some components of s3cmd (Import Error)") + # 1 = EX_GENERAL but be safe in that situation + sys.exit(1) + + try: + rc = main() + sys.exit(rc) + + except ImportError as e: + report_exception(e) + sys.exit(EX_GENERAL) + + except (ParameterError, InvalidFileError) as e: + error(u"Parameter problem: %s" % e) + sys.exit(EX_USAGE) + + except (S3DownloadError, S3UploadError, S3RequestError) as e: + error(u"S3 Temporary Error: %s. Please try again later." % e) + sys.exit(EX_TEMPFAIL) + + except S3Error as e: + error(u"S3 error: %s" % e) + sys.exit(e.get_error_code()) + + except (S3Exception, S3ResponseError, CloudFrontError) as e: + report_exception(e) + sys.exit(EX_SOFTWARE) + + except SystemExit as e: + sys.exit(e.code) + + except KeyboardInterrupt: + sys.stderr.write("See ya!\n") + sys.exit(EX_BREAK) + + except (S3SSLError, S3SSLCertificateError) as e: + # SSLError is a subtype of IOError + error("SSL certificate verification failure: %s" % e) + sys.exit(EX_ACCESSDENIED) + + except ConnectionRefusedError as e: + error(e) + sys.exit(EX_CONNECTIONREFUSED) + # typically encountered error is: + # ERROR: [Errno 111] Connection refused + + except socket.gaierror as e: + # gaierror is a subset of IOError + # typically encountered error is: + # gaierror: [Errno -2] Name or service not known + error(e) + error("Connection Error: Error resolving a server hostname.\n" + "Please check the servers address specified in 'host_base', 'host_bucket', 'cloudfront_host', 'website_endpoint'") + sys.exit(EX_IOERR) + + except IOError as e: + if e.errno == errno.ECONNREFUSED: + # Python2 does not have ConnectionRefusedError + error(e) + sys.exit(EX_CONNECTIONREFUSED) + + if e.errno == errno.EPIPE: + # Fail silently on SIGPIPE. This likely means we wrote to a closed + # pipe and user does not care for any more output. + sys.exit(EX_IOERR) + + report_exception(e) + sys.exit(EX_IOERR) + + except OSError as e: + error(e) + sys.exit(EX_OSERR) + + except MemoryError: + msg = """ +MemoryError! You have exceeded the amount of memory available for this process. +This usually occurs when syncing >750,000 files on a 32-bit python instance. +The solutions to this are: +1) sync several smaller subtrees; or +2) use a 64-bit python on a 64-bit OS with >8GB RAM + """ + sys.stderr.write(msg) + sys.exit(EX_OSERR) + + except UnicodeEncodeError as e: + lang = unicodise_s(os.getenv("LANG", "NOTSET"), 'ascii') + msg = """ +You have encountered a UnicodeEncodeError. Your environment +variable LANG=%s may not specify a Unicode encoding (e.g. UTF-8). +Please set LANG=en_US.UTF-8 or similar in your environment before +invoking s3cmd. + """ % lang + report_exception(e, msg) + sys.exit(EX_GENERAL) + + except Exception as e: + report_exception(e) + sys.exit(EX_GENERAL) + +# vim:et:ts=4:sts=4:ai diff --git a/csharp/App/Backend/db.sqlite b/csharp/App/Backend/db.sqlite index f209c953649fbad8c5ac5889e35f1c2ae6bb3dfb..fa9af84f702965f6cb03c3629a652e3685106a05 100644 GIT binary patch delta 111758 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 delta 115185 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 F{|EnD>`VXv From b1c6aeb9abec40adae7620b9392b700ff11a2c0a Mon Sep 17 00:00:00 2001 From: Kim Date: Thu, 16 Mar 2023 12:49:54 +0100 Subject: [PATCH 2/2] made python s3cmd the standart across all os --- .../Backend/DataTypes/Methods/Installation.cs | 20 ++----------------- 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/csharp/App/Backend/DataTypes/Methods/Installation.cs b/csharp/App/Backend/DataTypes/Methods/Installation.cs index 30d28a038..3ac08bdb2 100644 --- a/csharp/App/Backend/DataTypes/Methods/Installation.cs +++ b/csharp/App/Backend/DataTypes/Methods/Installation.cs @@ -17,22 +17,7 @@ public static class InstallationMethods //secret 55MAqyO_FqUmh7O64VIO0egq50ERn_WIAWuc2QC44QU const String apiKey = "EXO44d2979c8e570eae81ead564"; const String salt = "3e5b3069-214a-43ee-8d85-57d72000c19d"; - if (Environment.OSVersion.Platform != PlatformID.Unix) - { - var cmd = Cli - .Wrap("s3cmd") - .WithArguments(new[] - { - "signurl", $"s3://{installation.Id}-{salt}", validity.TotalSeconds.ToString(), "--access_key", - apiKey - }); - - var x = await cmd.ExecuteBufferedAsync(); - installation.S3Url = x.StandardOutput.Replace("\n", "").Replace(" ", ""); - } - else - { - var cmd = Cli + var cmd = Cli .Wrap("python3") .WithArguments(new[] { @@ -41,9 +26,8 @@ public static class InstallationMethods }); var x = await cmd.ExecuteBufferedAsync(); installation.S3Url = x.StandardOutput.Replace("\n", "").Replace(" ", ""); - } - Console.WriteLine(installation.S3Url); + Console.WriteLine(installation.S3Url); Db.Update(installation); }