From ca7389735c0b3d0379109909e113ab153cac4b02 Mon Sep 17 00:00:00 2001 From: Ruben Rodriguez Date: Mon, 6 May 2019 19:06:42 -0400 Subject: Simplified validateLicense() --- main_background.js | 37 +++++++++++++++---------------------- 1 file changed, 15 insertions(+), 22 deletions(-) diff --git a/main_background.js b/main_background.js index c3688f9..51f8145 100644 --- a/main_background.js +++ b/main_background.js @@ -610,36 +610,29 @@ function evaluate(script,name){ } - function validateLicense(matches) { if (!(Array.isArray(matches) && matches.length >= 4)){ return [false, "Malformed or unrecognized license tag."]; } - let [all, tag, link, id] = matches; - let license = null; - // The match contains a link: @license [magnet|http;//....] LicenseID - if (licenses[id]) { - license = licenses[id]; - for (let key in licenses){ - if (licenses[key]["Magnet link"] === link) - license = licenses[key]; - if (licenses[key]["URL"] === link) - license = licenses[key]; + + let [all, tag, first, second] = matches; + + for (let key in licenses){ + // Match by id on first or second parameter, ignoring case + if (key.toLowerCase() === first.toLowerCase() || + key.toLowerCase() === second.toLowerCase()) { + return [true, `Recognized license: "${licenses[key]['Name']}" `]; } - if (!(license["Magnet link"] === link || license["URL"] === link)){ - return [false, `License magnet link does not match for "${id}".`]; + // Match by link on first parameter (legacy) + if (licenses[key]["Magnet link"] === first.replace("&","&") || + licenses[key]["URL"] === first.replace("&","&")) { + return [true, `Recognized license: "${licenses[key]['Name']}".`]; } } - // The match does not contain a link: @license LicenseID - if (licenses[link]) { - license = licenses[link]; - id = link; - } - if(!license){ - return [false, `Unrecognized license "${id}"`]; - } - return [true, `Recognized license: "${license['Name']}".`]; + return [false, `Unrecognized license tag: "${all}"`]; } + + /** * * Evaluates the content of a script (license, if it is non-trivial) -- cgit v1.2.3