PathBindable

play.api.mvc.PathBindable
See thePathBindable companion object
trait PathBindable[A]

Binder for URL path parameters.

You can provide an implementation of PathBindable[A] for any type A you want to be able to bind directly from the request path.

For example, given this class definition:

 case class User(id: Int, name: String, age: Int)

You can define a binder retrieving a User instance from its id, useable like the following:

 // In your routes:
 // GET  /show/:user      controllers.Application.show(user)
 // For example: /show/42

 class HomeController @Inject() (val controllerComponents: ControllerComponents) extends BaseController {
   def show(user: User) = Action {
     ...
   }
 }

The definition of binder can look like the following:

 object User {
   implicit def pathBinder(implicit intBinder: PathBindable[Int]) = new PathBindable[User] {
     override def bind(key: String, value: String): Either[String, User] = {
       for {
         id <- intBinder.bind(key, value).right
         user <- User.findById(id).toRight("User not found").right
       } yield user
     }
     override def unbind(key: String, user: User): String = {
       intBinder.unbind(key, user.id)
     }
   }
 }

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Parsing[A]
object bindableBoolean.type
object bindableDouble.type
object bindableFloat.type
object bindableInt.type
object bindableLong.type
object bindableString.type
object bindableUUID.type
object bindableChar.type
Show all
Self type

Members list

Value members

Abstract methods

def bind(key: String, value: String): Either[String, A]

Bind an URL path parameter.

Bind an URL path parameter.

Value parameters

key

Parameter key

value

The value as String (extracted from the URL path)

Attributes

Returns

Right of the value or Left of an error message if the binding failed

def unbind(key: String, value: A): String

Unbind a URL path parameter.

Unbind a URL path parameter.

Value parameters

key

Parameter key

value

Parameter value.

Attributes

Concrete methods

Javascript function to unbind in the Javascript router.

Javascript function to unbind in the Javascript router.

Attributes

def transform[B](toB: A => B, toA: B => A): PathBindable[B]

Transform this PathBinding[A] to PathBinding[B]

Transform this PathBinding[A] to PathBinding[B]

Attributes