Sith/core/management/commands/compilestatic.py

81 lines
2.6 KiB
Python
Raw Normal View History

2017-05-01 22:31:21 +00:00
#!/usr/bin/env python3
# -*- coding:utf-8 -*
#
2017-05-05 12:59:39 +00:00
# Copyright 2017
2017-05-01 22:31:21 +00:00
# - Sli <antoine@bartuccio.fr>
#
# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM,
# http://ae.utbm.fr.
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License a published by the Free Software
# Foundation; either version 3 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.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple
# Place - Suite 330, Boston, MA 02111-1307, USA.
#
#
import os
import sass
from django.core.management.base import BaseCommand
2017-05-05 12:26:46 +00:00
from django.conf import settings
2017-05-01 22:31:21 +00:00
class Command(BaseCommand):
2017-05-10 08:58:51 +00:00
"""
Compiles scss in static folder for production
"""
2018-10-04 19:29:19 +00:00
2017-05-01 22:51:43 +00:00
help = "Compile scss files from static folder"
2017-05-01 22:31:21 +00:00
2017-05-05 12:26:46 +00:00
def compile(self, filename):
2018-10-04 19:29:19 +00:00
args = {"filename": filename, "include_paths": settings.STATIC_ROOT}
2017-05-05 12:26:46 +00:00
if settings.SASS_PRECISION:
2018-10-04 19:29:19 +00:00
args["precision"] = settings.SASS_PRECISION
2017-05-05 12:26:46 +00:00
return sass.compile(**args)
2017-05-01 22:51:43 +00:00
def is_compilable(self, file, ext_list):
path, ext = os.path.splitext(file)
return ext in ext_list
def exec_on_folder(self, folder, func):
to_exec = []
2017-05-01 22:31:21 +00:00
for file in os.listdir(folder):
file = os.path.join(folder, file)
if os.path.isdir(file):
2017-05-01 22:51:43 +00:00
self.exec_on_folder(file, func)
2018-10-04 19:29:19 +00:00
elif self.is_compilable(file, [".scss"]):
2017-05-01 22:51:43 +00:00
to_exec.append(file)
2017-05-01 22:31:21 +00:00
2017-05-01 22:51:43 +00:00
for file in to_exec:
func(file)
2017-05-01 22:31:21 +00:00
2017-05-01 22:51:43 +00:00
def compilescss(self, file):
print("compiling %s" % file)
2018-10-04 19:29:19 +00:00
with (open(file.replace(".scss", ".css"), "w")) as newfile:
2017-05-05 12:26:46 +00:00
newfile.write(self.compile(file))
2017-05-01 22:51:43 +00:00
def removescss(self, file):
print("removing %s" % file)
os.remove(file)
2017-05-01 22:31:21 +00:00
def handle(self, *args, **options):
2017-05-05 12:26:46 +00:00
if os.path.isdir(settings.STATIC_ROOT):
2017-05-01 22:51:43 +00:00
print("---- Compiling scss files ---")
2017-05-05 12:26:46 +00:00
self.exec_on_folder(settings.STATIC_ROOT, self.compilescss)
2017-05-01 22:31:21 +00:00
print("---- Removing scss files ----")
2017-05-05 12:26:46 +00:00
self.exec_on_folder(settings.STATIC_ROOT, self.removescss)
2017-05-01 22:31:21 +00:00
else:
2018-10-04 19:29:19 +00:00
print(
"No static folder avalaible, please use collectstatic before compiling scss"
)