Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
a9f54481f3 chore: refactor to cut down on repetition 2024-12-18 14:29:29 +00:00

View file

@ -6,56 +6,60 @@ const fs = require('fs');
throw new Error("Path not provided."); throw new Error("Path not provided.");
} }
const results = []; // Load JSON from the path provided in the first CLI arg
const services = await loadData(process.argv[2]); const services = await loadData(process.argv[2]);
for (let service of services) { // Run the validators against every service in the list
results.push({ const results = services.map(service => {
return {
id: service.id, id: service.id,
hasValidID: hasValidID(service), ...Object.keys(validators).reduce((acc, name) => {
hasValidStatus: hasValidStatus(service), acc[name] = validators[name].fn(service);
hasValidName: hasValidName(service), return acc;
hasValidDescription: hasValidDescription(service), }, {})
hasValidURL: hasValidURL(service), };
hasValidOrganisation: hasValidOrganisation(service), });
hasValidContact: hasValidContact(service)
}); console.table(results);
for (let validatorName in Object.keys(validators)) {
const validator = validators[validatorName];
const total = results.filter(x => x[validator])
} }
// console.table(results); // const totalWithValidID = results.filter(x => x.hasValidID).length;
// console.log(`# of services with a valid ID: ${totalWithValidID}/${results.length} (${Math.round((totalWithValidID/results.length)*100)}%)`);
const totalWithValidID = results.filter(x => x.hasValidID).length; // const totalWithValidStatus = results.filter(x => x.hasValidStatus).length;
console.log(`# of services with a valid ID: ${totalWithValidID}/${results.length} (${Math.round((totalWithValidID/results.length)*100)}%)`); // console.log(`# of services with a valid status: ${totalWithValidStatus}/${results.length} (${Math.round((totalWithValidStatus/results.length)*100)}%)`);
const totalWithValidStatus = results.filter(x => x.hasValidStatus).length; // const totalWithValidName = results.filter(x => x.hasValidName).length;
console.log(`# of services with a valid status: ${totalWithValidStatus}/${results.length} (${Math.round((totalWithValidStatus/results.length)*100)}%)`); // console.log(`# of services with a valid name: ${totalWithValidName}/${results.length} (${Math.round((totalWithValidName/results.length)*100)}%)`);
const totalWithValidName = results.filter(x => x.hasValidName).length; // const totalWithValidDescription = results.filter(x => x.hasValidDescription).length;
console.log(`# of services with a valid name: ${totalWithValidName}/${results.length} (${Math.round((totalWithValidName/results.length)*100)}%)`); // console.log(`# of services with a valid description: ${totalWithValidDescription}/${results.length} (${Math.round((totalWithValidDescription/results.length)*100)}%)`);
const totalWithValidDescription = results.filter(x => x.hasValidDescription).length; // const totalWithValidURL = results.filter(x => x.hasValidURL).length;
console.log(`# of services with a valid description: ${totalWithValidDescription}/${results.length} (${Math.round((totalWithValidDescription/results.length)*100)}%)`); // console.log(`# of services with a valid URL: ${totalWithValidURL}/${results.length} (${Math.round((totalWithValidURL/results.length)*100)}%)`);
const totalWithValidURL = results.filter(x => x.hasValidURL).length; // const totalWithValidOrganisation = results.filter(x => x.hasValidOrganisation).length;
console.log(`# of services with a valid URL: ${totalWithValidURL}/${results.length} (${Math.round((totalWithValidURL/results.length)*100)}%)`); // console.log(`# of services with a valid organisation: ${totalWithValidOrganisation}/${results.length} (${Math.round((totalWithValidOrganisation/results.length)*100)}%)`);
const totalWithValidOrganisation = results.filter(x => x.hasValidOrganisation).length; // const totalWithValidContact = results.filter(x => x.hasValidContact).length;
console.log(`# of services with a valid organisation: ${totalWithValidOrganisation}/${results.length} (${Math.round((totalWithValidOrganisation/results.length)*100)}%)`); // console.log(`# of services with a valid contact: ${totalWithValidContact}/${results.length} (${Math.round((totalWithValidContact/results.length)*100)}%)`);
const totalWithValidContact = results.filter(x => x.hasValidContact).length; // console.log("--------------------");
console.log(`# of services with a valid contact: ${totalWithValidContact}/${results.length} (${Math.round((totalWithValidContact/results.length)*100)}%)`);
console.log("--------------------"); // const totalUsableServices = results.filter(x =>
// x.hasValidID &&
// x.hasValidStatus &&
// x.hasValidName &&
// x.hasValidDescription &&
// x.hasValidURL &&
// x.hasValidOrganisation &&
// x.hasValidContact).length;
const totalUsableServices = results.filter(x => // console.log(`# of valid usable services: ${totalUsableServices}/${results.length} (${Math.round((totalUsableServices/results.length)*100)}%)`);
x.hasValidID &&
x.hasValidStatus &&
x.hasValidName &&
x.hasValidDescription &&
x.hasValidURL &&
x.hasValidOrganisation &&
x.hasValidContact).length;
console.log(`# of valid usable services: ${totalUsableServices}/${results.length} (${Math.round((totalUsableServices/results.length)*100)}%)`);
})(); })();
@ -67,27 +71,42 @@ async function loadData(path) {
return JSON.parse(text); return JSON.parse(text);
} }
// Validators const validators = {
id: {
const hasValidID = (s) => { fn: (s) => {
return /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/i.test(s.id.trim()); return /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/i.test(s.id.trim());
} },
desc: "# of services with a valid ID"
const hasValidName = (s) => typeof s.name === "string" && s.name.length > 0; },
status: {
const hasValidDescription = (s) => typeof s.description === "string" && s.description.length > 0; fn: (s) => s.status === "active",
desc: "# of services with a valid status"
const hasValidURL = (s) => { },
try { name: {
new URL(s.url); fn: (s) => typeof s.name === "string" && s.name.length > 0,
return true; desc: "# of services with a valid name"
} catch (_) { },
return false; description: {
fn: (s) => typeof s.description === "string" && s.description.length > 0,
desc: "# of services with a valid description"
},
url: {
fn: (s) => {
try {
new URL(s.url);
return true;
} catch (_) {
return false;
}
},
desc: "# of services with a valid URL"
},
org: {
fn: (s) => !!s.organization?.id && !!s.organization?.name,
desc: "# of services with a valid organisation"
},
contact: {
fn: (s) => !!s.email?.length > 0,
desc: "# of services with a valid contact"
} }
}; };
const hasValidOrganisation = (s) => !!s.organization?.id && !!s.organization?.name;
const hasValidContact = (s) => !!s.email?.length > 0;
const hasValidStatus = (s) => s.status === "active";