Add comments to JSON-schemas public methods
This commit is contained in:
		@@ -3,14 +3,26 @@ import values = require('lodash.values');
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
import { schemas } from './schemas';
 | 
					import { schemas } from './schemas';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * A validator for [JSON-schemas](http://json-schema.org/)
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
export class SchemaValidator {
 | 
					export class SchemaValidator {
 | 
				
			||||||
    private _validator: Validator;
 | 
					    private _validator: Validator;
 | 
				
			||||||
 | 
					    /**
 | 
				
			||||||
 | 
					     * Instantiates a SchemaValidator instance
 | 
				
			||||||
 | 
					     */
 | 
				
			||||||
    constructor() {
 | 
					    constructor() {
 | 
				
			||||||
        this._validator = new Validator();
 | 
					        this._validator = new Validator();
 | 
				
			||||||
        for (const schema of values(schemas)) {
 | 
					        for (const schema of values(schemas)) {
 | 
				
			||||||
            this._validator.addSchema(schema, schema.id);
 | 
					            this._validator.addSchema(schema, schema.id);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					    /**
 | 
				
			||||||
 | 
					     * Add a schema to the validator. All schemas and sub-schemas must be added to
 | 
				
			||||||
 | 
					     * the validator before the `validate` and `isValid` methods can be called with
 | 
				
			||||||
 | 
					     * instances of that schema.
 | 
				
			||||||
 | 
					     * @param schema The schema to add
 | 
				
			||||||
 | 
					     */
 | 
				
			||||||
    public addSchema(schema: Schema) {
 | 
					    public addSchema(schema: Schema) {
 | 
				
			||||||
        this._validator.addSchema(schema, schema.id);
 | 
					        this._validator.addSchema(schema, schema.id);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
@@ -18,10 +30,22 @@ export class SchemaValidator {
 | 
				
			|||||||
    // sub-types (e.g BigNumber) with a simpler string representation. Since BigNumber and other
 | 
					    // sub-types (e.g BigNumber) with a simpler string representation. Since BigNumber and other
 | 
				
			||||||
    // complex types implement the `toString` method, we can stringify the object and
 | 
					    // complex types implement the `toString` method, we can stringify the object and
 | 
				
			||||||
    // then parse it. The resultant object can then be checked using jsonschema.
 | 
					    // then parse it. The resultant object can then be checked using jsonschema.
 | 
				
			||||||
 | 
					    /**
 | 
				
			||||||
 | 
					     * Validate the JS object conforms to a specific JSON schema
 | 
				
			||||||
 | 
					     * @param instance JS object in question
 | 
				
			||||||
 | 
					     * @param schema Schema to check against
 | 
				
			||||||
 | 
					     * @returns The results of the validation
 | 
				
			||||||
 | 
					     */
 | 
				
			||||||
    public validate(instance: any, schema: Schema): ValidatorResult {
 | 
					    public validate(instance: any, schema: Schema): ValidatorResult {
 | 
				
			||||||
        const jsonSchemaCompatibleObject = JSON.parse(JSON.stringify(instance));
 | 
					        const jsonSchemaCompatibleObject = JSON.parse(JSON.stringify(instance));
 | 
				
			||||||
        return this._validator.validate(jsonSchemaCompatibleObject, schema);
 | 
					        return this._validator.validate(jsonSchemaCompatibleObject, schema);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					    /**
 | 
				
			||||||
 | 
					     * Check whether an instance properly adheres to a JSON schema
 | 
				
			||||||
 | 
					     * @param instance JS object in question
 | 
				
			||||||
 | 
					     * @param schema Schema to check against
 | 
				
			||||||
 | 
					     * @returns Whether or not the instance adheres to the schema
 | 
				
			||||||
 | 
					     */
 | 
				
			||||||
    public isValid(instance: any, schema: Schema): boolean {
 | 
					    public isValid(instance: any, schema: Schema): boolean {
 | 
				
			||||||
        const isValid = this.validate(instance, schema).errors.length === 0;
 | 
					        const isValid = this.validate(instance, schema).errors.length === 0;
 | 
				
			||||||
        return isValid;
 | 
					        return isValid;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user