// Load modules var Any = require('./any'); var Cast = require('./cast'); var Errors = require('./errors'); var Hoek = require('hoek'); // Declare internals var internals = {}; internals.Array = function () { Any.call(this); this._type = 'array'; this._inner.inclusions = []; this._inner.exclusions = []; this._flags.sparse = false; }; Hoek.inherits(internals.Array, Any); internals.Array.prototype._base = function (value, state, options) { var result = { value: value }; if (typeof value === 'string' && options.convert) { try { var converted = JSON.parse(value); if (Array.isArray(converted)) { result.value = converted; } } catch (e) { } } var isArray = Array.isArray(result.value); var wasArray = isArray; if (options.convert && this._flags.single && !isArray) { result.value = [result.value]; isArray = true; } if (!isArray) { result.errors = Errors.create('array.base', null, state, options); return result; } if (this._inner.inclusions.length || this._inner.exclusions.length || !this._flags.sparse) { if (wasArray) { result.value = result.value.slice(0); } var check = function () { for (var v = 0, vl = result.value.length; v < vl; ++v) { var item = result.value[v]; var isValid = false; var localState = { key: v, path: (state.path ? state.path + '.' : '') + v, parent: result.value, reference: state.reference }; // Sparse if (!this._flags.sparse && item === undefined) { result.errors = Errors.create('array.sparse', null, { key: state.key, path: localState.path }, options); return result; } // Exclusions for (var i = 0, il = this._inner.exclusions.length; i < il; ++i) { var res = this._inner.exclusions[i]._validate(item, localState, {}); // Not passing options to use defaults if (!res.errors) { result.errors = Errors.create(wasArray ? 'array.excludes' : 'array.excludesSingle', { pos: v }, { key: state.key, path: localState.path }, options); return result; } } // Inclusions for (i = 0, il = this._inner.inclusions.length; i < il; ++i) { var res = this._inner.inclusions[i]._validate(item, localState, options); if (!res.errors) { result.value[v] = res.value; isValid = true; break; } // Return the actual error if only one inclusion defined if (il === 1) { result.errors = Errors.create(wasArray ? 'array.includesOne' : 'array.includesOneSingle', { pos: v, reason: res.errors }, { key: state.key, path: localState.path }, options); return result; } } if (this._inner.inclusions.length && !isValid) { result.errors = Errors.create(wasArray ? 'array.includes' : 'array.includesSingle', { pos: v }, { key: state.key, path: localState.path }, options); return result; } } return result; }; if (check.call(this).errors && wasArray && options.convert && this._flags.single) { // Attempt a 2nd pass by putting the array inside one. var previousErrors = result.errors; delete result.errors; result.value = [result.value]; if (check.call(this).errors) { // Restore previous errors and value since this didn't validate either. result.errors = previousErrors; result.value = result.value[0]; } } } return result; }; internals.Array.prototype.describe = function () { var description = Any.prototype.describe.call(this); if (this._inner.inclusions.length) { description.includes = []; for (var i = 0, il = this._inner.inclusions.length; i < il; ++i) { description.includes.push(this._inner.inclusions[i].describe()); } } if (this._inner.exclusions.length) { description.excludes = []; for (var i = 0, il = this._inner.exclusions.length; i < il; ++i) { description.excludes.push(this._inner.exclusions[i].describe()); } } return description; }; internals.Array.prototype.includes = function () { var inclusions = Hoek.flatten(Array.prototype.slice.call(arguments)).map(function (type) { return Cast.schema(type); }); var obj = this.clone(); obj._inner.inclusions = obj._inner.inclusions.concat(inclusions); return obj; }; internals.Array.prototype.excludes = function () { var exclusions = Hoek.flatten(Array.prototype.slice.call(arguments)).map(function (type) { return Cast.schema(type); }); var obj = this.clone(); obj._inner.exclusions = obj._inner.exclusions.concat(exclusions); return obj; }; internals.Array.prototype.min = function (limit) { Hoek.assert(Hoek.isInteger(limit) && limit >= 0, 'limit must be a positive integer'); return this._test('min', limit, function (value, state, options) { if (value.length >= limit) { return null; } return Errors.create('array.min', { limit: limit }, state, options); }); }; internals.Array.prototype.max = function (limit) { Hoek.assert(Hoek.isInteger(limit) && limit >= 0, 'limit must be a positive integer'); return this._test('max', limit, function (value, state, options) { if (value.length <= limit) { return null; } return Errors.create('array.max', { limit: limit }, state, options); }); }; internals.Array.prototype.length = function (limit) { Hoek.assert(Hoek.isInteger(limit) && limit >= 0, 'limit must be a positive integer'); return this._test('length', limit, function (value, state, options) { if (value.length === limit) { return null; } return Errors.create('array.length', { limit: limit }, state, options); }); }; internals.Array.prototype.unique = function () { return this._test('unique', undefined, function (value, state, options) { var found = { string: {}, number: {}, undefined: {}, boolean: {}, object: [], function: [] }; for (var i = 0, il = value.length; i < il; ++i) { var item = value[i]; var type = typeof item; var records = found[type]; // All available types are supported, so it's not possible to reach 100% coverage without ignoring this line. // I still want to keep the test for future js versions with new types (eg. Symbol). if (/* $lab:coverage:off$ */ records /* $lab:coverage:on$ */) { if (Array.isArray(records)) { for (var r = 0, rl = records.length; r < rl; ++r) { if (Hoek.deepEqual(records[r], item)) { return Errors.create('array.unique', { pos: i }, state, options); } } records.push(item); } else { if (records[item]) { return Errors.create('array.unique', { pos: i }, state, options); } records[item] = true; } } } }); }; internals.Array.prototype.sparse = function (enabled) { var obj = this.clone(); obj._flags.sparse = enabled === undefined ? true : !!enabled; return obj; }; internals.Array.prototype.single = function (enabled) { var obj = this.clone(); obj._flags.single = enabled === undefined ? true : !!enabled; return obj; } module.exports = new internals.Array();