lila/conf/routes

319 lines
18 KiB
Plaintext
Raw Normal View History

# Accessibility
POST /toggle-blind-mode controllers.Main.toggleBlindMode
2013-03-18 17:36:22 -06:00
# Lobby
GET / controllers.Lobby.home
2014-07-29 14:40:07 -06:00
GET /lobby/socket/v:apiVersion controllers.Lobby.socket(apiVersion: Int)
2013-05-24 08:37:24 -06:00
GET /timeline controllers.Lobby.timeline
2013-05-28 16:44:49 -06:00
GET /timeline/more controllers.Lobby.timelineMore
GET /lobby/playing controllers.Lobby.playing
2013-03-18 17:36:22 -06:00
2013-07-31 09:21:42 -06:00
# TV
2013-07-31 10:21:45 -06:00
GET /tv controllers.Tv.index
2014-10-19 05:12:55 -06:00
GET /tv/$gameId<\w{8}>/$color<white|black>/side controllers.Tv.side(gameId: String, color: String)
2014-02-23 06:03:48 -07:00
GET /tv/embed controllers.Tv.embed
GET /tv/frame controllers.Tv.frame
2014-05-10 07:50:54 -06:00
GET /tv/stream controllers.Tv.streamOut
GET /tv/$id<[0-9a-f]{8}> controllers.Tv.streamIn(id: String)
GET /tv/lichess controllers.Tv.lichess
2013-07-31 09:21:42 -06:00
# Relation
POST /rel/follow/:userId controllers.Relation.follow(userId: String)
POST /rel/unfollow/:userId controllers.Relation.unfollow(userId: String)
POST /rel/block/:userId controllers.Relation.block(userId: String)
POST /rel/unblock/:userId controllers.Relation.unblock(userId: String)
GET /@/:username/following controllers.Relation.following(username: String)
GET /@/:username/followers controllers.Relation.followers(username: String)
GET /@/:username/suggestions controllers.Relation.suggest(username: String)
2013-03-20 08:23:41 -06:00
# User
GET /@/:username/opponents controllers.User.opponents(username: String)
GET /@/:username/mod controllers.User.mod(username: String)
POST /@/:username/evaluate controllers.User.evaluate(username: String)
2014-04-22 17:22:57 -06:00
POST /@/:username/note controllers.User.writeNote(username: String)
GET /@/:username/mini controllers.User.showMini(username: String)
GET /@/:username/tv controllers.User.tv(username: String)
2013-05-08 09:41:12 -06:00
GET /@/:username/:filterName controllers.User.showFilter(username: String, filterName: String, page: Int ?= 1)
2013-03-20 08:23:41 -06:00
GET /@/:username controllers.User.show(username: String)
2014-08-02 11:33:46 -06:00
GET /player controllers.User.list
GET /player/online controllers.User.online
GET /player/autocomplete controllers.User.autocomplete
2013-10-20 07:46:29 -06:00
# Account
GET /account/passwd controllers.Account.passwd
POST /account/passwd controllers.Account.passwdApply
2014-12-10 15:07:43 -07:00
GET /account/email controllers.Account.email
POST /account/email controllers.Account.emailApply
2013-10-20 07:46:29 -06:00
GET /account/close controllers.Account.close
POST /account/closeConfirm controllers.Account.closeConfirm
GET /account/profile controllers.Account.profile
POST /account/profile controllers.Account.profileApply
2014-07-21 14:46:52 -06:00
GET /account/info controllers.Account.info
2014-05-31 11:01:43 -06:00
# Site
2013-04-10 05:02:32 -06:00
GET /socket controllers.Main.websocket
2014-05-31 11:01:43 -06:00
# Blog
GET /blog controllers.Blog.index(ref: Option[String] ?= None)
GET /blog/:id/:slug controllers.Blog.show(id: String, slug: String, ref: Option[String] ?= None)
2014-07-09 17:56:54 -06:00
GET /blog.atom controllers.Blog.atom(ref: Option[String] ?= None)
2014-05-31 11:01:43 -06:00
# Game
2013-05-06 19:57:42 -06:00
GET /games controllers.Game.realtime
GET /games/all controllers.Game.all(page: Int ?= 1)
GET /games/checkmate controllers.Game.checkmate(page: Int ?= 1)
GET /games/bookmark controllers.Game.bookmark(page: Int ?= 1)
GET /games/analysed controllers.Game.analysed(page: Int ?= 1)
GET /games/imported controllers.Game.imported(page: Int ?= 1)
GET /games/export/:user controllers.Game.export(user: String)
2013-12-23 11:56:30 -07:00
# Search
2013-05-09 17:00:27 -06:00
GET /games/search controllers.Game.search(page: Int ?= 1)
2013-12-23 11:56:30 -07:00
2014-05-03 17:45:14 -06:00
# Training - Puzzle
GET /training controllers.Puzzle.home
2014-04-21 10:20:49 -06:00
POST /training/difficulty controllers.Puzzle.difficulty
GET /training/new controllers.Puzzle.newPuzzle
GET /training/history controllers.Puzzle.history
GET /training/:id controllers.Puzzle.show(id: Int)
2014-09-15 11:11:24 -06:00
GET /training/:id/load controllers.Puzzle.load(id: Int)
POST /training/:id/attempt controllers.Puzzle.attempt(id: Int)
POST /training/:id/vote controllers.Puzzle.vote(id: Int)
2014-12-15 16:26:13 -07:00
# Training - Opening
# GET /training/opening controllers.Opening.home
# Training - Coordinate
GET /training/coordinate controllers.Coordinate.home
POST /training/coordinate/score controllers.Coordinate.score
POST /training/coordinate/color controllers.Coordinate.color
# Round
2014-06-29 05:07:17 -06:00
GET /$gameId<\w{8}> controllers.Round.watcher(gameId: String, color: String = "white")
GET /$gameId<\w{8}>/$color<white|black> controllers.Round.watcher(gameId: String, color: String)
GET /$fullId<\w{12}> controllers.Round.player(fullId: String)
GET /$gameId<\w{8}>/$color<white|black>/socket controllers.Round.websocketWatcher(gameId: String, color: String)
GET /$fullId<\w{12}>/socket/v:apiVersion controllers.Round.websocketPlayer(fullId: String, apiVersion: Int)
GET /$gameId<\w{8}>/$color<white|black>/side controllers.Round.sideWatcher(gameId: String, color: String)
GET /$fullId<\w{12}>/side controllers.Round.sidePlayer(fullId: String)
2014-06-29 05:07:17 -06:00
GET /$gameId<\w{8}>/continue/:mode controllers.Round.continue(gameId: String, mode: String)
2014-12-07 04:32:18 -07:00
POST /$gameId<\w{8}>/note controllers.Round.writeNote(gameId: String)
2014-06-29 05:07:17 -06:00
GET /$gameId<\w{8}>/edit controllers.Editor.game(gameId: String)
2013-12-23 11:56:30 -07:00
2014-06-05 04:07:41 -06:00
# Round accessibility: text representation
2014-06-29 05:07:17 -06:00
GET /$fullId<\w{12}>/text controllers.Round.playerText(fullId: String)
GET /$gameId<\w{8}>/$color<white|black>/text controllers.Round.watcherText(gameId: String, color: String)
2014-06-05 04:07:41 -06:00
# Tournament
2013-12-23 11:56:30 -07:00
GET /tournament controllers.Tournament.home
2013-05-12 09:02:45 -06:00
GET /tournament/reload controllers.Tournament.homeReload
GET /tournament/new controllers.Tournament.form
POST /tournament/new controllers.Tournament.create
2014-07-23 15:08:59 -06:00
GET /tournament/$id<\w{8}> controllers.Tournament.show(id: String)
GET /tournament/$id<\w{8}>/socket controllers.Tournament.websocket(id: String)
POST /tournament/$id<\w{8}>/join controllers.Tournament.join(id: String)
GET /tournament/$id<\w{8}>/join/password controllers.Tournament.joinPasswordForm(id: String)
POST /tournament/$id<\w{8}>/join/password controllers.Tournament.joinPassword(id: String)
POST /tournament/$id<\w{8}>/withdraw controllers.Tournament.withdraw(id: String)
GET /tournament/$id<\w{8}>/reload controllers.Tournament.reload(id: String)
POST /tournament/$id<\w{8}>/early-start controllers.Tournament.earlyStart(id: String)
GET /tournament/help controllers.Tournament.help(system: Option[String] ?= None)
2013-12-23 11:56:30 -07:00
# Team
2013-05-06 14:49:12 -06:00
GET /team controllers.Team.home(page: Int ?= 1)
GET /team/new controllers.Team.form
POST /team/new controllers.Team.create
GET /team/me controllers.Team.mine
2013-04-09 12:58:34 -06:00
GET /team/requests controllers.Team.requests
2013-05-06 14:49:12 -06:00
GET /team/search controllers.Team.search(text: String ?= "", page: Int ?= 1)
GET /team/:id controllers.Team.show(id: String, page: Int ?= 1)
2013-05-06 14:49:12 -06:00
GET /team/:id/join controllers.Team.joinPage(id: String)
POST /team/:id/join controllers.Team.join(id: String)
POST /team/:id/quit controllers.Team.quit(id: String)
GET /team/:id/request/new controllers.Team.requestForm(id: String)
POST /team/:id/request/new controllers.Team.requestCreate(id: String)
POST /team/:id/request/process controllers.Team.requestProcess(id: String)
GET /team/:id/edit controllers.Team.edit(id: String)
POST /team/:id/edit controllers.Team.update(id: String)
GET /team/:id/kick controllers.Team.kickForm(id: String)
POST /team/:id/kick controllers.Team.kick(id: String)
# Analyse
2014-06-29 05:07:17 -06:00
POST /$gameId<\w{8}>/request-analysis controllers.Analyse.requestAnalysis(gameId: String)
POST /$gameId<\w{8}>/better-analysis/$color<white|black> controllers.Analyse.betterAnalysis(gameId: String, color: String)
POST /$gameId<\w{8}>/post-analysis controllers.Analyse.postAnalysis(gameId: String)
2013-12-23 11:56:30 -07:00
GET /game/export/$gameId<\w{8}>.pgn controllers.Export.pgn(gameId: String)
GET /game/export/pdf/$gameId<\w{8}>.pdf controllers.Export.pdf(gameId: String)
GET /game/export/png/$gameId<\w{8}>.png controllers.Export.png(gameId: String)
2013-10-19 09:22:32 -06:00
# Pref
POST /pref/:name controllers.Pref.set(name: String)
2013-10-21 04:33:39 -06:00
GET /account/preferences controllers.Pref.form
POST /account/preferences controllers.Pref.formApply
POST /account/preferences/tag/:name/:value controllers.Pref.saveTag(name: String, value: String)
2013-12-23 11:56:30 -07:00
# Setup
2013-05-08 20:00:13 -06:00
GET /setup/ai controllers.Setup.aiForm
POST /setup/ai controllers.Setup.ai
2014-05-24 10:43:09 -06:00
GET /setup/friend controllers.Setup.friendForm(user: Option[String] ?= None)
POST /setup/friend controllers.Setup.friend(user: Option[String] ?= None)
2013-06-05 06:54:33 -06:00
POST /setup/decline controllers.Setup.decline(gameId: String)
GET /$fullId<\w{12}>/await controllers.Setup.await(fullId: String, user: Option[String] ?= None)
GET /$fullId<\w{12}>/cancel controllers.Setup.cancel(fullId: String)
POST /$id<\w{8}>/join controllers.Setup.join(id: String)
2013-05-08 20:00:13 -06:00
GET /setup/hook controllers.Setup.hookForm
2013-05-18 21:31:06 -06:00
POST /setup/hook/:uid controllers.Setup.hook(uid: String)
2013-05-08 20:00:13 -06:00
GET /setup/filter controllers.Setup.filterForm
POST /setup/filter controllers.Setup.filter
GET /setup/validate-fen controllers.Setup.validateFen
2013-12-23 11:56:30 -07:00
# I18n
2013-04-09 12:58:34 -06:00
GET /translation/contribute controllers.I18n.contribute
2013-05-08 10:15:55 -06:00
GET /translation/form/:lang controllers.I18n.translationForm(lang: String)
POST /translation/post/:lang controllers.I18n.translationPost(lang: String)
2013-05-08 10:15:55 -06:00
GET /translation/fetch/:from controllers.I18n.fetch(from: Int)
POST /translation/hideCalls controllers.I18n.hideCalls
2013-12-23 11:56:30 -07:00
# Authentication
2013-04-09 12:58:34 -06:00
GET /login controllers.Auth.login
POST /login controllers.Auth.authenticate
GET /logout controllers.Auth.logout
GET /signup controllers.Auth.signup
POST /signup controllers.Auth.signupPost
2014-12-14 17:32:18 -07:00
GET /password/reset controllers.Auth.passwordReset
POST /password/reset controllers.Auth.passwordResetApply
GET /password/reset/sent/:email controllers.Auth.passwordResetSent(email: String)
GET /password/reset/confirm/:token controllers.Auth.passwordResetConfirm(token: String)
POST /password/reset/confirm/:token controllers.Auth.passwordResetConfirmApply(token: String)
2013-12-23 11:56:30 -07:00
# Mod
POST /mod/:username/engine controllers.Mod.engine(username: String)
POST /mod/:username/troll controllers.Mod.troll(username: String)
POST /mod/:username/ban controllers.Mod.ban(username: String)
2014-02-01 06:13:22 -07:00
POST /mod/:username/close controllers.Mod.closeAccount(username: String)
2013-09-11 04:38:16 -06:00
POST /mod/:username/reopen controllers.Mod.reopenAccount(username: String)
2014-02-26 17:18:09 -07:00
POST /mod/:username/title controllers.Mod.setTitle(username: String)
GET /mod/:username/communication controllers.Mod.communication(username: String)
POST /mod/:ip/ipban controllers.Mod.ipban(ip: String)
GET /mod/log controllers.Mod.log
2013-12-23 11:56:30 -07:00
# Wiki
GET /wiki controllers.Wiki.home
GET /wiki/:slug controllers.Wiki.show(slug: String)
2013-12-23 11:56:30 -07:00
# AI
GET /ai/move controllers.Ai.move
POST /ai/analyse controllers.Ai.analyse
2013-12-23 11:56:30 -07:00
# Bookmark
2014-06-29 05:07:17 -06:00
POST /bookmark/$gameId<\w{8}> controllers.Bookmark.toggle(gameId: String)
2013-12-23 11:56:30 -07:00
# Forum
GET /forum controllers.ForumCateg.index
GET /forum/recent controllers.ForumPost.recent
GET /forum/search controllers.ForumPost.search(text: String ?= "", page: Int ?= 1)
2013-04-09 12:58:34 -06:00
GET /forum/:slug controllers.ForumCateg.show(slug: String, page: Int ?= 1)
GET /forum/:categSlug/form controllers.ForumTopic.form(categSlug: String)
POST /forum/:categSlug/new controllers.ForumTopic.create(categSlug: String)
GET /forum/:categSlug/:slug controllers.ForumTopic.show(categSlug: String, slug: String, page: Int ?= 1)
POST /forum/:categSlug/:slug/close controllers.ForumTopic.close(categSlug: String, slug: String)
POST /forum/:categSlug/:slug/hide controllers.ForumTopic.hide(categSlug: String, slug: String)
POST /forum/:categSlug/:slug/new controllers.ForumPost.create(categSlug: String, slug: String, page: Int ?= 1)
POST /forum/:categSlug/delete/:id controllers.ForumPost.delete(categSlug: String, id: String)
2013-05-27 09:01:19 -06:00
GET /forum/redirect/post/:id controllers.ForumPost.redirect(id: String)
2013-12-23 11:56:30 -07:00
# Message
2013-05-06 15:52:48 -06:00
GET /inbox controllers.Message.inbox(page: Int ?= 1)
GET /inbox/new controllers.Message.form
POST /inbox/new controllers.Message.create
2013-05-28 15:15:13 -06:00
GET /inbox/preview controllers.Message.preview
2014-06-29 05:07:17 -06:00
GET /inbox/$id<\w{8}> controllers.Message.thread(id: String)
POST /inbox/$id<\w{8}> controllers.Message.answer(id: String)
POST /inbox/$id<\w{8}>/delete controllers.Message.delete(id: String)
POST /inbox/$id<\w{8}>/read controllers.Message.markAsRead(id: String)
2013-12-23 11:56:30 -07:00
# Notification
2014-06-29 05:07:17 -06:00
DELETE /notification/$id<\w{8}> controllers.Notification.remove(id)
2013-05-06 19:57:42 -06:00
2013-05-31 15:48:04 -06:00
# Paste
GET /paste controllers.Importer.importGame
POST /import controllers.Importer.sendGame
2013-07-21 06:27:47 -06:00
2014-06-26 06:38:14 -06:00
# Progressive import API
POST /api/import/live controllers.Importer.liveCreate
2014-06-29 05:07:17 -06:00
POST /api/import/live/$id<\w{8}>/:move controllers.Importer.liveMove(id: String, move: String)
2014-06-26 06:38:14 -06:00
2013-07-21 06:27:47 -06:00
# Edit
GET /editor/*urlFen controllers.Editor.load(urlFen: String)
GET /editor controllers.Editor.index
2013-12-23 11:56:30 -07:00
# Monitor
2013-04-09 12:58:34 -06:00
GET /monitor controllers.Monitor.index
2013-05-08 12:30:55 -06:00
GET /monitor/socket controllers.Monitor.websocket
GET /monitor/status controllers.Monitor.status
# Report
GET /report controllers.Report.form
POST /report controllers.Report.create
GET /report/thanks controllers.Report.thanks
2013-07-27 14:55:29 -06:00
GET /report/list controllers.Report.list
POST /report/:id/process controllers.Report.process(id: String)
# QA
GET /qa controllers.QaQuestion.index(page: Option[Int] ?= None)
GET /qa/search controllers.QaQuestion.search
GET /qa/ask controllers.QaQuestion.ask
POST /qa/ask controllers.QaQuestion.doAsk
GET /qa/tag/:slug controllers.QaQuestion.byTag(slug: String)
GET /qa/:id/:slug controllers.QaQuestion.show(id: Int, slug: String)
2014-07-05 08:50:04 -06:00
GET /qa/:id/:slug/edit controllers.QaQuestion.edit(id: Int, slug: String)
POST /qa/:id/edit controllers.QaQuestion.doEdit(id: Int)
POST /qa/:id/vote controllers.QaQuestion.vote(id: Int)
POST /qa/:id/rm controllers.QaQuestion.remove(id: Int)
POST /qa/:id/answer controllers.QaAnswer.create(id: Int)
POST /qa/:id/:a/vote controllers.QaAnswer.vote(id: Int, a: Int)
POST /qa/:id/:a/accept controllers.QaAnswer.accept(id: Int, a: Int)
POST /qa/:id/:a/edit-answer controllers.QaAnswer.doEdit(id: Int, a: Int)
POST /qa/:id/:a/rm-answer controllers.QaAnswer.remove(id: Int, a: Int)
2014-09-09 13:55:44 -06:00
POST /qa/:id/:a/move controllers.QaAnswer.moveTo(id: Int, a: Int)
2014-07-05 08:50:04 -06:00
POST /qa/:id/comment controllers.QaComment.question(id: Int)
POST /qa/:id/:a/comment controllers.QaComment.answer(id: Int, a: Int)
POST /qa/:id/:c/rm-comment controllers.QaComment.remove(id: Int, c: String)
2013-12-30 19:00:56 -07:00
# API
2014-01-08 17:06:20 -07:00
GET /api/user controllers.Api.users
2013-12-30 19:00:56 -07:00
GET /api/user/:id controllers.Api.user(id: String)
2014-01-07 18:43:20 -07:00
GET /api/game controllers.Api.games
2014-06-06 03:08:43 -06:00
GET /api/game/:id controllers.Api.game(id: String)
2014-04-17 02:34:48 -06:00
GET /api/puzzle/:id controllers.Api.puzzle(id: String)
# POST /api/puzzle controllers.Puzzle.importBatch
2014-12-15 16:26:13 -07:00
POST /api/opening controllers.Opening.importOne
2013-12-30 19:00:56 -07:00
2013-04-09 12:58:34 -06:00
# Misc
POST /cli controllers.Cli.command
2014-08-25 02:09:16 -06:00
GET /captcha/$id<\w{8}> controllers.Main.captchaCheck(id: String)
2013-04-09 12:58:34 -06:00
GET /developers controllers.Main.developers
2013-05-31 06:27:18 -06:00
GET /embed controllers.Main.embed
2014-02-01 12:42:39 -07:00
GET /irc controllers.Main.irc
2014-08-25 02:09:16 -06:00
# Map
GET /world-map controllers.WorldMap.index
GET /world-map/stream controllers.WorldMap.stream
# Pages
GET /thanks controllers.Page.thanks
GET /help-lichess controllers.Page.helpLichess
GET /terms-of-service controllers.Page.tos
GET /how-to-stream-on-lichess controllers.Page.streamHowTo
GET /contact controllers.Page.contact
2014-07-29 13:22:10 -06:00
GET /king-of-the-hill controllers.Page.kingOfTheHill
2013-04-09 12:58:34 -06:00
2014-06-29 09:42:09 -06:00
# Donate
GET /donate controllers.Donation.index
GET /donate/thanks controllers.Donation.thanks
POST /donate/ipn controllers.Donation.ipn
# Assets
GET /assets/*file controllers.Assets.at(path="/public", file)