MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

Como validar chaves e valores de objetos no esquema Mongoose?


Opção 1 (com "dicionários"): Você pode usar o Object construtor como um SchemaType para usar um objeto em vez de uma matriz de objetos. Aqui está um exemplo que se aplica à sua situação usando SchemaType#validate :
offersInCategory: {
  type: Object,
  validate: object => { //our custom validator, object is the provided object
    let allowedKeys = ['Furniture', 'Household', 'Electronicts', 'Other'];
    let correctKeys = Object.keys(object).every(key => allowedKeys.includes(key)); //make sure all keys are inside `allowedKeys`

    let min = 5;
    let max = 10;
    let correctValues = Object.values(object).every(value => value > min && value < max); //make sure all values are in correct range

    return correctKeys && correctValues; //return true if keys and values pass validation
  }
}

Isso não aplica verificações de chave duplicada porque um objeto não pode ter chaves duplicadas , a chave posterior presente apenas substitui a chave anterior:
> let foo = { bar: 4, bar: 5}
< Object { bar: 5 }

Como você pode ver, a bar: 4 chave atribuída anteriormente é substituída pela chave posterior.

Opção 2 (com matriz): Você pode usar SchemaType#validate para implementar sua validação personalizada em um determinado caminho de documento. Aqui está um exemplo do que você quer:
offersInCategory: [{
  validate: {
    validator: array => { //our custom validator, array is the provided array to be validated
      let filtered = array.filter((obj, index, self) => self.findIndex(el => el.category === obj.category) === index); //this removes any duplicates based on object key
      return array.length === filtered.length; //returns true if the lengths are the same; if the lengths aren't the same that means there was a duplicate key and validation fails
    },
    message: 'Detected duplicate keys in {VALUE}!'
  }
  category: {
    type: String, 
    enum: ['Furniture', 'Household', 'Electronicts', 'Other'] //category must be in this enum
  },
  val: {
    type: Number, 
    min: 0, //minimum allowed number is 0
    max: 10 //maximum allowed number is 10
  }
}]

E se você testar isso, ele se livrará de objetos no array com chaves duplicadas (mantendo a anterior) e verifica se o array contém apenas objetos com category exclusivo chaves.