Joi验证器条件模式

时间:2020-01-22 14:05:08

标签: javascript node.js hapijs joi

我需要创建动态架构,以根据请求查询中的键,使用Joi validatornode js中验证我的api请求查询。说下面提到的以下模式是我的有效查询。

我正在使用hapi/joi16.1.8

组合1

{ type: 1, firstname: 'user first name', lastname: 'user last name'}

组合2

{ type: 2 , salary: 1000, pension: 200}

组合3

{ type: 3 , credit: 550, debit: 100}

如您所见,对象键根据type的值而变化。如何正确处理呢?

我们可以使用Joi.alternatives来处理两个条件,例如

const schema = Joi.alternatives().conditional(Joi.object({ type: 1 }).unknown(), {
    then: Joi.object({
        type: Joi.string(),
        firstname: Joi.string(),
        lastname: Joi.string()
    }),
    otherwise: Joi.object({
        type: Joi.number(),
        salary: Joi.any(),
        pension: Joi.any()
    })
});

但是这可以在3种情况下完成吗?

6 个答案:

答案 0 :(得分:3)

我以略有不同的方式实现了相同的目标。在此发布相同的内容,因为这将来可能对某人有用。

const schema = Joi.object({
    type: Joi.number().required().valid(1, 2, 3),
    firstname: Joi.alternatives().conditional('type', { is: 1, then: Joi.string().required() }),
    lastname: Joi.alternatives().conditional('type', { is: 1, then: Joi.string().required() }),
    salary: Joi.alternatives().conditional('type', { is: 2, then: Joi.number().required() }),
    pension: Joi.alternatives().conditional('type', { is: 2, then: Joi.number().required() }),
    credit: Joi.alternatives().conditional('type', { is: 3, then: Joi.number().required() }),
    debit: Joi.alternatives().conditional('type', { is: 3, then: Joi.number().required() }),
}))

这按预期进行得很好。

当类型值为1时,对象应仅包含typefirstnamelastname

当类型值为2时,对象应仅包含typesalarypension

当类型值为3时,对象应仅包含typecreditdebit

joi验证器中间件层将把任何其他组合作为错误抛出。同样,除1、2和3之外的任何其他类型值也会引发错误。

答案 1 :(得分:2)

documentation中,看来switch是可与alternatives.conditional一起使用的有效密钥。您可以尝试以下吗?

const schema = Joi.alternatives().conditional(Joi.object({
  type: 1
}).unknown(), {
  switch: [{
    is: 1,

    then: Joi.object({
      type: Joi.string(),
      firstname: Joi.string(),
      lastname: Joi.string(),
    }),
  }, {
    is: 2,

    then: Joi.object({
      type: Joi.number(),
      salary: Joi.any(),
      pension: Joi.any(),
    }),
  }, {
    // ...
  }],
});

编辑

在任何地方都找不到有关使用switch关键字的示例...

但是在hapijs/joi github

中找到了实现它的其他方法
const schema = Joi.object({
     a: Joi.number().required(),
     b: Joi.alternatives()
             .conditional('a', [
                 { is: 0, then: Joi.valid(1) },
                 { is: 1, then: Joi.valid(2) },
                 { is: 2, then: Joi.valid(3), otherwise: Joi.valid(4) }
    ])
});

答案 2 :(得分:2)

我试图找到一种方法来做类似的事情。然后我就想通了。

const Joi = require('joi');
const schema = Joi.object({
  type: Joi.number().valid(1,2,3),
  // anything common
}).when(Joi.object({type: Joi.number().valid(1)}).unknown(), {
  then: Joi.object({
    firstname: Joi.string(),
    lastname: Joi.string(),
  })
})
.when(Joi.object({type: Joi.number().valid(2)}).unknown(), {
  then: Joi.object({
    salary: Joi.number(),
    pension: Joi.number(),
  })
})
.when(Joi.object({type: Joi.number().valid(3)}).unknown(), {
  then: Joi.object({
    credit: Joi.number(),
    debit: Joi.number(),
  })
});

答案 3 :(得分:0)

对我有用!

var Joi = require('joi');

var schema = {
    a: Joi.any().when('b', { is: 5, then: Joi.required(), otherwise: Joi.optional() }),
    b: Joi.any()
};

var thing = {
    b: 5
};
var validate = Joi.validate(thing, schema);

// returns
{
    error: null,
    value: {
        b: 5
    }
}

https://github.com/hapijs/joi/issues/194#issuecomment-43582361

答案 4 :(得分:0)

我想做同样的事情,但条件应该取决于请求方法而不是查询参数。我最终得到了下一个解决方案:

const schema = Joi.when(Joi.ref("$requestMethod"), {
  switch: [
    {
      is: "POST",
      then: Joi.object({
        name: Joi.string().trim().max(150).required(),
        description: Joi.string().max(255),
        active: Joi.boolean().required(),
        }),
      }),
    },
    {
      is: "PUT",
      then: Joi.object({
        name: Joi.string().trim().max(150).required(),
        description: Joi.string().max(255),            
      }),
    },
  ],
});


schema.validate(req.body, { context: { requestMethod: req.method } });

Joi when() 条件文档https://joi.dev/api/?v=17.4.1#anywhencondition-options

答案 5 :(得分:0)

使用条件/开关,其语法也更具可读性。

以下 Joi 摘录将在 $.referenceClass 时强制出现 $.type === Type.REFERENCE。这样做时,它将确保值是可接受的值 - ...classIds

否则 ($.type !== Type.REFERENCE),它将不允许存在 $.referenceClass(除非您运行带有允许额外密钥选项的验证)。

{
    type: Joi.string().valid( ...Hub.types ).required(),
    referenceClass: Joi.alternatives().conditional( 'type', {
        switch: [
            { is: Type.REFERENCE, then: Joi.string().valid( ...classIds ) },
        ],
    } ),
}