3

サンプル プロジェクトの ZenTask に実装されているセキュリティ ソリューションのバリアントを使用しています。

目標は結合することですが、withAuth方法Action(parse.json)がわかりません。

私のセキュリティ特性

def withAuth(f: => Int => Request[AnyContent] => Result) = {
    Security.Authenticated(userid, onUnauthorized) { userid =>
      Action(request => f(userid.toInt)(request))
    }
  }

通常のように、ボディパーサーに組み込まれた演劇を使用したい:

def newReport() = Action(parse.json) { request =>

私のコントローラーで本体をjsonに手動で解析する代わりに。

def newReport() = withAuth { userId =>
    { request =>
      request.body.asJson match {
        case Some(json) =>
          json.validate[Report](Reports.readsWithoutUser).map {
            case _: Report =>
              Reports.newReport(_)
              Ok("")
          }.recoverTotal {
            e =>
              val errors = JsError.toFlatJson(e)
              Logger.error(errors.toString)
              BadRequest("Detected error:" + errors)
          }
        case None => BadRequest("Json object missing from request")
      }
    }
4

1 に答える 1

3

次に、ボディ パーサーを受け取るオーバーロードされた Action を使用するだけです ( apply[A](bodyParser: BodyParser[A])(block: Request[A] => Result))。

def withAuth[A](p: BodyParser[A])(f: => Int => Request[A] => Result): Action[(Action[A], A)] = {
  Security.Authenticated(userid, onUnauthorized) { userid =>
    Action(p)(request => f(userid.toInt)(request))
  }
}

// Convenience for when you don't need a BP
def withAuth(f: => Int => Request[AnyContent] => Result): Action[(Action[AnyContent], AnyContent)] = {
  withAuth(BodyParsers.parse.anyContent)(f)
}
于 2013-02-04T18:16:34.247 に答える