我设法使用自定义约束实现表单验证,但现在我想用JSON数据做同样的事情。
如何将自定义验证规则应用于JSON解析器?
示例:客户端的POST请求包含用户名(username
),我不仅要确保此参数是非空文本,还要确保此用户实际存在于数据库中。
// In the controller...
def postNew = Action { implicit request =>
request.body.asJson.map { json =>
json.validate[ExampleCaseClass] match {
case success: JsSuccess[ExampleCaseClass] =>
val obj: ExampleCaseClass = success.get
// ...do something with obj...
Ok("ok")
case error: JsError =>
BadRequest(JsError.toFlatJson(error))
}
} getOrElse(BadRequest(Json.obj("msg" -> "JSON request expected")))
}
// In ExampleCaseClass.scala...
case class ExampleCaseClass(username: String, somethingElse: String)
object ExampleCaseClass {
// That's what I would use for a form:
val userCheck: Mapping[String] = nonEmptyText.verifying(userExistsConstraint)
implicit val exampleReads: Reads[ExampleCaseClass] = (
(JsPath \ "username").read[String] and
(JsPath \ "somethingElse").read[String]
)(ExampleCaseClass.apply _)
}
这就是我得到的,但这只能确保username
是一个字符串。 如何应用其他自定义验证规则,例如检查给定用户是否真的存在?这甚至可能吗?
当然,我可以在动作的obj
部分取我的case success
并在那里进行额外的检查,但这看起来并不优雅,因为那时我必须创建自己的错误消息,在某些情况下只能用户JsError.toFlatJson(error)
。经过几个小时的搜索和尝试,我找不到任何例子。
对于常规表格,我会使用以下内容:
// In the controller object...
val userValidConstraint: Constraint[String] = Constraint("constraints.uservalid")({ username =>
if (User.find(username).isDefined) {
Valid
} else {
val errors = Seq(ValidationError("User does not exist"))
Invalid(errors)
}
})
val userCheck: Mapping[String] = nonEmptyText.verifying(userValidConstraint)
val exampleForm = Form(
mapping(
"username" -> userCheck
// ...and maybe some more fields...
)(ExampleCaseClass.apply)(ExampleCaseClass.unapply)
)
// In the controller's action method...
exampleForm.bindFromRequest.fold(
formWithErrors => {
BadRequest("Example error message")
},
formData => {
// do something
Ok("Valid!")
}
)
但是如果数据是以JSON的形式提交的呢?
答案 0 :(得分:18)
我能想到的最简单的方法是使用filter
中的Reads
方法。
假设我们有一些User
对象将确定用户名是否存在:
object User {
def findByName(name: String): Option[User] = ...
}
然后您可以像这样构建Reads
:
import play.api.libs.json._
import play.api.libs.functional.syntax._
import play.api.data.validation._
case class ExampleCaseClass(username: String, somethingElse: String)
object ExampleCaseClass {
implicit val exampleReads: Reads[ExampleCaseClass] = (
(JsPath \ "username").read[String].filter(ValidationError("User does not exist."))(findByName(_).isDefined) and
(JsPath \ "somethingElse").read[String]
)(ExampleCaseClass.apply _)
}
使用json BodyParser
和fold
:
def postNew = Action(parse.json) { implicit request =>
request.body.validate[ExampleCaseClass].fold(
error => BadRequest(JsError.toFlatJson(error)),
obj => {
// Do something with the validated object..
}
)
}
您还可以创建一个单独的Reads[String]
来检查用户是否存在,并在Reads[String]
中明确使用Reads[ExampleCaseClass]
:
val userValidate = Reads.StringReads.filter(ValidationError("User does not exist."))(findByName(_).isDefined)
implicit val exampleReads: Reads[ExampleCaseClass] = (
(JsPath \ "username").read[String](userValidate) and
(JsPath \ "somethingElse").read[String]
)(ExampleCaseClass.apply _)