lila/app/controllers/TournamentCrud.scala
2019-08-21 19:32:50 +02:00

55 lines
1.6 KiB
Scala

package controllers
import lila.app._
import views._
object TournamentCrud extends LilaController {
private def env = Env.tournament
private def crud = env.crudApi
def index(page: Int) = Secure(_.ManageTournament) { implicit ctx => me =>
crud.paginator(page) map { paginator =>
html.tournament.crud.index(paginator)
}
}
def edit(id: String) = Secure(_.ManageTournament) { implicit ctx => me =>
OptionOk(crud one id) { tour =>
html.tournament.crud.edit(tour, crud editForm tour)
}
}
def update(id: String) = SecureBody(_.ManageTournament) { implicit ctx => me =>
OptionFuResult(crud one id) { tour =>
implicit val req = ctx.body
crud.editForm(tour).bindFromRequest.fold(
err => BadRequest(html.tournament.crud.edit(tour, err)).fuccess,
data => crud.update(tour, data) inject Redirect(routes.TournamentCrud.edit(id))
)
}
}
def form = Secure(_.ManageTournament) { implicit ctx => me =>
Ok(html.tournament.crud.create(crud.createForm)).fuccess
}
def create = SecureBody(_.ManageTournament) { implicit ctx => me =>
implicit val req = ctx.body
crud.createForm.bindFromRequest.fold(
err => BadRequest(html.tournament.crud.create(err)).fuccess,
data => crud.create(data, me) map { tour =>
Redirect(routes.TournamentCrud.edit(tour.id))
}
)
}
def clone(id: String) = Secure(_.ManageTournament) { implicit ctx => me =>
OptionFuResult(crud one id) { old =>
val tour = crud clone old
Ok(html.tournament.crud.create(crud editForm tour)).fuccess
}
}
}