X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=make_static.PL;h=3374f5cf2a61c7769cb1a5718bd76ef657386ee6;hb=0a5d6173e114bdb8f562769876ec1674eda0f7e2;hp=10532b9a8dbd502663ba66c505f36b92534d592c;hpb=3c9bcb475efecdd49e86f09a4cf9da4985031b55;p=plack-app-gruntmaster.git diff --git a/make_static.PL b/make_static.PL index 10532b9..3374f5c 100644 --- a/make_static.PL +++ b/make_static.PL @@ -2,44 +2,65 @@ use v5.14; use warnings; -use CSS::Minifier::XS qw//; -use JavaScript::Minifier::XS qw//; - +use CSS::Minifier::XS qw/minify/; +use Digest::SHA qw/sha256_base64/; use IO::Compress::Gzip qw/gzip/; -use File::Slurp qw/read_file write_file/; +use File::Slurp qw/read_file write_file edit_file_lines/; +use List::Util qw/first/; mkdir 'static'; mkdir 'static/css'; +mkdir 'static/js'; sub gzip_file { my ($file) = @_; gzip $file => "$file.gz", -Level => 9, Minimal => 1; } +sub read_css_into_blocks { + my ($file) = @_; + my (@blocks, $block); + for (read_file $file) { + $block .= $_; + if (/^}/) { + push @blocks, $block; + $block = ''; + } + } + \@blocks +} + sub make_css { - my $common_css; - $common_css .= read_file $_ for ; + my %css; + $css{common} .= read_file $_ for ; + + my (%themes, $rndtheme); for () { - my ($theme) = m,themes/(.*)\.css,; - my $css = read_file $_; - $css .= $common_css; - write_file "static/css/$theme.css", CSS::Minifier::XS::minify $css; - gzip_file "static/css/$theme.css"; + ($rndtheme) = m,themes/(.*)\.css,; + $themes{$rndtheme} = read_css_into_blocks $_; + } + + while (grep { scalar @$_ } values %themes) { + my %blocks = map { $_ => (shift @{$themes{$_}}) // '' } keys %themes; + if (grep { $_ ne $blocks{$rndtheme} } values %blocks) { + $css{$_} .= $blocks{$_} for keys %themes; + } else { + $css{common} .= $blocks{$rndtheme}; + } + } + + for my $name (keys %css) { + write_file "static/css/$name.css", minify $css{$name}; + gzip_file "static/css/$name.css" } } sub make_js { - if (-f 'compiler.jar') { - system java => -jar => 'compiler.jar', qw,-O SIMPLE --create_source_map static/js.map --js_output_file static/js.js --language_in ECMASCRIPT5_STRICT --source_map_location_mapping js/|/static/js/,, ; - my $js = read_file 'static/js.js'; - write_file 'static/js.js', '//# sourceMappingURL=/static/js.map', "\n", $js; - system 'cp', '-rp', 'js', 'static/'; - } else { - my $js; - $js .= read_file $_ for ; - write_file 'static/js.js', JavaScript::Minifier::XS::minify $js; - } - gzip_file 'static/js.js'; + system java => -jar => 'compiler.jar', qw,-O SIMPLE --create_source_map static/js/js.map --js_output_file static/js/all.js --language_in ECMASCRIPT6_STRICT --language_out ECMASCRIPT5_STRICT --source_map_location_mapping js/|/static/js/,, ; + my $js = read_file 'static/js/all.js'; + write_file 'static/js/all.js', '//# sourceMappingURL=/static/js/js.map', "\n", $js; + system 'cp', '-rp', 'js', 'static/'; + gzip_file 'static/js/all.js'; } my $css_mtime = -M 'static/css/slate.css' // 0; @@ -50,10 +71,17 @@ for (, ) { } } -my $js_mtime = -M 'static/js.js' // 0; +my $js_mtime = -M 'static/js/all.js' // 0; for () { if (!$js_mtime || $js_mtime > -M) { make_js; last } } + +edit_file_lines { + my ($file) = m,(static.*\.(?:css|js)),; + return unless $file; + my $hash = sha256_base64 scalar read_file $file; + s/integrity=".*"/integrity="sha256-$hash="/; +} 'tmpl/skel.en'