mainly updated documentation

This commit is contained in:
Edward Robinson
2012-10-25 19:34:11 +01:00
parent 428e6fd44d
commit b9ec49eede
+70 -29
View File
@@ -8,17 +8,20 @@ from boto.s3.connection import S3Connection
from boto.exception import S3CreateError
from boto.s3.key import Key
logger = logging.getLogger('flask_s3')
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
logger.addHandler(ch)
def url_for(endpoint, **values):
"""
If the endpoint is for static resources then create a new MapAdapter based
upon the application's url map, but forcing the use of an external server
name.
Generates a URL to the given endpoint.
If the endpoint is for a static resource then an Amazon S3 URL is
generated, otherwise the call is passed on to `flask.url_for`.
Because this function is set as a jinja environment variable when
`FlaskS3.init_app` is invoked, this function replaces `flask.url_for` in
templates automatically. It is unlikely that this function will
need to be directly called from within your application code, unless you
need to refer to static assets outside of your templates.
"""
app = current_app
if 'S3_BUCKET_NAME' not in app.config:
@@ -34,12 +37,10 @@ def url_for(endpoint, **values):
return urls.build(endpoint, values=values, force_external=True)
return flask_url_for(endpoint, **values)
def _bp_static_url(blueprint):
""" builds the absolute url path for a blueprint's static folder """
return u'%s%s' % (blueprint.url_prefix or '', blueprint.static_url_path)
def _gather_files(app, hidden):
""" Gets all files in static folders and returns in dict."""
dirs = [(unicode(app.static_folder), app.static_url_path)]
@@ -60,18 +61,16 @@ def _gather_files(app, hidden):
valid_files[(static_folder, static_url_loc)].extend(files)
return valid_files
def _path_to_relative_url(path):
""" Converts a folder and filename into a ralative url path """
return os.path.splitdrive(path)[1].replace('\\', '/')
def _static_folder_path(static_url, static_folder, static_asset):
"""
Returns a path to a file based on the static folder, and not on the
filesystem holding the file.
returns a path relative to static_url for static_asset
Returns a path relative to static_url for static_asset
"""
# first get the asset path relative to the static folder. static_asset is
# not simply a filename because it could be sub-directory then file etc.
@@ -82,33 +81,59 @@ def _static_folder_path(static_url, static_folder, static_asset):
# Now bolt the static url path and the relative asset location together
return u'%s/%s' % (static_url.rstrip('/'), rel_asset.lstrip('/'))
def _write_files(static_url_loc, static_folder, files, bucket, ex_keys=None):
"""
Writes all the files inside a static folder to S3.
"""
""" Writes all the files inside a static folder to S3. """
for file_path in files:
asset_loc = _path_to_relative_url(file_path)
key_name = _static_folder_path(static_url_loc, static_folder, asset_loc)
logger.debug("[DEBUG] Uploading %s to %s as %s" %
(file_path, bucket, key_name))
logger.debug("Uploading %s to %s as %s" % (file_path, bucket, key_name))
if ex_keys and key_name in ex_keys:
logger.debug("[DEBUG] %s excluded from upload" % key_name)
logger.debug("%s excluded from upload" % key_name)
else:
k = Key(bucket=bucket, name=key_name)
k.set_contents_from_filename(file_path)
k.make_public()
def _upload_files(files_, bucket):
for (static_folder, static_url), names in files_.iteritems():
_write_files(static_url, static_folder, names, bucket)
def create_all(app, user=None, password=None, bucket_name=None,
location='', overwrite=False, include_hidden=False):
location='', include_hidden=False):
"""
Sends all static assets to S3.
Uploads of the static assets associated with a Flask application to Amazon S3.
All static assets are identified on the local filesystem, including
any static assets associated with *registered* blueprints. In turn, each
asset is uploaded to the bucket described by `bucket_name`. If the bucket
does not exist then it is created.
Flask-S3 creates the same relative static asset folder structure on S3 as
can be found within your Flask application.
Many of the optional arguments to `create_all` can be specified instead in
your application's configuration using the Flask-S3 `configuration`_ variables.
:param app: a :class:`flask.Flask` application object.
:param user: an AWS Access Key ID. You can find this key in the Security Credentials section of your AWS account.
:type user: `basestring` or None
:param password: an AWS Secret Access Key. You can find this key in the Security Credentials section of your AWS account.
:type password: `basestring` or None
:param bucket_name: the name of the bucket you wish to server your static assets from. **Note**: while a valid character, it is recommended that you do not include periods in bucket_name if you wish to serve over HTTPS. See Amazon's `bucket restrictions`_ for more details.
:type bucket_name: `basestring` or None
:param location: the AWS region to host the bucket in; an empty string indicates the default region should be used, which is the US Standard region. Possible location values include: `'DEFAULT'`, `'EU'`, `'USWest'`, `'APSoutheast'`
:type location: `basestring` or None
:param include_hidden: by default Flask-S3 will not upload hidden files. Set this to true to force the upload of hidden files.
:type include_hidden: `bool`
.. _bucket restrictions: http://docs.amazonwebservices.com/AmazonS3/latest\
/dev/BucketRestrictions.html
"""
if user is None and 'AWS_ACCESS_KEY_ID' in app.config:
user = app.config['AWS_ACCESS_KEY_ID']
@@ -121,8 +146,7 @@ def create_all(app, user=None, password=None, bucket_name=None,
# build list of static files
all_files = _gather_files(app, include_hidden)
logger.debug("All valid files: %s" % all_files)
# connect to s3
conn = S3Connection(user, password)
conn = S3Connection(user, password) # connect to s3
# get_or_create bucket
try:
bucket = conn.create_bucket(bucket_name, location=location)
@@ -132,9 +156,17 @@ def create_all(app, user=None, password=None, bucket_name=None,
_upload_files(all_files, bucket)
class FlaskS3(object):
"""docstring for FlaskS3"""
"""
The FlaskS3 object allows your application to use Flask-S3.
When initialising a FlaskS3 object you may optionally provide your
:class:`flask.Flask` application object if it is ready. Otherwise, you may
provide it later by using the :meth:`init_app` method.
:param app: optional :class:`flask.Flask` application object
:type app: :class:`flask.Flask` or None
"""
def __init__(self, app=None):
self.app = None
if app is not None:
@@ -142,12 +174,21 @@ class FlaskS3(object):
self.init_app(self.app)
def init_app(self, app):
"""
An alternative way to pass your :class:`flask.Flask` application object
to Flask-S3. :meth:`init_app` also takes care of some default
`settings`_.
:param app: the :class:`flask.Flask` application object.
"""
defaults = [('S3_USE_HTTPS', True),
('USE_S3', True),
('S3_DEBUG_FORCE', False),
('USE_S3_DEBUG', False),
('S3_BUCKET_DOMAIN', 's3.amazonaws.com')]
for k, v in defaults:
app.config.setdefault(k, v)
if app.config['USE_S3']:
app.jinja_env.globals['url_for'] = url_for
if not app.debug or app.config['USE_S3_DEBUG']:
app.jinja_env.globals['url_for'] = url_for