lila/app/controllers/Team.scala

462 lines
14 KiB
Scala
Raw Normal View History

package controllers
2020-04-12 14:30:39 -06:00
import play.api.data.Form
2019-10-02 10:50:09 -06:00
import play.api.libs.json._
import play.api.mvc._
import scala.concurrent.duration._
2019-10-02 10:50:09 -06:00
2015-04-12 00:59:13 -06:00
import lila.api.Context
import lila.app._
2019-12-04 23:52:53 -07:00
import lila.common.config.MaxPerSecond
2019-12-08 10:35:26 -07:00
import lila.hub.LightTeam
2015-04-12 00:59:13 -06:00
import lila.security.Granter
2019-12-04 23:52:53 -07:00
import lila.team.{ Joined, Motivate, Team => TeamModel }
2014-02-17 02:12:19 -07:00
import lila.user.{ User => UserModel }
import views._
2019-12-04 23:52:53 -07:00
final class Team(
env: Env,
2019-12-05 14:51:18 -07:00
apiC: => Api
2019-12-04 23:52:53 -07:00
) extends LilaController(env) {
2019-12-13 07:30:20 -07:00
private def forms = env.team.forms
private def api = env.team.api
2019-12-04 16:39:16 -07:00
private def paginator = env.team.paginator
2013-04-09 12:58:34 -06:00
2020-05-05 22:11:15 -06:00
def all(page: Int) =
Open { implicit ctx =>
paginator popularTeams page map {
html.team.list.all(_)
}
2020-04-24 10:10:18 -06:00
}
2013-05-06 14:49:12 -06:00
2020-05-05 22:11:15 -06:00
def home(page: Int) =
Open { implicit ctx =>
ctx.me.??(api.hasTeams) map {
case true => Redirect(routes.Team.mine)
case false => Redirect(routes.Team.all(page))
}
2015-09-09 09:32:49 -06:00
}
2020-05-05 22:11:15 -06:00
def show(id: String, page: Int) =
Open { implicit ctx =>
OptionFuOk(api team id) { renderTeam(_, page) }
}
2013-05-06 14:49:12 -06:00
2020-05-05 22:11:15 -06:00
def search(text: String, page: Int) =
OpenBody { implicit ctx =>
if (text.trim.isEmpty) paginator popularTeams page map { html.team.list.all(_) }
else
env.teamSearch(text, page) map { html.team.list.search(text, _) }
}
2013-05-06 14:49:12 -06:00
2019-12-13 07:30:20 -07:00
private def renderTeam(team: TeamModel, page: Int = 1)(implicit ctx: Context) =
for {
info <- env.teamInfo(team, ctx.me)
members <- paginator.teamMembers(team, page)
2020-04-26 00:41:35 -06:00
hasChat = canHaveChat(team, info)
2020-05-05 22:11:15 -06:00
chat <-
hasChat ?? env.chat.api.userChat.cached
.findMine(lila.chat.Chat.Id(team.id), ctx.me)
.map(some)
2020-04-25 18:52:13 -06:00
_ <- env.user.lightUserApi preloadMany {
info.userIds ::: chat.??(_.chat.userIds)
}
2020-04-26 00:41:35 -06:00
version <- hasChat ?? env.team.version(team.id).dmap(some)
2020-04-25 18:52:13 -06:00
} yield html.team.show(team, members, info, chat, version)
2020-04-26 00:41:35 -06:00
private def canHaveChat(team: TeamModel, info: lila.app.mashup.TeamInfo)(implicit ctx: Context): Boolean =
2020-04-26 11:38:03 -06:00
!team.isChatFor(_.NONE) && ctx.noKid && {
(team.isChatFor(_.LEADERS) && ctx.userId.exists(team.leaders)) ||
(team.isChatFor(_.MEMBERS) && info.mine) ||
isGranted(_.ChatTimeout)
2020-04-26 11:16:35 -06:00
}
2013-05-06 14:49:12 -06:00
2020-05-05 22:11:15 -06:00
def legacyUsers(teamId: String) =
Action {
MovedPermanently(routes.Team.users(teamId).url)
}
def users(teamId: String) =
Action.async { implicit req =>
api.team(teamId) flatMap {
_ ?? { team =>
apiC.jsonStream {
env.team
.memberStream(team, MaxPerSecond(20))
.map(env.api.userApi.one)
}.fuccess
}
}
}
2020-05-05 22:11:15 -06:00
def tournaments(teamId: String) =
Open { implicit ctx =>
env.team.teamRepo.enabled(teamId) flatMap {
_ ?? { team =>
2020-05-06 14:56:17 -06:00
env.teamInfo.tournaments(team, 40) map { tours =>
Ok(html.team.tournaments.page(team, tours))
2020-05-05 22:11:15 -06:00
}
2020-04-26 12:25:40 -06:00
}
}
}
2020-05-05 22:11:15 -06:00
def edit(id: String) =
Auth { implicit ctx => _ =>
WithOwnedTeam(id) { team =>
fuccess(html.team.form.edit(team, forms edit team))
}
2017-01-26 04:05:21 -07:00
}
2020-05-05 22:11:15 -06:00
def update(id: String) =
AuthBody { implicit ctx => me =>
WithOwnedTeam(id) { team =>
implicit val req = ctx.body
forms
.edit(team)
.bindFromRequest
.fold(
err => BadRequest(html.team.form.edit(team, err)).fuccess,
data => api.update(team, data, me) inject Redirect(routes.Team.show(team.id)).flashSuccess
)
}
2013-05-06 14:49:12 -06:00
}
2020-05-05 22:11:15 -06:00
def kickForm(id: String) =
Auth { implicit ctx => me =>
WithOwnedTeam(id) { team =>
env.team.memberRepo userIdsByTeam team.id map { userIds =>
html.team.admin.kick(team, userIds - me.id)
}
2013-05-06 14:49:12 -06:00
}
}
2020-05-05 22:11:15 -06:00
def kick(id: String) =
AuthBody { implicit ctx => me =>
WithOwnedTeam(id) { team =>
implicit val req = ctx.body
forms.selectMember.bindFromRequest.value ?? { api.kick(team, _, me) } inject Redirect(
routes.Team.show(team.id)
).flashSuccess
}
2013-05-06 14:49:12 -06:00
}
2020-05-05 22:11:15 -06:00
def kickUser(teamId: String, userId: String) =
Scoped(_.Team.Write) { _ => me =>
api team teamId flatMap {
_ ?? { team =>
if (team leaders me.id) api.kick(team, userId, me) inject jsonOkResult
else Forbidden(jsonError("Not your team")).fuccess
}
2019-07-23 06:39:25 -06:00
}
}
2013-05-06 14:49:12 -06:00
2020-05-05 22:11:15 -06:00
def leadersForm(id: String) =
Auth { implicit ctx => _ =>
WithOwnedTeam(id) { team =>
Ok(html.team.admin.leaders(team, forms leaders team)).fuccess
}
}
2020-05-05 22:11:15 -06:00
def leaders(id: String) =
AuthBody { implicit ctx => _ =>
WithOwnedTeam(id) { team =>
implicit val req = ctx.body
forms.leaders(team).bindFromRequest.value ?? { api.setLeaders(team, _) } inject Redirect(
routes.Team.show(team.id)
).flashSuccess
}
}
2020-05-05 22:11:15 -06:00
def close(id: String) =
Secure(_.ManageTeam) { implicit ctx => me =>
OptionFuResult(api team id) { team =>
(api delete team) >>
env.mod.logApi.deleteTeam(me.id, team.name, team.description) inject
Redirect(routes.Team all 1).flashSuccess
}
2017-01-15 05:26:08 -07:00
}
2020-05-05 22:11:15 -06:00
def form =
Auth { implicit ctx => me =>
2020-05-08 09:00:28 -06:00
LimitPerWeek(me) {
2020-05-05 22:11:15 -06:00
forms.anyCaptcha map { captcha =>
Ok(html.team.form.create(forms.create, captcha))
}
2013-05-06 14:49:12 -06:00
}
2017-01-15 05:26:08 -07:00
}
2020-05-05 22:11:15 -06:00
def create =
AuthBody { implicit ctx => implicit me =>
2020-05-08 09:00:28 -06:00
LimitPerWeek(me) {
2020-05-05 22:11:15 -06:00
implicit val req = ctx.body
forms.create.bindFromRequest.fold(
err =>
forms.anyCaptcha map { captcha =>
BadRequest(html.team.form.create(err, captcha))
},
data =>
api.create(data, me) map { team =>
Redirect(routes.Team.show(team.id)).flashSuccess
}
)
}
2017-01-26 04:05:21 -07:00
}
2013-05-06 14:49:12 -06:00
2020-05-05 22:11:15 -06:00
def mine =
Auth { implicit ctx => me =>
api mine me map {
html.team.list.mine(_)
}
2020-04-24 10:10:18 -06:00
}
2013-05-06 14:49:12 -06:00
2020-05-05 22:11:15 -06:00
def leader =
Auth { implicit ctx => me =>
env.team.teamRepo enabledTeamsByLeader me.id map {
html.team.list.ledByMe(_)
}
}
2013-05-06 14:49:12 -06:00
2020-05-05 22:11:15 -06:00
def join(id: String) =
AuthOrScoped(_.Team.Write)(
auth = implicit ctx =>
me =>
api countTeamsOf me flatMap { nb =>
if (nb >= TeamModel.maxJoin)
negotiate(
html = BadRequest(views.html.site.message.teamJoinLimit).fuccess,
api = _ => BadRequest(jsonError("You have joined too many teams")).fuccess
)
else
negotiate(
html = api.join(id, me) flatMap {
case Some(Joined(team)) => Redirect(routes.Team.show(team.id)).flashSuccess.fuccess
case Some(Motivate(team)) => Redirect(routes.Team.requestForm(team.id)).flashSuccess.fuccess
case _ => notFound(ctx)
},
api = _ =>
api.join(id, me) flatMap {
case Some(Joined(_)) => jsonOkResult.fuccess
case Some(Motivate(_)) =>
BadRequest(
jsonError("This team requires confirmation.")
).fuccess
case _ => notFoundJson("Team not found")
}
)
},
scoped = req =>
me =>
env.oAuth.server.fetchAppAuthor(req) flatMap {
api.joinApi(id, me, _)
2020-05-05 22:11:15 -06:00
} flatMap {
case Some(Joined(_)) => jsonOkResult.fuccess
case Some(Motivate(_)) =>
Forbidden(
jsonError("This team requires confirmation, and is not owned by the oAuth app owner.")
).fuccess
case _ => notFoundJson("Team not found")
}
)
2013-05-06 14:49:12 -06:00
2020-05-05 22:11:15 -06:00
def requests =
Auth { implicit ctx => me =>
import lila.memo.CacheApi._
env.team.cached.nbRequests invalidate me.id
api requestsWithUsers me map { html.team.request.all(_) }
2017-01-26 04:05:21 -07:00
}
2020-05-05 22:11:15 -06:00
def requestForm(id: String) =
Auth { implicit ctx => me =>
OptionFuOk(api.requestable(id, me)) { team =>
forms.anyCaptcha map { html.team.request.requestForm(team, forms.request, _) }
}
2013-05-06 14:49:12 -06:00
}
2020-05-05 22:11:15 -06:00
def requestCreate(id: String) =
AuthBody { implicit ctx => me =>
OptionFuResult(api.requestable(id, me)) { team =>
2017-01-26 04:05:21 -07:00
implicit val req = ctx.body
2020-05-05 22:11:15 -06:00
forms.request.bindFromRequest.fold(
err =>
forms.anyCaptcha map { captcha =>
BadRequest(html.team.request.requestForm(team, err, captcha))
},
setup => api.createRequest(team, setup, me) inject Redirect(routes.Team.show(team.id)).flashSuccess
2017-01-26 04:05:21 -07:00
)
2020-05-05 22:11:15 -06:00
}
2017-01-26 04:05:21 -07:00
}
2020-05-05 22:11:15 -06:00
def requestProcess(requestId: String) =
AuthBody { implicit ctx => me =>
OptionFuRedirectUrl(for {
requestOption <- api request requestId
teamOption <- requestOption.??(req => env.team.teamRepo.byLeader(req.team, me.id))
} yield (teamOption |@| requestOption).tupled) {
case (team, request) =>
implicit val req = ctx.body
forms.processRequest.bindFromRequest.fold(
_ => fuccess(routes.Team.show(team.id).toString),
{
case (decision, url) =>
api.processRequest(team, request, (decision == "accept")) inject url
}
)
}
2019-10-02 10:50:09 -06:00
}
2020-05-05 22:11:15 -06:00
def quit(id: String) =
AuthOrScoped(_.Team.Write)(
auth = ctx =>
me =>
OptionResult(api.quit(id, me)) { team =>
Redirect(routes.Team.show(team.id)).flashSuccess
}(ctx),
scoped = _ =>
me =>
api.quit(id, me) flatMap {
_.fold(notFoundJson())(_ => jsonOkResult.fuccess)
}
)
def autocomplete =
Action.async { req =>
get("term", req).filter(_.nonEmpty) match {
case None => BadRequest("No search term provided").fuccess
case Some(term) =>
for {
teams <- api.autocomplete(term, 10)
_ <- env.user.lightUserApi preloadMany teams.map(_.createdBy)
} yield Ok {
JsArray(teams map { team =>
Json.obj(
"id" -> team.id,
"name" -> team.name,
"owner" -> env.user.lightUserApi.sync(team.createdBy).fold(team.createdBy)(_.name),
"members" -> team.nbMembers
)
})
} as JSON
}
}
2020-05-05 22:11:15 -06:00
def pmAll(id: String) =
Auth { implicit ctx => _ =>
WithOwnedTeam(id) { team =>
env.tournament.api
.featuredInTeam(team.id)
.dmap(_.filter(_.isEnterable))
.map { tours =>
Ok(html.team.admin.pmAll(team, forms.pmAll, tours))
}
}
}
def pmAllSubmit(id: String) =
AuthOrScopedBody(_.Team.Write)(
auth = implicit ctx =>
me =>
WithOwnedTeam(id) { team =>
doPmAll(team, me)(ctx.body).fold(
err =>
env.tournament.api
.featuredInTeam(team.id)
.dmap(_.filter(_.isEnterable))
.map { tours =>
BadRequest(html.team.admin.pmAll(team, err, tours))
},
done => done inject Redirect(routes.Team.show(team.id)).flashSuccess
2020-04-06 09:44:24 -06:00
)
2020-05-05 22:11:15 -06:00
},
scoped = implicit req =>
me =>
api team id flatMap {
_.filter(_ leaders me.id) ?? { team =>
doPmAll(team, me).fold(
err => BadRequest(errorsAsJson(err)(reqLang)).fuccess,
done => done inject jsonOkResult
)
}
2020-04-06 09:44:24 -06:00
}
2020-05-05 22:11:15 -06:00
)
2020-04-06 09:44:24 -06:00
2020-04-12 11:31:33 -06:00
// API
2020-05-05 22:11:15 -06:00
def apiAll(page: Int) =
Action.async {
import env.team.jsonView._
import lila.common.paginator.PaginatorJson._
JsonFuOk {
paginator popularTeams page flatMap { pager =>
env.user.lightUserApi.preloadMany(pager.currentPageResults.flatMap(_.leaders)) inject pager
}
2020-04-24 10:10:18 -06:00
}
}
2020-05-05 22:11:15 -06:00
def apiShow(id: String) =
Action.async {
import env.team.jsonView._
JsonOptionOk { api team id }
2020-04-12 11:42:31 -06:00
}
2020-04-12 11:31:33 -06:00
2020-05-05 22:11:15 -06:00
def apiSearch(text: String, page: Int) =
Action.async {
import env.team.jsonView._
import lila.common.paginator.PaginatorJson._
JsonFuOk {
if (text.trim.isEmpty) paginator popularTeams page
else env.teamSearch(text, page)
}
}
def apiTeamsOf(username: String) =
Action.async {
import env.team.jsonView._
JsonFuOk {
api teamsOf username flatMap { teams =>
env.user.lightUserApi.preloadMany(teams.flatMap(_.leaders)) inject teams
}
2020-04-24 10:19:32 -06:00
}
}
2020-04-06 09:44:24 -06:00
private def doPmAll(team: TeamModel, me: UserModel)(implicit req: Request[_]): Either[Form[_], Funit] =
forms.pmAll.bindFromRequest
.fold(
err => Left(err),
msg =>
2020-04-06 09:44:24 -06:00
Right {
PmAllLimitPerUser(me.id) {
val full = s"""$msg
---
You received this message because you are part of the team lichess.org${routes.Team.show(team.id)}."""
2020-04-24 19:49:50 -06:00
env.msg.api.multiPost(me, env.team.memberStream.ids(team, MaxPerSecond(50)), full)
funit // we don't wait for the stream to complete, it would make lichess time out
}(funit)
}
)
2020-04-24 19:49:50 -06:00
private val PmAllLimitPerUser = lila.memo.RateLimit.composite[lila.user.User.ID](
name = "team pm all per user",
2020-04-24 19:49:50 -06:00
key = "team.pmAll",
enforce = env.net.rateLimit.value
)(
2020-04-29 08:58:36 -06:00
("fast", 1, 3.minutes),
("slow", 6, 24.hours)
)
2020-05-08 07:48:18 -06:00
private def LimitPerWeek[A <: Result](me: UserModel)(a: => Fu[A])(implicit ctx: Context): Fu[Result] =
api.countCreatedRecently(me) flatMap { count =>
if (count > 10 || (count > 3 && !Granter(_.Teacher)(me) && !Granter(_.ManageTeam)(me)))
Forbidden(views.html.site.message.teamCreateLimit).fuccess
2018-07-20 04:21:06 -06:00
else a
2013-05-06 14:49:12 -06:00
}
private def WithOwnedTeam(teamId: String)(f: TeamModel => Fu[Result])(implicit ctx: Context): Fu[Result] =
OptionFuResult(api team teamId) { team =>
if (ctx.userId.exists(team.leaders.contains) || isGranted(_.ManageTeam)) f(team)
else renderTeam(team) map { Forbidden(_) }
}
2019-10-02 04:20:44 -06:00
private[controllers] def teamsIBelongTo(me: lila.user.User): Fu[List[LightTeam]] =
api mine me map { _.map(_.light) }
}