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.");
}
const results = [];
// Load JSON from the path provided in the first CLI arg
const services = await loadData(process.argv[2]);
for (let service of services) {
results.push({
// Run the validators against every service in the list
const results = services.map(service => {
return {
id: service.id,
hasValidID: hasValidID(service),
hasValidStatus: hasValidStatus(service),
hasValidName: hasValidName(service),
hasValidDescription: hasValidDescription(service),
hasValidURL: hasValidURL(service),
hasValidOrganisation: hasValidOrganisation(service),
hasValidContact: hasValidContact(service)
});
...Object.keys(validators).reduce((acc, name) => {
acc[name] = validators[name].fn(service);
return acc;
}, {})
};
});
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;
console.log(`# of services with a valid ID: ${totalWithValidID}/${results.length} (${Math.round((totalWithValidID/results.length)*100)}%)`);
// const totalWithValidStatus = results.filter(x => x.hasValidStatus).length;
// 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;
console.log(`# of services with a valid status: ${totalWithValidStatus}/${results.length} (${Math.round((totalWithValidStatus/results.length)*100)}%)`);
// const totalWithValidName = results.filter(x => x.hasValidName).length;
// 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;
console.log(`# of services with a valid name: ${totalWithValidName}/${results.length} (${Math.round((totalWithValidName/results.length)*100)}%)`);
// const totalWithValidDescription = results.filter(x => x.hasValidDescription).length;
// 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;
console.log(`# of services with a valid description: ${totalWithValidDescription}/${results.length} (${Math.round((totalWithValidDescription/results.length)*100)}%)`);
// const totalWithValidURL = results.filter(x => x.hasValidURL).length;
// 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;
console.log(`# of services with a valid URL: ${totalWithValidURL}/${results.length} (${Math.round((totalWithValidURL/results.length)*100)}%)`);
// const totalWithValidOrganisation = results.filter(x => x.hasValidOrganisation).length;
// 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;
console.log(`# of services with a valid organisation: ${totalWithValidOrganisation}/${results.length} (${Math.round((totalWithValidOrganisation/results.length)*100)}%)`);
// const totalWithValidContact = results.filter(x => x.hasValidContact).length;
// 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(`# of services with a valid contact: ${totalWithValidContact}/${results.length} (${Math.round((totalWithValidContact/results.length)*100)}%)`);
// console.log("--------------------");
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 =>
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)}%)`);
// 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);
}
// Validators
const hasValidID = (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());
}
const hasValidName = (s) => typeof s.name === "string" && s.name.length > 0;
const hasValidDescription = (s) => typeof s.description === "string" && s.description.length > 0;
const hasValidURL = (s) => {
try {
new URL(s.url);
return true;
} catch (_) {
return false;
const validators = {
id: {
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());
},
desc: "# of services with a valid ID"
},
status: {
fn: (s) => s.status === "active",
desc: "# of services with a valid status"
},
name: {
fn: (s) => typeof s.name === "string" && s.name.length > 0,
desc: "# of services with a valid name"
},
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";