1.7.1 • Published 3 years ago

mongoose-valid8 v1.7.1

Weekly downloads
2,655
License
MIT
Repository
github
Last release
3 years ago

mongoose-valid8

Build Status Dependencies Status Coverage Status GitHub License

Commitizen Friendly code style: prettier Code Style npm version

Additional mongoose schema validations.

Requirements

Installation

npm install mongoose mongoose-valid8 --save

Usage

import mongoose from 'mongoose'
import 'mongoose-valid8'
import {model, Schema} from 'mongoose'

const User = model('User', new Schema({
  email: {
    type: String,
    email: true
  }
}));

const user = new User({ email: 'invalidemail' });

user.validate((error) => {
  expect(error).to.exist;
});

user.save((error) => {
  expect(error).to.exist;
});

Validations

String

email: Boolean

When set to true force value to be valid email address.

new Schema({
  email: {
    type: String,
    email: true
  }
});

capitalize: Boolean

When set to true it converts the first character of string to upper case and the remaining to lower case.

new Schema({
  firstName: {
    type: String,
    capitalize: true
  }
});

startcase: Boolean

When set to true converts string to start case(or title case).

new Schema({
  name: {
    type: String,
    startcase: true
  }
});

macaddress: Boolean

When set to true force value to be valid macaddress.

new Schema({
  address: {
    type: String,
    macaddress: true
  }
});

ip: Boolean

When set to true force value to be valid ip address.

new Schema({
  address: {
    type: String,
    ip: true
  }
});

fqdn: Boolean

When set to true force value to be valid full qualified domain name.

new Schema({
  address: {
    type: String,
    fqdn: true
  }
});

alpha: Boolean

When set to true force value to only contain alpha.

new Schema({
  address: {
    type: String,
    alpha: true
  }
});

alphanumeric: Boolean

When set to true force value to contain only alphanumeric.

new Schema({
  address: {
    type: String,
    aphanumeric: true
  }
});

md5: Boolean

When set to true force value to be valid md5 hash.

new Schema({
  hash: {
    type: String,
    md5: true
  }
});

uuid: Boolean

When set to true force value to be valid uuid.

new Schema({
  oid: {
    type: String,
    uuid: true
  }
});

creditcard: Boolean

When set to true force value to be valid credit card.

new Schema({
  card: {
    type: String,
    creditcard: true
  }
});

base64: Boolean

When set to true force value to be valid base64 content.

new Schema({
  url: {
    type: String,
    base64: true
  }
});

datauri: Boolean

When set to true force value to be valid data uri.

new Schema({
  url: {
    type: String,
    datauri: true
  }
});

phone: Object|Boolean

When set it force value to be valid phone number.

new Schema({
  phoneNumber: {
    type: String,
    phone: true
  }
});

new Schema({
  phoneNumber: {
    type: String,
    phone: {
      countries: ['TZ', 'US'],
      e164: true
    }
  }
});

new Schema({
  phoneNumber: {
    type: String,
    phone: {
      mobile: true,
      e164: true
    }
  }
});

new Schema({
  phoneNumber: {
    type: String,
    phone: {
      fixedline: true
    }
  }
});

mimetype: Boolean

When set to true force value to be mime type value.

new Schema({
  mime: {
    type: String,
    mimetype: true
  }
});

url: Boolean

When set to true force value to be valid url.

new Schema({
  address: {
    type: String,
    url: true
  }
});

jwt: Boolean

When set to true force value to be valid json web token.

new Schema({
  address: {
    type: String,
    jwt: true
  }
});

hexadecimal: Boolean

When set to true force value to be valid hexadecimal value.

new Schema({
  address: {
    type: String,
    hexadecimal: true
  }
});

hexacolor: Boolean

When set to true force value to be valid hexacolor value.

new Schema({
  address: {
    type: String,
    hexacolor: true
  }
});

Number

numeric: Boolean

When set to true force value to be numeric.

new Schema({
  value: {
    type: Number,
    numeric: true
  }
});

integer: Boolean

When set to true force value to be integer.

new Schema({
  step: {
    type: Number,
    integer: true
  }
});

float: Boolean

When set to true force value to float.

new Schema({
  price: {
    type: Number,
    float: true
  }
});

Array

empty: Boolean

When set to false force non empty array value.

new Schema({
  email: {
    type: [String],
    empty: false
  }
});

compact: Boolean

When set to true will remove falsey values.

new Schema({
  email: {
    type: [String],
    compact: true
  }
})

duplicate: Boolean|Function

When set to false or comparator will remove duplicate values.

new Schema({
  to: {
    type: [String],
    duplicate: false
  }
})

or

new Schema({
  to: {
    type: [String],
    duplicate: (a, b) => a === b
  }
})

sort: Boolean|String

When set to true, asc or desc create sorted elements.

new Schema({
  to: {
    type: [String],
    sort: false
  }
})

or

new Schema({
  to: {
    type: [String],
    sort: 'desc'
  }
})

Testing

  • Clone this repository

  • Install all development dependencies

npm install
  • Run example
npm run dev
  • Then run test
npm test

Contribute

It will be nice, if you open an issue first so that we can know what is going on, then, fork this repo and push in your ideas. Do not forget to add a bit of test(s) of what value you adding.

License

The MIT License (MIT)

Copyright (c) CodeTanzania & Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

1.7.1

3 years ago

1.7.0

3 years ago

1.6.26

3 years ago

1.6.25

4 years ago

1.6.24

4 years ago

1.6.23

4 years ago

1.6.22

4 years ago

1.6.21

4 years ago

1.6.20

4 years ago

1.6.19

4 years ago

1.6.18

4 years ago

1.6.17

4 years ago

1.6.16

4 years ago

1.6.15

4 years ago

1.6.14

4 years ago

1.6.13

4 years ago

1.6.12

4 years ago

1.6.11

4 years ago

1.6.10

4 years ago

1.6.9

4 years ago

1.6.8

4 years ago

1.6.7

4 years ago

1.6.6

4 years ago

1.6.5

4 years ago

1.6.4

4 years ago

1.6.3

4 years ago

1.6.2

4 years ago

1.6.1

4 years ago

1.6.0

4 years ago

1.5.20

4 years ago

1.5.19

4 years ago

1.5.18

4 years ago

1.5.17

4 years ago

1.5.16

5 years ago

1.5.15

5 years ago

1.5.14

5 years ago

1.5.13

5 years ago

1.5.12

5 years ago

1.5.11

5 years ago

1.5.10

5 years ago

1.5.9

5 years ago

1.5.8

5 years ago

1.5.7

5 years ago

1.5.6

5 years ago

1.5.5

5 years ago

1.5.4

5 years ago

1.5.3

5 years ago

1.5.2

5 years ago

1.5.1

5 years ago

1.5.0

5 years ago

1.4.1

5 years ago

1.4.0

5 years ago

1.3.1

5 years ago

1.3.0

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.1

5 years ago

1.0.0

6 years ago

0.1.1

8 years ago

0.1.0

9 years ago