2017-11-16 19:51:44 +01:00
|
|
|
# Useful reading is https://zulip.readthedocs.io/en/latest/subsystems/front-end-build-process.html
|
2013-10-10 21:37:26 +02:00
|
|
|
|
2016-07-04 13:33:16 +02:00
|
|
|
import os
|
2019-07-03 02:18:44 +02:00
|
|
|
from typing import Optional
|
2016-07-04 13:33:16 +02:00
|
|
|
|
2013-06-12 00:01:13 +02:00
|
|
|
from django.conf import settings
|
2017-02-06 22:12:03 +01:00
|
|
|
from django.contrib.staticfiles.storage import ManifestStaticFilesStorage
|
2013-06-12 00:01:13 +02:00
|
|
|
from pipeline.storage import PipelineMixin
|
|
|
|
|
2018-06-02 01:59:50 +02:00
|
|
|
class IgnoreBundlesManifestStaticFilesStorage(ManifestStaticFilesStorage):
|
|
|
|
def hashed_name(self, name: str, content: Optional[str]=None, filename: Optional[str]=None) -> str:
|
2018-07-24 18:17:05 +02:00
|
|
|
ext = os.path.splitext(name)[1]
|
2019-07-03 02:22:28 +02:00
|
|
|
if name.startswith("webpack-bundles"):
|
2018-06-02 01:59:50 +02:00
|
|
|
# Hack to avoid renaming already-hashnamed webpack bundles
|
|
|
|
# when minifying; this was causing every bundle to have
|
|
|
|
# two hashes appended to its name, one by webpack and one
|
|
|
|
# here. We can't just skip processing of these bundles,
|
|
|
|
# since we do need the Django storage to add these to the
|
|
|
|
# manifest for django_webpack_loader to work. So, we just
|
|
|
|
# use a no-op hash function for these already-hashed
|
|
|
|
# assets.
|
2018-07-24 18:17:05 +02:00
|
|
|
return name
|
|
|
|
if ext in ['.png', '.gif', '.jpg', '.svg']:
|
|
|
|
# Similarly, don't hash-rename image files; we only serve
|
|
|
|
# the original file paths (not the hashed file paths), and
|
|
|
|
# so the only effect of hash-renaming these is to increase
|
|
|
|
# the size of release tarballs with duplicate copies of thesex.
|
|
|
|
#
|
|
|
|
# One could imagine a future world in which we instead
|
|
|
|
# used the hashed paths for these; in that case, though,
|
|
|
|
# we should instead be removing the non-hashed paths.
|
|
|
|
return name
|
|
|
|
if ext in ['json', 'po', 'mo', 'mp3', 'ogg', 'html']:
|
|
|
|
# And same story for translation files, sound files, etc.
|
2018-06-02 01:59:50 +02:00
|
|
|
return name
|
|
|
|
return super().hashed_name(name, content, filename)
|
|
|
|
|
2019-07-18 10:08:09 +02:00
|
|
|
class ZulipStorage(PipelineMixin,
|
|
|
|
IgnoreBundlesManifestStaticFilesStorage):
|
2017-02-06 22:12:03 +01:00
|
|
|
# This is a hack to use staticfiles.json from within the
|
|
|
|
# deployment, rather than a directory under STATIC_ROOT. By doing
|
|
|
|
# so, we can use a different copy of staticfiles.json for each
|
|
|
|
# deployment, which ensures that we always use the correct static
|
|
|
|
# assets for each deployment.
|
2019-07-18 10:08:09 +02:00
|
|
|
manifest_name = os.path.join(settings.DEPLOY_ROOT, "staticfiles.json")
|
2017-02-06 22:12:03 +01:00
|
|
|
|
2019-07-18 10:08:09 +02:00
|
|
|
def path(self, name: str) -> str:
|
|
|
|
if name == self.manifest_name:
|
2017-02-06 22:12:03 +01:00
|
|
|
return name
|
2019-07-18 10:08:09 +02:00
|
|
|
return super().path(name)
|