+
Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bigstore/backends/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
pass

class S3Backend(object):
def __init__(self, bucket_name, key=None, secret=None, profile_name=None):
def __init__(self, bucket_name, key=None, secret=None, profile_name=None, endpoint_url=None):
self.bucket = bucket_name
self.session = boto3.Session(aws_access_key_id=key, aws_secret_access_key=secret, profile_name=profile_name)
self.s3_client = self.session.client('s3')
self.s3_client = self.session.client('s3', endpoint_url=endpoint_url)

@property
def name(self):
Expand Down
6 changes: 5 additions & 1 deletion bigstore/bigstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ def backend_for_name(name):
access_key_id = config('bigstore.s3.key')
secret_access_key = config('bigstore.s3.secret')
profile_name = config('bigstore.s3.profile-name')
return S3Backend(bucket_name, access_key_id, secret_access_key, profile_name)
endpoint_url = config('bigstore.s3.endpoint-url')
return S3Backend(bucket_name, access_key_id, secret_access_key, profile_name, endpoint_url)
elif name == 'cloudfiles':
username = config('bigstore.cloudfiles.username')
api_key = config('bigstore.cloudfiles.key')
Expand Down Expand Up @@ -467,6 +468,7 @@ def request_s3_credentials():
s3_key = input("Access Key: ")
s3_secret = input("Secret Key: ")
s3_profile_name = input("Profile Name: ")
s3_endpoint_url = input("Endpoint URL: ")

g().config("bigstore.backend", "s3", file=config_filename)
g().config("bigstore.s3.bucket", s3_bucket, file=config_filename)
Expand All @@ -476,6 +478,8 @@ def request_s3_credentials():
g().config("bigstore.s3.secret", s3_secret, file=config_filename)
if s3_profile_name != '':
g().config("bigstore.s3.profile-name", s3_profile_name, file=config_filename)
if s3_endpoint_url != '':
g().config("bigstore.s3.endpoint-url", s3_endpoint_url, file=config_filename)


def request_google_cloud_storage_credentials():
Expand Down
点击 这是indexloc提供的php浏览器服务,不要输入任何密码和下载