tramway-core-validation
v0.1.0
Published
An entity validation module for the Tramway framework
Readme
Tramway Validation is a simple adapter to integrate validations modules with the Tramway core. It includes:
- A standard Schema entity with mappers to keep your code agnostic of validation libraries.
- A Validation Service that will make the necessary conversions to your Validation Provider when needed.
- Standardized Invalid Schema Error to be consistent regardless of provider
Installation:
npm install --save tramway-core-validation
Getting Started
Choose and install a logging plugin like tramway-validation-joi.
With dependency injection you can add the following entries to your services config files. Be sure to do the same with your plugin.
In this example, we set up everything that's needed for validation with joi in the src/config/services/validation.js file and add the necessary mappings to the parameters in src/config/parameters/global.
import ValidationService, {Mapper} from 'tramway-core-validation';
import JoiValidationProvider, {JoiSchemaFactory} from 'tramway-validation-joi';
export default {
"service.validation": {
"class": ValidationService,
"constructor": [
{"type": "service", "key": "provider.validation:joi"},
{"type": "service", "key": "factory.validation:joi"},
],
},
"provider.validation:joi": {
"class": JoiValidationProvider,
},
"factory.validation:joi": {
"class": JoiSchemaFactory,
"constructor": [
{"type": "service", "key": "mapper.validation:joi"},
],
},
"mapper.validation:joi": {
"class": Mapper,
"constructor": [
{"type": "parameter", "key": "joi_mapping"}
],
},
};Then add a validation.js file under src/config/parameters/global:
import {
JoiMapping,
} from 'tramway-validation-joi';
export default {
"joi_mapping": JoiMapping,
};
Then in the index.js under src/config/parameters/global:
import app from './app';
import cors from './cors';
import port from './port';
import routes from './routes';
import validation from './validation;
export default {
app,
cors,
port,
routes,
...validation,
}Creating your first schema
The new Schema class contains static helper methods to help assign types to your values. Your Schema should have the same properties as the Entity class you want to validate.
Example:
The following example assumes you use
babel-plugin-transform-class-propertiesas part of your babel plugins. The same can be achieved via the constructor.
For the following entity:
entities/Sample.js:
import {Entity} from 'tramway-core-connection';
export default class Sample extends Entity {
id;
name;
email;
card;
age;
token;
password;
}The following schema:
import {Schema} from 'tramway-core-validation';
export default class Sample extends Schema {
id = Schema.guid().required();
name = Schema.string();
email = Schema.email();
card = Schema.creditCard();
age = Schema.intRange(18, 100);
token = Schema.token().excludes('password');
password = Schema.string({minLength: 5}).excludes('token');
}Validating an instance of the entity against the schema
You can use the validate method on the Validate Service wherever it is used.
import {Sample} from '../entities';
import {Sample as SampleSchema} from '../schemas';
...
let sample = new Sample();
...
try {
sample = this.validationService.validate(sample, new SampleSchema());
} catch (e) {
//handle the validation exception
}Schema helper methods
All Schema helper methods return an instance of SchemaMeta which includes some extra configurations to the following:
| Method | Arguments | Description |
| --- | --- | --- | --- |
| regex | RegExp | String must satisfy RegExp |
| range | min: number, max: number | Ensures number is within the range |
| intRange | min: number, max: number | Ensures number is within the range and is an integer |
| string | {length: number, minLength: number, maxLength: number, truncate: boolean, uppercase: boolean, lowercase: boolean} | Ensure value is a string and optionally meets certain characteristics |
| number | | Ensures value is a number |
| email | options: Object | Ensures string is an email with configurable options |
| entity | entityName: string | Ensures an object is a certain type of entity |
| creditCard | | Ensures the string is a valid credit card number |
| token | | Ensures the string is a valid token |
| ip | {version, cidr} | Ensures the string is a valid ip address |
| uri | {scheme, allowRelative, relativeOnly, allowQuerySquareBrackets} | Ensures the string is a valid uri |
| guid | {version} | Ensures the string is a valid guid or uuid |
| isoDate | | Ensures the string is an iso-formatted date string |
| timestamp | type: 'unix'/'javascript' | Ensures a number is a valid timestamp |
| date | {min, max, greater, less} | Ensures the validity of a date with optional constraints |
| custom | provider schema object | Let's you use a schema that is specific to a validation provider |
The SchemaMeta instance which will be saved allows you to set some additional information using a fluent interface.
| Method | Arguments | Description | | --- | --- | --- | | required | | Sets the schema value to be required | | default | value: any | Sets a default value to apply if none is set | | accompanies | ...keys: string | A list of keys that must be present when the corresponding key is present | | excludes | ...keys: string | A list of keys that must not be present when the corresponding key is present |
Error handling
The validation library includes an error object that should be used by all providers. The InvalidSchemaError error tracks the error message and the properties of the object that triggered it.
The error contains two additional methods, getErrors which returns a key-value object of property to message and getErrorKeys which returns an array of keys as properties that are effected.
