Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update #1

Merged
merged 7 commits into from
Sep 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
135 changes: 133 additions & 2 deletions API.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,134 @@
### Introduction

**joi** lets you describe your data using a simple, intuitive, and readable language. Like the rest of the [hapi ecosystem](https://hapi.dev) it fits in, **joi** allows you to describe your data for both input and output validation, as part of a hapi HTTP server or standalone.

#### Example

```js
const Joi = require('@hapi/joi');

const schema = Joi.object({
username: Joi.string()
.alphanum()
.min(3)
.max(30)
.required(),

password: Joi.string()
.pattern(/^[a-zA-Z0-9]{3,30}$/),

repeat_password: Joi.ref('password'),

access_token: [
Joi.string(),
Joi.number()
],

birth_year: Joi.number()
.integer()
.min(1900)
.max(2013),

email: Joi.string()
.email({ minDomainSegments: 2, tlds: { allow: ['com', 'net'] } })
})
.with('username', 'birth_year')
.xor('password', 'access_token')
.with('password', 'repeat_password');


schema.validate({ username: 'abc', birth_year: 1994 });
// -> { value: { username: 'abc', birth_year: 1994 } }

schema.validate({});
// -> { value: {}, error: '"username" is required' }

// Also -

try {
const value = await schema.validateAsync({ username: 'abc', birth_year: 1994 });
}
catch (err) { }
```

The above schema defines the following constraints:
* `username`
* a required string
* must contain only alphanumeric characters
* at least 3 characters long but no more than 30
* must be accompanied by `birth_year`
* `password`
* an optional string
* must satisfy the custom regex pattern
* cannot appear together with `access_token`
* must be accompanied by `repeat_password` and equal to it
* `access_token`
* an optional, unconstrained string or number
* `birth_year`
* an integer between 1900 and 2013
* `email`
* a valid email address string
* must have two domain parts e.g. `example.com`
* TLD must be `.com` or `.net`

### General Usage

Usage is a two steps process:

First, a schema is constructed using the provided types and constraints:

```js
const schema = Joi.object({
a: Joi.string()
});
```

Note that **joi** schema objects are immutable which means every additional rule added (e.g.
`.min(5)`) will return a new schema object.

Second, the value is validated against the defined schema:

```js
const { error, value } = schema.validate({ a: 'a string' });
```

If the input is valid, then the `error` will be `null`. If the input is invalid, `error` is assigned
a [`ValidationError`](https://github.com/hapijs/joi/blob/master/API.md#validationerror) object
providing more information.

The schema can be a plain JavaScript object where every key is assigned a **joi** type, or it can be a **joi** type directly:

```js
const schema = Joi.string().min(10);
```

If the schema is a **joi** type, the `schema.validate(value)` can be called directly on the type. When passing a non-type schema object,
the module converts it internally to an object() type equivalent to:

```js
const schema = Joi.object().keys({
a: Joi.string()
});
```

When validating a schema:

* Values (or keys in case of objects) are optional by default.

```js
Joi.string().validate(undefined); // validates fine
```

To disallow this behavior, you can either set the schema as `required()`, or set `presence` to `"required"` when passing `options`:

```js
Joi.string().required().validate(undefined);
// or
Joi.string().validate(undefined, /* options */ { presence: "required" });
```

* Strings are utf-8 encoded by default.
* Rules are defined in an additive fashion and evaluated in order, first the inclusive rules, then the exclusive rules.

### `assert(value, schema, [message], [options])`

Expand Down Expand Up @@ -2965,11 +3096,11 @@ const custom = Joi.extend((joi) => {
'million.round': '"{{#label}}" must be a round number',
'million.dividable': '"{{#label}}" must be dividable by {{#q}}'
},
coerce(schema, value, helpers) {
coerce(value, helpers) {

// Only called when prefs.convert is true

if (schema.$_getRule('round')) {
if (helpers.schema.$_getRule('round')) {
return { value: Math.round(value) };
}
},
Expand Down
143 changes: 8 additions & 135 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,142 +2,15 @@

# @hapi/joi

The most powerful schema description language and data validator for JavaScript.
#### The most powerful schema description language and data validator for JavaScript.

[![Build Status](https://travis-ci.org/hapijs/joi.svg?branch=master)](https://travis-ci.org/hapijs/joi)
**joi** is part of the **hapi** ecosystem and was designed to work seamlessly with the [hapi web framework](https://hapi.dev) and its other components (but works great on its own or with other frameworks). If you are using a different web framework and find this module useful, check out [hapi](https://hapi.dev) – they work even better together.

## Introduction
### Visit the [hapi.dev](https://hapi.dev) Developer Portal for tutorials, documentation, and support

**joi** lets you describe your data using a simple, intuitive, and readable language. Like the rest of the [hapi ecosystem](https://hapi.dev) it fits in, **joi** allows you to describe your data for both input and output validation, as part of a hapi HTTP server or standalone.
## Useful resources

## API

See the detailed [API Reference](https://hapi.dev/family/joi/).

## Example

```js
const Joi = require('@hapi/joi');

const schema = Joi.object({
username: Joi.string()
.alphanum()
.min(3)
.max(30)
.required(),

password: Joi.string()
.pattern(/^[a-zA-Z0-9]{3,30}$/),

repeat_password: Joi.ref('password'),

access_token: [
Joi.string(),
Joi.number()
],

birth_year: Joi.number()
.integer()
.min(1900)
.max(2013),

email: Joi.string()
.email({ minDomainSegments: 2, tlds: { allow: ['com', 'net'] } })
})
.with('username', 'birth_year')
.xor('password', 'access_token')
.with('password', 'repeat_password');


schema.validate({ username: 'abc', birth_year: 1994 });
// -> { value: { username: 'abc', birth_year: 1994 } }

schema.validate({});
// -> { value: {}, error: '"username" is required' }

// Also -

try {
const value = await schema.validateAsync({ username: 'abc', birth_year: 1994 });
}
catch (err) { }
```

The above schema defines the following constraints:
* `username`
* a required string
* must contain only alphanumeric characters
* at least 3 characters long but no more than 30
* must be accompanied by `birth_year`
* `password`
* an optional string
* must satisfy the custom regex pattern
* cannot appear together with `access_token`
* must be accompanied by `repeat_password` and equal to it
* `access_token`
* an optional, unconstrained string or number
* `birth_year`
* an integer between 1900 and 2013
* `email`
* a valid email address string
* must have two domain parts e.g. `example.com`
* TLD must be `.com` or `.net`

## Usage

Usage is a two steps process:

First, a schema is constructed using the provided types and constraints:

```js
const schema = Joi.object({
a: Joi.string()
});
```

Note that **joi** schema objects are immutable which means every additional rule added (e.g.
`.min(5)`) will return a new schema object.

Second, the value is validated against the defined schema:

```js
const { error, value } = schema.validate({ a: 'a string' });
```

If the input is valid, then the `error` will be `null`. If the input is invalid, `error` is assigned
a [`ValidationError`](https://github.com/hapijs/joi/blob/master/API.md#validationerror) object
providing more information.

The schema can be a plain JavaScript object where every key is assigned a **joi** type, or it can be a **joi** type directly:

```js
const schema = Joi.string().min(10);
```

If the schema is a **joi** type, the `schema.validate(value)` can be called directly on the type. When passing a non-type schema object,
the module converts it internally to an object() type equivalent to:

```js
const schema = Joi.object().keys({
a: Joi.string()
});
```

When validating a schema:

* Values (or keys in case of objects) are optional by default.

```js
Joi.string().validate(undefined); // validates fine
```

To disallow this behavior, you can either set the schema as `required()`, or set `presence` to `"required"` when passing `options`:

```js
Joi.string().required().validate(undefined);
// or
Joi.string().validate(undefined, /* options */ { presence: "required" });
```

* Strings are utf-8 encoded by default.
* Rules are defined in an additive fashion and evaluated in order, first the inclusive rules, then the exclusive rules.
- [Documentation and API](https://hapi.dev/family/joi/)
- [Versions status](https://hapi.dev/resources/status/)
- [Project policies](https://hapi.dev/policies/)
- [Free and commercial support options](https://hapi.dev/support/)
4 changes: 2 additions & 2 deletions test/modify.js
Original file line number Diff line number Diff line change
Expand Up @@ -722,9 +722,9 @@ describe('Modify', () => {

const custom = Joi.extend({
type: 'special',
coerce(schema, value, helpers) {
coerce(value, helpers) {

const swap = schema.$_getFlag('swap');
const swap = helpers.schema.$_getFlag('swap');
if (swap &&
swap.$_match(value, helpers.state.nest(swap), helpers.prefs)) {

Expand Down