Is it possible to use django_compressor/S3/gzip?

前端 未结 3 1047
遇见更好的自我
遇见更好的自我 2020-12-31 11:36

How is it possible to use django_compressor to send gziped files to Amazon S3?

I tried in several ways but it didn\'t work. Here is my last settings.py configuration

3条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-31 11:57

    After plenty of days of hard work and research I was finally able to do this.

    Basically you need to do a few things:

    1. Use AWS_IS_GZIPPED = True
    2. If your S3 is outside of US. You need to create a custom S3Connection class where you override the DefaultHost variable to your S3 url. Example s3-eu-west-1.amazonaws.com
    3. If you're using a dotted bucket name, example subdomain.domain.tld. You need to set AWS_S3_CALLING_FORMAT = 'boto.s3.connection.OrdinaryCallingFormat'
    4. You have to set non_gzipped_file_content = content.file in your CachedS3BotoStorage

    This is the CachedS3BotoStorage class you need:

    class CachedS3BotoStorage(S3BotoStorage):
        """
        S3 storage backend that saves the files locally, too.
    
        """
        connection_class = EUConnection
        location = settings.STATICFILES_LOCATION
    
        def __init__(self, *args, **kwargs):
            super(CachedS3BotoStorage, self).__init__(*args, **kwargs)
            self.local_storage = get_storage_class(
                "compressor.storage.CompressorFileStorage")()
    
        def save(self, name, content):
            non_gzipped_file_content = content.file
            name = super(CachedS3BotoStorage, self).save(name, content)
            content.file = non_gzipped_file_content
            self.local_storage._save(name, content)
            return name
    

提交回复
热议问题