-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.js
417 lines (383 loc) · 10.8 KB
/
index.js
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
const Ajv = require('ajv');
const axios = require('axios');
const addFormats = require('ajv-formats');
const iriFormats = require('./iri.js');
const fs = require('fs-extra');
const klaw = require('klaw');
const path = require('path')
const minimist = require('minimist');
const versions = require('compare-versions');
const {diffStringsUnified} = require('jest-diff');
const { version } = require('./package.json');
let DEBUG = false;
let ajv = new Ajv({
formats: iriFormats,
allErrors: true,
strict: false,
logger: DEBUG ? console : false,
loadSchema: loadJsonFromUri
});
addFormats(ajv);
let verbose = false;
let schemaMap = {};
let schemaFolder = null;
let booleanArgs = ['verbose', 'ignoreCerts', 'lint', 'format', 'version', 'strict', 'all'];
async function run(config) {
try {
let args = config || minimist(process.argv.slice(2));
if (args.version) {
console.log(version);
process.exit(0);
}
else {
console.log(`STAC Node Validator v${version}\n`);
}
// Show minimal help output
if (args.help) {
console.log("For more information on using this command line tool, please visit");
console.log("https://github.com/stac-utils/stac-node-validator/blob/master/README.md#usage");
process.exit(0);
}
// Read config from file
if (typeof args.config === 'string') {
let configFile;
try {
configFile = await fs.readFile(args.config, "utf8");
} catch (error) {
throw new Error('Config file does not exist.');
}
try {
config = JSON.parse(configFile);
} catch (error) {
throw new Error('Config file is invalid JSON.');
}
}
// Merge CLI parameters into config
if (!config) {
config = {};
}
for(let key in args) {
let value = args[key];
if (key === '_' && Array.isArray(value) && value.length > 0) {
config.files = value;
}
else if (booleanArgs.includes(key)) {
if (typeof value === 'string' && value.toLowerCase() === 'false') {
config[key] = false;
}
else {
config[key] = Boolean(value);
}
}
else {
config[key] = value;
}
}
verbose = Boolean(config.verbose);
let files = Array.isArray(config.files) ? config.files : [];
if (files.length === 0) {
throw new Error('No path or URL specified.');
}
else if (files.length === 1 && !isUrl(files[0])) {
// Special handling for reading directories
let stat = await fs.lstat(files[0]);
if (stat.isDirectory()) {
if (config.all) {
files = await readFolder(files[0], /.+\.json$/i);
}
else {
files = await readFolder(files[0], /(^|\/|\\)examples(\/|\\).+\.json$/i);
}
}
}
if (config.ignoreCerts) {
process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0;
}
if (config.strict) {
ajv.opts.strictSchema = true;
ajv.opts.strictNumbers = true;
ajv.opts.strictTuples = true;
}
if (typeof config.schemas === 'string') {
let stat = await fs.lstat(config.schemas);
if (stat.isDirectory()) {
schemaFolder = normalizePath(config.schemas);
}
else {
throw new Error('Schema folder is not a valid STAC directory');
}
}
let schemaMapArgs = [];
if (config.schemaMap && typeof config.schemaMap === 'object') {
// Recommended way
schemaMapArgs = config.schemaMap;
}
else if (typeof config.schemaMap === 'string') {
// Backward compliance
schemaMapArgs = config.schemaMap.split(';');
}
for(let url in schemaMapArgs) {
let path = schemaMapArgs[url];
if (typeof url === 'string') { // from CLI
[url, path] = path.split("=");
}
let stat = await fs.lstat(path);
if (stat.isFile()) {
schemaMap[url] = path;
}
else {
console.error(`Schema mapping for ${url} is not a valid file: ${normalizePath(path)}`);
}
}
const doLint = Boolean(config.lint);
const doFormat = Boolean(config.format);
let stats = {
files: files.length,
invalid: 0,
valid: 0,
malformed: 0
}
for(let file of files) {
// Read STAC file
let json;
console.log(`- ${normalizePath(file)}`);
try {
let fileIsUrl = isUrl(file);
if (!fileIsUrl && (doLint || doFormat)) {
let fileContent = await fs.readFile(file, "utf8");
json = JSON.parse(fileContent);
const expectedContent = JSON.stringify(json, null, 2);
if (!matchFile(fileContent, expectedContent)) {
stats.malformed++;
if (doLint) {
console.warn("-- Lint: File is malformed -> use `--format` to fix the issue");
if (verbose) {
console.log(diffStringsUnified(fileContent, expectedContent));
}
}
if (doFormat) {
console.warn("-- Format: File was malformed -> fixed the issue");
await fs.writeFile(file, expectedContent);
}
}
else if (doLint && verbose) {
console.warn("-- Lint: File is well-formed");
}
}
else {
json = await loadJsonFromUri(file);
if (fileIsUrl && (doLint || doFormat)) {
let what = [];
doLint && what.push('Linting');
doFormat && what.push('Formatting');
console.warn(`-- ${what.join(' and ')} not supported for remote files`);
}
}
}
catch(error) {
stats.invalid++;
stats.malformed++;
console.error("-- " + error.message + "\n");
continue;
}
let isApiList = false;
let entries;
if (Array.isArray(json.collections)) {
entries = json.collections;
isApiList = true;
if (verbose) {
console.log(`-- The file is a /collections endpoint. Validating all ${entries.length} collections, but ignoring the other parts of the response.`);
if (entries.length > 1) {
console.log('');
}
}
}
else if (Array.isArray(json.features)) {
entries = json.features;
isApiList = true;
if (verbose) {
console.log(`-- The file is a /collections/:id/items endpoint. Validating all ${entries.length} items, but ignoring the other parts of the response.`);
if (entries.length > 1) {
console.log('');
}
}
}
else {
entries = [json];
}
let fileValid = true;
for(let data of entries) {
let id = '';
if (isApiList) {
id = `${data.id}: `;
}
if (typeof data.stac_version !== 'string') {
console.error(`-- ${id}Skipping; No STAC version found\n`);
fileValid = false;
continue;
}
else if (versions.compare(data.stac_version, '1.0.0-rc.1', '<')) {
console.error(`-- ${id}Skipping; Can only validate STAC version >= 1.0.0-rc.1\n`);
continue;
}
else if (verbose) {
console.log(`-- ${id}STAC Version: ${data.stac_version}`);
}
switch(data.type) {
case 'FeatureCollection':
console.warn(`-- ${id}Skipping; STAC ItemCollections not supported yet\n`);
continue;
case 'Catalog':
case 'Collection':
case 'Feature':
break;
default:
console.error(`-- ${id}Invalid; Can't detect type of the STAC object. Is the 'type' field missing or invalid?\n`);
fileValid = false;
continue;
}
// Get all schema to validate against
let schemas = [data.type];
if (Array.isArray(data.stac_extensions)) {
schemas = schemas.concat(data.stac_extensions);
// Convert shortcuts supported in 1.0.0 RC1 into schema URLs
if (versions.compare(data.stac_version, '1.0.0-rc.1', '=')) {
schemas = schemas.map(ext => ext.replace(/^(eo|projection|scientific|view)$/, 'https://schemas.stacspec.org/v1.0.0-rc.1/extensions/$1/json-schema/schema.json'));
}
}
for(let schema of schemas) {
try {
let schemaId;
let core = false;
switch(schema) {
case 'Feature':
schema = 'Item';
case 'Catalog':
case 'Collection':
let type = schema.toLowerCase();
schemaId = `https://schemas.stacspec.org/v${data.stac_version}/${type}-spec/json-schema/${type}.json`;
core = true;
break;
default: // extension
if (isUrl(schema)) {
schemaId = schema;
}
else {
throw new Error("'stac_extensions' must contain a valid schema URL, not a shortcut.");
}
}
let validate = await loadSchema(schemaId);
let valid = validate(data);
if (!valid) {
console.log(`--- ${schema}: invalid`);
console.warn(validate.errors);
console.log("\n");
fileValid = false;
if (core && !DEBUG) {
if (verbose) {
console.warn("-- Validation error in core, skipping extension validation");
}
break;
}
}
else if (verbose) {
console.log(`--- ${schema}: valid`);
}
} catch (error) {
fileValid = false;
console.error(`--- ${schema}: ${error.message}`);
if (DEBUG) {
console.trace(error);
}
}
}
if (!fileValid || verbose) {
console.log('');
}
}
fileValid ? stats.valid++ : stats.invalid++;
}
console.info("Files: " + stats.files);
console.info("Valid: " + stats.valid);
console.info("Invalid: " + stats.invalid);
if (doLint || doFormat) {
console.info("Malformed: " + stats.malformed);
}
let errored = (stats.invalid > 0 || (doLint && !doFormat && stats.malformed > 0)) ? 1 : 0;
process.exit(errored);
}
catch(error) {
console.error(error);
process.exit(1);
}
}
const SUPPORTED_PROTOCOLS = ['http', 'https'];
function matchFile(given, expected) {
return normalizeNewline(given) === normalizeNewline(expected);
}
function normalizePath(path) {
return path.replace(/\\/g, '/').replace(/\/$/, "");
}
function normalizeNewline(str) {
// 2 spaces, *nix newlines, newline at end of file
return str.trimRight().replace(/(\r\n|\r)/g, "\n") + "\n";
}
function isUrl(uri) {
if (typeof uri === 'string') {
let part = uri.match(/^(\w+):\/\//i);
if(part) {
if (!SUPPORTED_PROTOCOLS.includes(part[1].toLowerCase())) {
throw new Error(`Given protocol "${part[1]}" is not supported.`);
}
return true;
}
}
return false;
}
async function readFolder(folder, pattern) {
var files = [];
for await (let file of klaw(folder, {depthLimit: -1})) {
let relPath = path.relative(folder, file.path);
if (relPath.match(pattern)) {
files.push(file.path);
}
}
return files;
}
async function loadJsonFromUri(uri) {
if (schemaMap[uri]) {
uri = schemaMap[uri];
}
else if (schemaFolder) {
uri = uri.replace(/^https:\/\/schemas\.stacspec\.org\/v[^\/]+/, schemaFolder);
}
if (isUrl(uri)) {
let response = await axios.get(uri);
return response.data;
}
else {
return JSON.parse(await fs.readFile(uri, "utf8"));
}
}
async function loadSchema(schemaId) {
let schema = ajv.getSchema(schemaId);
if (schema) {
return schema;
}
try {
json = await loadJsonFromUri(schemaId);
} catch (error) {
if (DEBUG) {
console.trace(error);
}
throw new Error(`-- Schema at '${schemaId}' not found. Please ensure all entries in 'stac_extensions' are valid.`);
}
schema = ajv.getSchema(json.$id);
if (schema) {
return schema;
}
return await ajv.compileAsync(json);
}
module.exports = async config => {
await run(config);
};