123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- 'use strict';
-
- var urilib = require('url');
-
- var attribute = require('./attribute');
- var helpers = require('./helpers');
- var ValidatorResult = helpers.ValidatorResult;
- var SchemaError = helpers.SchemaError;
- var SchemaContext = helpers.SchemaContext;
-
- /**
- * Creates a new Validator object
- * @name Validator
- * @constructor
- */
- var Validator = function Validator () {
- // Allow a validator instance to override global custom formats or to have their
- // own custom formats.
- this.customFormats = Object.create(Validator.prototype.customFormats);
- this.schemas = {};
- this.unresolvedRefs = [];
-
- // Use Object.create to make this extensible without Validator instances stepping on each other's toes.
- this.types = Object.create(types);
- this.attributes = Object.create(attribute.validators);
- };
-
- // Allow formats to be registered globally.
- Validator.prototype.customFormats = {};
-
- // Hint at the presence of a property
- Validator.prototype.schemas = null;
- Validator.prototype.types = null;
- Validator.prototype.attributes = null;
- Validator.prototype.unresolvedRefs = null;
-
- /**
- * Adds a schema with a certain urn to the Validator instance.
- * @param schema
- * @param urn
- * @return {Object}
- */
- Validator.prototype.addSchema = function addSchema (schema, uri) {
- if (!schema) {
- return null;
- }
- var ourUri = uri || schema.id;
- this.addSubSchema(ourUri, schema);
- if (ourUri) {
- this.schemas[ourUri] = schema;
- }
- return this.schemas[ourUri];
- };
-
- Validator.prototype.addSubSchema = function addSubSchema(baseuri, schema) {
- if(!schema || typeof schema!='object') return;
- // Mark all referenced schemas so we can tell later which schemas are referred to, but never defined
- if(schema.$ref){
- var resolvedUri = urilib.resolve(baseuri, schema.$ref);
- // Only mark unknown schemas as unresolved
- if (this.schemas[resolvedUri] === undefined) {
- this.schemas[resolvedUri] = null;
- this.unresolvedRefs.push(resolvedUri);
- }
- return;
- }
- var ourUri = schema.id && urilib.resolve(baseuri, schema.id);
- var ourBase = ourUri || baseuri;
- if (ourUri) {
- if(this.schemas[ourUri]){
- if(!helpers.deepCompareStrict(this.schemas[ourUri], schema)){
- throw new Error('Schema <'+schema+'> already exists with different definition');
- }
- return this.schemas[ourUri];
- }
- this.schemas[ourUri] = schema;
- var documentUri = ourUri.replace(/^([^#]*)#$/, '$1');
- this.schemas[documentUri] = schema;
- }
- this.addSubSchemaArray(ourBase, ((schema.items instanceof Array)?schema.items:[schema.items]));
- this.addSubSchemaArray(ourBase, ((schema.extends instanceof Array)?schema.extends:[schema.extends]));
- this.addSubSchema(ourBase, schema.additionalItems);
- this.addSubSchemaObject(ourBase, schema.properties);
- this.addSubSchema(ourBase, schema.additionalProperties);
- this.addSubSchemaObject(ourBase, schema.definitions);
- this.addSubSchemaObject(ourBase, schema.patternProperties);
- this.addSubSchemaObject(ourBase, schema.dependencies);
- this.addSubSchemaArray(ourBase, schema.disallow);
- this.addSubSchemaArray(ourBase, schema.allOf);
- this.addSubSchemaArray(ourBase, schema.anyOf);
- this.addSubSchemaArray(ourBase, schema.oneOf);
- this.addSubSchema(ourBase, schema.not);
- return this.schemas[ourUri];
- };
-
- Validator.prototype.addSubSchemaArray = function addSubSchemaArray(baseuri, schemas) {
- if(!(schemas instanceof Array)) return;
- for(var i=0; i<schemas.length; i++){
- this.addSubSchema(baseuri, schemas[i]);
- }
- };
-
- Validator.prototype.addSubSchemaObject = function addSubSchemaArray(baseuri, schemas) {
- if(!schemas || typeof schemas!='object') return;
- for(var p in schemas){
- this.addSubSchema(baseuri, schemas[p]);
- }
- };
-
-
-
- /**
- * Sets all the schemas of the Validator instance.
- * @param schemas
- */
- Validator.prototype.setSchemas = function setSchemas (schemas) {
- this.schemas = schemas;
- };
-
- /**
- * Returns the schema of a certain urn
- * @param urn
- */
- Validator.prototype.getSchema = function getSchema (urn) {
- return this.schemas[urn];
- };
-
- /**
- * Validates instance against the provided schema
- * @param instance
- * @param schema
- * @param [options]
- * @param [ctx]
- * @return {Array}
- */
- Validator.prototype.validate = function validate (instance, schema, options, ctx) {
- if (!options) {
- options = {};
- }
- var propertyName = options.propertyName || 'instance';
- // This will work so long as the function at uri.resolve() will resolve a relative URI to a relative URI
- var base = urilib.resolve(options.base||'/', schema.id||'');
- if(!ctx){
- ctx = new SchemaContext(schema, options, propertyName, base, Object.create(this.schemas));
- if (!ctx.schemas[base]) {
- ctx.schemas[base] = schema;
- }
- }
- if (schema) {
- var result = this.validateSchema(instance, schema, options, ctx);
- if (!result) {
- throw new Error('Result undefined');
- }
- return result;
- }
- throw new SchemaError('no schema specified', schema);
- };
-
- /**
- * @param Object schema
- * @return mixed schema uri or false
- */
- function shouldResolve(schema) {
- var ref = (typeof schema === 'string') ? schema : schema.$ref;
- if (typeof ref=='string') return ref;
- return false;
- }
-
- /**
- * Validates an instance against the schema (the actual work horse)
- * @param instance
- * @param schema
- * @param options
- * @param ctx
- * @private
- * @return {ValidatorResult}
- */
- Validator.prototype.validateSchema = function validateSchema (instance, schema, options, ctx) {
- var result = new ValidatorResult(instance, schema, options, ctx);
- if (!schema) {
- throw new Error("schema is undefined");
- }
-
- if (schema['extends']) {
- if (schema['extends'] instanceof Array) {
- var schemaobj = {schema: schema, ctx: ctx};
- schema['extends'].forEach(this.schemaTraverser.bind(this, schemaobj));
- schema = schemaobj.schema;
- schemaobj.schema = null;
- schemaobj.ctx = null;
- schemaobj = null;
- } else {
- schema = helpers.deepMerge(schema, this.superResolve(schema['extends'], ctx));
- }
- }
-
- var switchSchema;
- if (switchSchema = shouldResolve(schema)) {
- var resolved = this.resolve(schema, switchSchema, ctx);
- var subctx = new SchemaContext(resolved.subschema, options, ctx.propertyPath, resolved.switchSchema, ctx.schemas);
- return this.validateSchema(instance, resolved.subschema, options, subctx);
- }
-
- var skipAttributes = options && options.skipAttributes || [];
- // Validate each schema attribute against the instance
- for (var key in schema) {
- if (!attribute.ignoreProperties[key] && skipAttributes.indexOf(key) < 0) {
- var validatorErr = null;
- var validator = this.attributes[key];
- if (validator) {
- validatorErr = validator.call(this, instance, schema, options, ctx);
- } else if (options.allowUnknownAttributes === false) {
- // This represents an error with the schema itself, not an invalid instance
- throw new SchemaError("Unsupported attribute: " + key, schema);
- }
- if (validatorErr) {
- result.importErrors(validatorErr);
- }
- }
- }
-
- if (typeof options.rewrite == 'function') {
- var value = options.rewrite.call(this, instance, schema, options, ctx);
- result.instance = value;
- }
- return result;
- };
-
- /**
- * @private
- * @param Object schema
- * @param SchemaContext ctx
- * @returns Object schema or resolved schema
- */
- Validator.prototype.schemaTraverser = function schemaTraverser (schemaobj, s) {
- schemaobj.schema = helpers.deepMerge(schemaobj.schema, this.superResolve(s, schemaobj.ctx));
- }
-
- /**
- * @private
- * @param Object schema
- * @param SchemaContext ctx
- * @returns Object schema or resolved schema
- */
- Validator.prototype.superResolve = function superResolve (schema, ctx) {
- var ref;
- if(ref = shouldResolve(schema)) {
- return this.resolve(schema, ref, ctx).subschema;
- }
- return schema;
- }
-
- /**
- * @private
- * @param Object schema
- * @param Object switchSchema
- * @param SchemaContext ctx
- * @return Object resolved schemas {subschema:String, switchSchema: String}
- * @throws SchemaError
- */
- Validator.prototype.resolve = function resolve (schema, switchSchema, ctx) {
- switchSchema = ctx.resolve(switchSchema);
- // First see if the schema exists under the provided URI
- if (ctx.schemas[switchSchema]) {
- return {subschema: ctx.schemas[switchSchema], switchSchema: switchSchema};
- }
- // Else try walking the property pointer
- var parsed = urilib.parse(switchSchema);
- var fragment = parsed && parsed.hash;
- var document = fragment && fragment.length && switchSchema.substr(0, switchSchema.length - fragment.length);
- if (!document || !ctx.schemas[document]) {
- throw new SchemaError("no such schema <" + switchSchema + ">", schema);
- }
- var subschema = helpers.objectGetPath(ctx.schemas[document], fragment.substr(1));
- if(subschema===undefined){
- throw new SchemaError("no such schema " + fragment + " located in <" + document + ">", schema);
- }
- return {subschema: subschema, switchSchema: switchSchema};
- };
-
- /**
- * Tests whether the instance if of a certain type.
- * @private
- * @param instance
- * @param schema
- * @param options
- * @param ctx
- * @param type
- * @return {boolean}
- */
- Validator.prototype.testType = function validateType (instance, schema, options, ctx, type) {
- if (typeof this.types[type] == 'function') {
- return this.types[type].call(this, instance);
- }
- if (type && typeof type == 'object') {
- var res = this.validateSchema(instance, type, options, ctx);
- return res === undefined || !(res && res.errors.length);
- }
- // Undefined or properties not on the list are acceptable, same as not being defined
- return true;
- };
-
- var types = Validator.prototype.types = {};
- types.string = function testString (instance) {
- return typeof instance == 'string';
- };
- types.number = function testNumber (instance) {
- // isFinite returns false for NaN, Infinity, and -Infinity
- return typeof instance == 'number' && isFinite(instance);
- };
- types.integer = function testInteger (instance) {
- return (typeof instance == 'number') && instance % 1 === 0;
- };
- types.boolean = function testBoolean (instance) {
- return typeof instance == 'boolean';
- };
- types.array = function testArray (instance) {
- return Array.isArray(instance);
- };
- types['null'] = function testNull (instance) {
- return instance === null;
- };
- types.date = function testDate (instance) {
- return instance instanceof Date;
- };
- types.any = function testAny (instance) {
- return true;
- };
- types.object = function testObject (instance) {
- // TODO: fix this - see #15
- return instance && (typeof instance) === 'object' && !(instance instanceof Array) && !(instance instanceof Date);
- };
-
- module.exports = Validator;
|