Fix links from contest jobs to problems
[gruntmaster-page.git] / make_static.PL
CommitLineData
8798626b
MG
1#!/usr/bin/perl
2use v5.14;
3use warnings;
4
5eae1f77 5use CSS::Minifier::XS qw/minify/;
7e8f9a5c 6use Digest::SHA qw/sha256_base64/;
3c9bcb47 7use IO::Compress::Gzip qw/gzip/;
7e8f9a5c 8use File::Slurp qw/read_file write_file edit_file_lines/;
fa8b7f99 9use File::Which;
5eae1f77 10use List::Util qw/first/;
8798626b
MG
11
12mkdir 'static';
13mkdir 'static/css';
f57a9178 14mkdir 'static/js';
8798626b 15
3c9bcb47
MG
16sub gzip_file {
17 my ($file) = @_;
fa8b7f99
MG
18 my $zopfli = which 'zopfli';
19 system $zopfli => $file if $zopfli;
20 gzip $file => "$file.gz", -Level => 9, Minimal => 1 unless $zopfli;
21}
22
23sub write_gzfile {
24 my ($file, @content) = @_;
25 write_file $file, @content;
26 gzip_file $file
3c9bcb47
MG
27}
28
5eae1f77
MG
29sub read_css_into_blocks {
30 my ($file) = @_;
31 my (@blocks, $block);
32 for (read_file $file) {
33 $block .= $_;
34 if (/^}/) {
35 push @blocks, $block;
36 $block = '';
37 }
38 }
39 \@blocks
40}
41
db73dc0c
MG
42my $default_theme = 'cyborg';
43
44sub theme_prefix {
45 my ($theme, $decl, $default) = @_;
46 return $decl if $theme eq $default_theme || !$decl;
47 return '' if $decl eq $default;
48
49 $default =~ s/[^{]*{\n//;
50 $default =~ s/\n}[^}]*//;
51 $decl =~ s/^$_$//m for split "\n", $default;
52 $decl =~ s/\n+/\n/g;
53
54 my $prefix = "html.$theme";
55 my ($first_line) = $decl =~ /([^{]*){/;
56 $first_line =~ s/(,\s+)/$1 $prefix /g;
57 $first_line = "$prefix $first_line";
58 $decl =~ s/([^{]*){/$first_line\{/;
59 $decl
60}
61
cf2b0139 62sub make_css {
db73dc0c 63 my $css = join '', map { read_file $_ } <css/*.css>;
5eae1f77 64
db73dc0c 65 my (%themes);
cf2b0139 66 for (<css/themes/*>) {
db73dc0c
MG
67 my ($theme) = m,themes/(.*)\.css,;
68 $themes{$theme} = read_css_into_blocks $_;
5eae1f77 69 }
db73dc0c 70 my @themes = sort grep { $_ ne $default_theme } keys %themes;
5eae1f77
MG
71
72 while (grep { scalar @$_ } values %themes) {
73 my %blocks = map { $_ => (shift @{$themes{$_}}) // '' } keys %themes;
db73dc0c
MG
74 $css .= $blocks{$default_theme};
75 $css .= theme_prefix $_, $blocks{$_}, $blocks{$default_theme} for @themes
5eae1f77
MG
76 }
77
db73dc0c 78 write_gzfile "static/css/all.css", minify $css
8798626b
MG
79}
80
cf2b0139 81sub make_js {
8345760a 82 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/,, <js/*>;
f57a9178 83 my $js = read_file 'static/js/all.js';
fa8b7f99 84 write_gzfile 'static/js/all.js', '//# sourceMappingURL=/static/js/js.map', "\n", $js;
f57a9178 85 system 'cp', '-rp', 'js', 'static/';
cf2b0139
MG
86}
87
db73dc0c 88my $css_mtime = -M 'static/css/all.css' // 0;
cf2b0139
MG
89for (<css/*>, <css/themes/*>) {
90 if (!$css_mtime || $css_mtime > -M) {
91 make_css;
92 last
93 }
94}
95
a90fc634 96my $js_mtime = -M 'static/js/all.js' // 0;
cf2b0139
MG
97for (<js/*>) {
98 if (!$js_mtime || $js_mtime > -M) {
99 make_js;
100 last
101 }
9cad7bdd 102}
7e8f9a5c
MG
103
104edit_file_lines {
105 my ($file) = m,(static.*\.(?:css|js)),;
106 return unless $file;
107 my $hash = sha256_base64 scalar read_file $file;
108 s/integrity=".*"/integrity="sha256-$hash="/;
109} 'tmpl/skel.en'
This page took 0.019552 seconds and 4 git commands to generate.