remove command-line utility
This commit is contained in:
parent
e7d5e5eda1
commit
4e80bea6d1
|
@ -1,70 +0,0 @@
|
|||
#!/usr/bin/env node
|
||||
|
||||
/*! @license ©2014 Miel Vander Sande - IDLab / imec / Ghent University */
|
||||
/* Command-line utility to validate Turtle files. */
|
||||
|
||||
var fs = require('fs'),
|
||||
http = require('http');
|
||||
url = require('url'),
|
||||
fs = require('fs'),
|
||||
validate = require('./lib/validator.js');
|
||||
|
||||
var help = function () {
|
||||
// In all other cases, let's help the user and return some help
|
||||
console.log('RDF NTriples/Turtle validator using Ruben Verborgh\'s N3 nodejs library');
|
||||
console.log('© 2014 - IDLab - Ghent University - imec');
|
||||
console.log('Source code: https://github.com/MMLab/TurtleValidator');
|
||||
console.log('');
|
||||
console.log('Examples:');
|
||||
console.log('');
|
||||
console.log(' $ ttl <path-to-file>');
|
||||
console.log(' $ curl http://data.linkeddatafragments.org/dbpedia -H "accept: text/turtle" | ttl');
|
||||
console.log(' $ ttl http://triples.demo.thedatatank.com/demo.ttl');
|
||||
console.log(' $ ttl <path-to-file> <path-to-second-file>');
|
||||
};
|
||||
|
||||
var args = process.argv.slice(2);
|
||||
|
||||
if (args.length > 0 && (args[0] === "-h" || args[0] === "--help"))
|
||||
return help();
|
||||
|
||||
if (args.length === 0) {
|
||||
validate(process.stdin, showValidation);
|
||||
} else if (args.length > 0) {
|
||||
args.forEach(validateArgument);
|
||||
}
|
||||
|
||||
function validateArgument(arg) {
|
||||
// Create a stream from the file, whether it is a local file or a http stream
|
||||
var parsedUrl = url.parse(arg);
|
||||
switch (parsedUrl.protocol) {
|
||||
case 'https:':
|
||||
http = require('https');
|
||||
case 'http:':
|
||||
http.get(parsedUrl.href, function (res) {
|
||||
validate(res, showValidation);
|
||||
}).on('error', function (e) {
|
||||
console.log("Got error: " + e.message);
|
||||
process.exit(1);
|
||||
});
|
||||
break;
|
||||
case null:
|
||||
validate(fs.createReadStream(parsedUrl.href), showValidation);
|
||||
break;
|
||||
default:
|
||||
console.log('Cannot access %s: "%s" not supported', parsedUrl.href, parsedUrl.protocol)
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
// Use stdio as an input stream
|
||||
function showValidation(feedback) {
|
||||
feedback.errors.forEach(function (error) {
|
||||
console.log('ERROR: ' + error);
|
||||
});
|
||||
feedback.warnings.forEach(function (warning) {
|
||||
console.log('WARNING: ' + warning);
|
||||
});
|
||||
console.log("Validator finished with " + feedback.warnings.length + " warnings and " + feedback.errors.length + " errors.");
|
||||
process.exit(feedback.errors.length > 0 ? 2 : 0);
|
||||
}
|
Loading…
Reference in New Issue