2017-05-01 22:31:21 +00:00
|
|
|
#!/usr/bin/env python3
|
2023-04-06 11:08:42 +00:00
|
|
|
# -*- coding:utf-8 -*-
|
2017-05-01 22:31:21 +00:00
|
|
|
#
|
2023-04-06 11:08:42 +00:00
|
|
|
# Copyright 2023 © AE UTBM
|
|
|
|
# ae@utbm.fr / ae.info@utbm.fr
|
|
|
|
# All contributors are listed in the CONTRIBUTORS file.
|
2017-05-01 22:31:21 +00:00
|
|
|
#
|
2023-04-06 11:08:42 +00:00
|
|
|
# This file is part of the website of the UTBM Student Association (AE UTBM),
|
|
|
|
# https://ae.utbm.fr.
|
2017-05-01 22:31:21 +00:00
|
|
|
#
|
2023-04-06 11:08:42 +00:00
|
|
|
# You can find the whole source code at https://github.com/ae-utbm/sith3
|
2017-05-01 22:31:21 +00:00
|
|
|
#
|
2023-04-06 11:08:42 +00:00
|
|
|
# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3)
|
|
|
|
# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE
|
|
|
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
2017-05-01 22:31:21 +00:00
|
|
|
#
|
2023-04-06 11:08:42 +00:00
|
|
|
# PREVIOUSLY LICENSED UNDER THE MIT LICENSE,
|
|
|
|
# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE.old
|
|
|
|
# OR WITHIN THE LOCAL FILE "LICENSE.old"
|
2017-05-01 22:31:21 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
import os
|
2024-06-24 11:07:36 +00:00
|
|
|
|
2017-05-01 22:31:21 +00:00
|
|
|
import sass
|
2017-05-05 12:26:46 +00:00
|
|
|
from django.conf import settings
|
2024-06-24 11:07:36 +00:00
|
|
|
from django.core.management.base import BaseCommand
|
2017-05-05 12:26:46 +00:00
|
|
|
|
2017-05-01 22:31:21 +00:00
|
|
|
|
|
|
|
class Command(BaseCommand):
|
2017-05-10 08:58:51 +00:00
|
|
|
"""
|
2020-08-27 13:59:42 +00:00
|
|
|
Compiles scss in static folder for production
|
2017-05-10 08:58:51 +00:00
|
|
|
"""
|
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)
|
2023-04-22 13:32:31 +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"
|
|
|
|
)
|