mirror of
https://github.com/web3privacy/explorer-data.git
synced 2024-10-15 12:06:26 +02:00
95 lines
2.5 KiB
JavaScript
95 lines
2.5 KiB
JavaScript
import Ajv from "https://esm.sh/ajv@8.17.1?pin=v58";
|
|
import addFormats from "https://esm.sh/ajv-formats@2.1.1";
|
|
import { betterAjvErrors } from 'https://esm.sh/@apideck/better-ajv-errors@0.3.6?pin=v58';
|
|
import yaml from "npm:js-yaml";
|
|
|
|
import { W3PData } from "./w3pdata.js";
|
|
|
|
const w3pd = new W3PData();
|
|
await w3pd.init();
|
|
|
|
const ajv = new Ajv({ strict: false, allErrors: true });
|
|
addFormats(ajv);
|
|
|
|
async function loadSchemas() {
|
|
const out = {};
|
|
for await (const f of Deno.readDir(schemaDir)) {
|
|
const col = f.name.split(".")[0];
|
|
out[col] = yaml.load(await Deno.readTextFile(`${schemaDir}/${f.name}`));
|
|
}
|
|
return out;
|
|
}
|
|
|
|
function getDeepPropertiesKeys(obj, parentKey = '') {
|
|
let keys = [];
|
|
|
|
if (obj.hasOwnProperty('properties')) {
|
|
const properties = obj['properties'];
|
|
|
|
for (const key in properties) {
|
|
if (properties.hasOwnProperty(key)) {
|
|
const newKey = parentKey ? `${parentKey}.${key}` : key;
|
|
|
|
if (properties[key].hasOwnProperty('properties')) {
|
|
keys = keys.concat(getDeepPropertiesKeys(properties[key], newKey));
|
|
} else {
|
|
keys.push(newKey);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return keys;
|
|
}
|
|
|
|
const matrix = {
|
|
categories: "category",
|
|
projects: "project",
|
|
assets: "asset",
|
|
ecosystems: "ecosystem",
|
|
features: "feature",
|
|
usecases: "usecase",
|
|
ranks: "rank",
|
|
};
|
|
|
|
const schemaDir = "./schema";
|
|
const schemas = await loadSchemas();
|
|
|
|
schemas.rank.properties.references.items.properties.field.enum = getDeepPropertiesKeys(schemas.project);
|
|
schemas.project.properties.categories.items.enum = w3pd.data.categories.map((c) => c.id);
|
|
schemas.project.properties.usecases.items.enum = w3pd.data.usecases.map((c) => c.id);
|
|
|
|
for (const col of Object.keys(w3pd.data)) {
|
|
const validator = ajv.compile(schemas[matrix[col]]);
|
|
const ids = [];
|
|
|
|
for (const item of w3pd.data[col]) {
|
|
delete item._path;
|
|
const testName =
|
|
`${col}/${item.id} ` +
|
|
(col === "projects"
|
|
? `[${
|
|
Array.isArray(item.categories)
|
|
? item.categories.join(", ")
|
|
: item.categories
|
|
}]`
|
|
: "");
|
|
|
|
if (ids.includes(item.id)) {
|
|
Deno.test(testName + " (id-duplicates)", () => {
|
|
throw { message: `Duplicate project id="${item.id}"` };
|
|
});
|
|
}
|
|
|
|
if (Object.keys(item).length > 1) {
|
|
Deno.test(testName + " (schema)", () => {
|
|
if (!validator(item)) {
|
|
const betterErrors = betterAjvErrors({ errors: validator.errors });
|
|
// throw betterErrors;
|
|
console.log(betterErrors);
|
|
}
|
|
});
|
|
}
|
|
ids.push(item.id);
|
|
}
|
|
}
|