1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
use std::collections::HashSet;
use std::fs;
use std::io::Read;
use std::path::{Path, PathBuf};
use anyhow::{bail, Context};
use flate2::read::GzDecoder;
use hex_literal::hex;
use sha2::{Digest, Sha256};
use walkdir::WalkDir;
struct NpmPackage {
name: &'static str,
version: &'static str,
digest: [u8; 32],
css_file: Option<&'static str>,
js_prod_file: &'static str,
js_dev_file: &'static str,
extra_file: Option<(&'static str, &'static str)>,
}
const NPM_PACKAGES: &[NpmPackage] = &[
NpmPackage {
name: "@hpcc-js/wasm",
version: "0.3.14",
digest: hex!("b1628f561790925e58d33dcc5552aa2d1e8316a14b8436999a3c9c86df7c514a"),
css_file: None,
js_prod_file: "dist/index.min.js",
js_dev_file: "dist/index.js",
extra_file: Some((
"dist/graphvizlib.wasm",
"js/vendor/@hpcc-js/graphvizlib.wasm",
)),
},
NpmPackage {
name: "babel-standalone",
version: "6.26.0",
digest: hex!("2a6dc2f1acc2893e53cb53192eee2dfc6a09d86ef7620dcb6323c4d624f99d92"),
css_file: None,
js_prod_file: "babel.min.js",
js_dev_file: "babel.js",
extra_file: None,
},
NpmPackage {
name: "d3",
version: "5.16.0",
digest: hex!("85aa224591310c3cdd8a2ab8d3f8421bb7b0035926190389e790497c5b1d0f0b"),
css_file: None,
js_prod_file: "dist/d3.min.js",
js_dev_file: "dist/d3.js",
extra_file: None,
},
NpmPackage {
name: "d3-flame-graph",
version: "3.1.1",
digest: hex!("603120d8f1badfde6155816585d8e4c494f9783ae8fd40a3974928df707b1889"),
css_file: Some("dist/d3-flamegraph.css"),
js_prod_file: "dist/d3-flamegraph.min.js",
js_dev_file: "dist/d3-flamegraph.js",
extra_file: None,
},
NpmPackage {
name: "pako",
version: "1.0.11",
digest: hex!("1243d3fd9710c9b4e04d9528db02bfa55a4055bebc24743628fdddf59c83fa95"),
css_file: None,
js_prod_file: "dist/pako.min.js",
js_dev_file: "dist/pako.js",
extra_file: None,
},
NpmPackage {
name: "react",
version: "16.14.0",
digest: hex!("2fd361cfad2e0f8df36b67a0fdd43bd8064822b077fc7d70a84388918c663089"),
css_file: None,
js_prod_file: "umd/react.production.min.js",
js_dev_file: "umd/react.development.js",
extra_file: None,
},
NpmPackage {
name: "react-dom",
version: "16.14.0",
digest: hex!("27f6addacabaa5e5b9aa36ef443d4e79a947f3245c7d6c77f310f9c9fc944e25"),
css_file: None,
js_prod_file: "umd/react-dom.production.min.js",
js_dev_file: "umd/react-dom.development.js",
extra_file: None,
},
];
const STATIC: &str = "src/http/static";
const CSS_VENDOR: &str = "src/http/static/css/vendor";
const JS_PROD_VENDOR: &str = "src/http/static/js/vendor";
const JS_DEV_VENDOR: &str = "src/http/static-dev/js/vendor";
impl NpmPackage {
fn css_path(&self) -> PathBuf {
Path::new(CSS_VENDOR).join(&format!("{}.css", self.name))
}
fn js_prod_path(&self) -> PathBuf {
Path::new(JS_PROD_VENDOR).join(&format!("{}.js", self.name))
}
fn js_dev_path(&self) -> PathBuf {
Path::new(JS_DEV_VENDOR).join(&format!("{}.js", self.name))
}
fn extra_path(&self) -> PathBuf {
let dst = self.extra_file.map(|(_src, dst)| dst);
Path::new(STATIC).join(dst.unwrap_or(""))
}
fn compute_digest(&self) -> Result<Vec<u8>, anyhow::Error> {
let css_data = if self.css_file.is_some() {
fs::read(self.css_path())?
} else {
vec![]
};
let js_prod_data = fs::read(self.js_prod_path())?;
let js_dev_data = fs::read(self.js_dev_path())?;
let extra_data = if self.extra_file.is_some() {
fs::read(self.extra_path())?
} else {
vec![]
};
Ok(Sha256::new()
.chain_update(&Sha256::digest(&css_data))
.chain_update(&Sha256::digest(&js_prod_data))
.chain_update(&Sha256::digest(&js_dev_data))
.chain_update(&Sha256::digest(&extra_data))
.finalize()
.as_slice()
.into())
}
}
pub fn ensure() -> Result<(), anyhow::Error> {
println!("ensuring all npm packages are up-to-date...");
let client = reqwest::blocking::Client::new();
for pkg in NPM_PACKAGES {
if pkg.compute_digest().ok().as_deref() == Some(&pkg.digest) {
println!("{} is up-to-date", pkg.name);
continue;
} else {
println!("{} needs updating...", pkg.name);
}
let url = format!(
"https://registry.npmjs.org/{}/-/{}-{}.tgz",
pkg.name,
pkg.name.split('/').last().unwrap(),
pkg.version,
);
let res = client
.get(&url)
.send()
.and_then(|res| res.error_for_status())
.with_context(|| format!("downloading {}", pkg.name))?;
let mut archive = tar::Archive::new(GzDecoder::new(res));
for entry in archive.entries()? {
let mut entry = entry?;
let path = entry.path()?.strip_prefix("package")?.to_owned();
if let Some(css_file) = &pkg.css_file {
if path == Path::new(css_file) {
unpack_entry(&mut entry, &pkg.css_path())?;
}
}
if path == Path::new(pkg.js_prod_file) {
unpack_entry(&mut entry, &pkg.js_prod_path())?;
}
if path == Path::new(pkg.js_dev_file) {
unpack_entry(&mut entry, &pkg.js_dev_path())?;
}
if let Some((extra_src, _extra_dst)) = &pkg.extra_file {
if path == Path::new(extra_src) {
unpack_entry(&mut entry, &pkg.extra_path())?;
}
}
}
let digest = pkg
.compute_digest()
.with_context(|| format!("computing digest for {}", pkg.name))?;
if digest != pkg.digest {
bail!(
"npm package {} did not match expected digest
expected: {}
actual: {}",
pkg.name,
hex::encode(pkg.digest),
hex::encode(digest),
);
}
}
let mut known_paths = HashSet::new();
for pkg in NPM_PACKAGES {
if pkg.css_file.is_some() {
known_paths.insert(pkg.css_path());
}
known_paths.insert(pkg.js_prod_path());
known_paths.insert(pkg.js_dev_path());
if pkg.extra_file.is_some() {
known_paths.insert(pkg.extra_path());
}
}
for dir in &[CSS_VENDOR, JS_PROD_VENDOR, JS_DEV_VENDOR] {
for entry in WalkDir::new(dir) {
let entry = entry?;
if entry.file_type().is_file() && !known_paths.contains(entry.path()) {
println!("removing stray vendor file {}", entry.path().display());
fs::remove_file(entry.path())?;
}
}
}
Ok(())
}
fn unpack_entry<T>(entry: &mut tar::Entry<T>, target: &Path) -> Result<(), anyhow::Error>
where
T: Read,
{
if let Some(parent) = target.parent() {
fs::create_dir_all(parent)
.with_context(|| format!("creating directory {}", parent.display()))?;
}
entry.unpack(target)?;
Ok(())
}