2018-08-07 12:17:01 +02:00
|
|
|
extern crate walkdir;
|
2018-08-03 14:21:34 +02:00
|
|
|
#[cfg(windows)]
|
|
|
|
extern crate winres;
|
|
|
|
|
2018-08-07 12:17:01 +02:00
|
|
|
use walkdir::WalkDir;
|
|
|
|
|
|
|
|
use std::env;
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
|
|
|
use std::fs::copy;
|
|
|
|
use std::fs::create_dir_all;
|
|
|
|
use std::fs::File;
|
|
|
|
|
|
|
|
use std::io::BufRead;
|
|
|
|
use std::io::BufReader;
|
|
|
|
use std::io::Write;
|
|
|
|
|
2018-08-08 04:47:32 +02:00
|
|
|
use std::env::consts::OS;
|
|
|
|
|
2018-08-07 12:17:01 +02:00
|
|
|
const FILES_TO_PREPROCESS: &'static [&'static str] = &["helpers.js", "views.js"];
|
|
|
|
|
2018-08-03 14:21:34 +02:00
|
|
|
#[cfg(windows)]
|
2018-08-07 12:17:01 +02:00
|
|
|
fn handle_binary() {
|
2018-08-03 14:21:34 +02:00
|
|
|
let mut res = winres::WindowsResource::new();
|
|
|
|
res.set_icon("static/favicon.ico");
|
2018-08-04 09:03:32 +02:00
|
|
|
res.compile().expect("Failed to generate metadata");
|
2018-08-03 14:21:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(windows))]
|
2018-08-07 12:17:01 +02:00
|
|
|
fn handle_binary() {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
handle_binary();
|
|
|
|
|
|
|
|
let output_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
|
|
|
|
|
2018-08-08 04:47:32 +02:00
|
|
|
let os = OS.to_lowercase();
|
|
|
|
|
|
|
|
// Find target config
|
|
|
|
let target_config = PathBuf::from(format!("config.{}.toml", os));
|
|
|
|
|
|
|
|
if !target_config.exists() {
|
|
|
|
panic!(
|
|
|
|
"There is no config file specified for the platform: {:?}. \
|
|
|
|
Create a file named \"config.{}.toml\" in the root directory.",
|
|
|
|
os, os
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
copy(target_config, output_dir.join("config.toml")).expect("Unable to copy config file");
|
|
|
|
|
2018-08-07 12:17:01 +02:00
|
|
|
// Copy files from static/ to build dir
|
|
|
|
for entry in WalkDir::new("static") {
|
|
|
|
let entry = entry.expect("Unable to read output directory");
|
|
|
|
|
|
|
|
let output_file = output_dir.join(entry.path());
|
|
|
|
|
|
|
|
if entry.path().is_dir() {
|
|
|
|
create_dir_all(output_file).expect("Unable to create dir");
|
|
|
|
} else {
|
|
|
|
let filename = entry
|
|
|
|
.path()
|
|
|
|
.file_name()
|
|
|
|
.expect("Unable to parse filename")
|
|
|
|
.to_str()
|
|
|
|
.expect("Unable to convert to string");
|
|
|
|
|
|
|
|
if FILES_TO_PREPROCESS.contains(&filename) {
|
|
|
|
// Do basic preprocessing - transcribe template string
|
|
|
|
let source = BufReader::new(File::open(entry.path()).expect("Unable to copy file"));
|
|
|
|
let mut target = File::create(output_file).expect("Unable to copy file");
|
|
|
|
|
|
|
|
let mut is_template_string = false;
|
|
|
|
|
|
|
|
for line in source.lines() {
|
|
|
|
let line = line.expect("Unable to read line from JS file");
|
|
|
|
|
|
|
|
let mut is_break = false;
|
|
|
|
let mut is_quote = false;
|
|
|
|
|
|
|
|
let mut output_line = String::new();
|
|
|
|
|
|
|
|
if is_template_string {
|
|
|
|
output_line += "\"";
|
|
|
|
}
|
|
|
|
|
|
|
|
for c in line.chars() {
|
|
|
|
if c == '\\' {
|
|
|
|
is_break = true;
|
|
|
|
output_line.push('\\');
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == '\"' || c == '\'') && !is_break && !is_template_string {
|
|
|
|
is_quote = !is_quote;
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == '`' && !is_break && !is_quote {
|
|
|
|
output_line += "\"";
|
|
|
|
is_template_string = !is_template_string;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == '"' && !is_break && is_template_string {
|
|
|
|
output_line += "\\\"";
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
is_break = false;
|
|
|
|
output_line.push(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
if is_template_string {
|
|
|
|
output_line += "\" +";
|
|
|
|
}
|
|
|
|
|
|
|
|
output_line.push('\n');
|
|
|
|
|
|
|
|
target
|
|
|
|
.write(output_line.as_bytes())
|
|
|
|
.expect("Unable to write line");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
copy(entry.path(), output_file).expect("Unable to copy file");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|