lila/modules/relay/src/main/RelaySync.scala

201 lines
6.9 KiB
Scala
Raw Normal View History

2017-09-19 20:24:59 -06:00
package lila.relay
2017-10-05 15:48:14 -06:00
import org.joda.time.DateTime
2017-10-06 17:33:33 -06:00
import chess.format.pgn.{ Tag, Tags }
2017-09-20 13:35:28 -06:00
import lila.socket.Socket.Uid
import lila.study._
2017-09-19 20:24:59 -06:00
private final class RelaySync(
2017-09-20 13:35:28 -06:00
studyApi: StudyApi,
chapterRepo: ChapterRepo
) {
2017-09-19 20:24:59 -06:00
2017-10-04 23:59:35 -06:00
private type NbMoves = Int
def apply(relay: Relay, games: RelayGames): Fu[SyncResult.Ok] =
studyApi byId relay.studyId flatten "Missing relay study!" flatMap { study =>
chapterRepo orderedByStudy study.id flatMap { chapters =>
2018-10-17 03:55:10 -06:00
RelayInputSanity(chapters, games) match {
case Some(fail) => fufail(SyncResult.SourceFail(fail.msg))
case None => lila.common.Future.traverseSequentially(games) { game =>
findCorrespondingChapter(game, chapters, games.size) match {
case Some(chapter) => updateChapter(study, chapter, game)
case None => createChapter(study, game) flatMap { chapter =>
chapters.find(_.isEmptyInitial).ifTrue(chapter.order == 2).?? { initial =>
studyApi.deleteChapter(study.ownerId, study.id, initial.id, socketUid)
} inject chapter.root.mainline.size
}
}
2018-10-17 03:55:10 -06:00
} map { _.foldLeft(0)(_ + _) } map { SyncResult.Ok(_, games) }
}
}
2017-09-20 13:35:28 -06:00
}
2017-09-19 20:24:59 -06:00
/*
* If the source contains several games, use their index to match them with the study chapter.
* If the source contains only one game, use the player tags to match with the study chapter.
* So the TCEC style - one game per file, reusing the file for all games - is supported.
* lichess will create a new chapter when the game player tags differ.
*/
private def findCorrespondingChapter(game: RelayGame, chapters: List[Chapter], nbGames: Int): Option[Chapter] =
2018-10-17 03:55:10 -06:00
if (nbGames == 1) chapters find game.staticTagsMatch
else chapters.find(_.relay.exists(_.index == game.index))
private def updateChapter(study: Study, chapter: Chapter, game: RelayGame): Fu[NbMoves] =
2017-10-06 17:33:33 -06:00
updateChapterTags(study, chapter, game) >>
updateChapterTree(study, chapter, game)
private def updateChapterTree(study: Study, chapter: Chapter, game: RelayGame): Fu[NbMoves] =
2017-09-20 13:35:28 -06:00
game.root.mainline.foldLeft(Path.root -> none[Node]) {
case ((parentPath, None), gameNode) =>
val path = parentPath + gameNode
chapter.root.nodeAt(path) match {
case None => parentPath -> gameNode.some
case Some(existing) =>
gameNode.clock.filter(c => !existing.clock.has(c)) ?? { c =>
2017-10-09 12:36:36 -06:00
studyApi.setClock(
studyId = study.id,
position = Position(chapter, path).ref,
clock = c.some,
uid = socketUid
)
}
path -> none
}
2017-09-20 13:35:28 -06:00
case (found, _) => found
} match {
case (path, newNode) =>
!Path.isMainline(chapter.root, path) ?? {
2018-10-17 03:55:10 -06:00
logger.info(s"Promote ${showSC(study, chapter)} $path")
studyApi.promote(
userId = chapter.ownerId,
studyId = study.id,
position = Position(chapter, path).ref,
toMainline = true,
uid = socketUid
)
} >> newNode.?? { node =>
lila.common.Future.fold(node.mainline)(Position(chapter, path).ref) {
case (position, n) => studyApi.addNode(
userId = chapter.ownerId,
studyId = study.id,
position = position,
node = n,
uid = socketUid,
opts = moveOpts.copy(clock = n.clock),
relay = Chapter.Relay(
index = game.index,
path = position.path + n,
lastMoveAt = DateTime.now
).some
) inject position + n
} inject node.mainline.size
}
2017-09-20 13:35:28 -06:00
}
2017-10-06 17:33:33 -06:00
private def updateChapterTags(study: Study, chapter: Chapter, game: RelayGame): Funit = {
val gameTags = game.tags.value.foldLeft(Tags(Nil)) {
case (newTags, tag) =>
2017-10-10 15:08:48 -06:00
if (!chapter.tags.value.exists(tag ==)) newTags + tag
2017-10-06 17:33:33 -06:00
else newTags
}
val tags = game.end
.ifFalse(gameTags(_.Result).isDefined)
.filterNot(end => chapter.tags(_.Result).??(end.resultText ==))
.fold(gameTags) { end =>
gameTags + Tag(_.Result, end.resultText)
}
val chapterNewTags = tags.value.foldLeft(chapter.tags) {
case (chapterTags, tag) => PgnTags(chapterTags + tag)
}
(chapterNewTags != chapter.tags) ?? {
2018-10-17 03:55:10 -06:00
if (vs(chapterNewTags) != vs(chapter.tags))
logger.info(s"Update ${showSC(study, chapter)} tags '${vs(chapterNewTags)}' -> '${vs(chapter.tags)}'")
studyApi.setTags(
userId = chapter.ownerId,
studyId = study.id,
chapterId = chapter.id,
tags = chapterNewTags,
uid = socketUid
) >> {
2018-03-13 09:08:48 -06:00
chapterNewTags.resultColor.isDefined ?? onChapterEnd(study.id, chapter.id)
}
}
2017-10-06 17:33:33 -06:00
}
2018-03-13 09:08:48 -06:00
private def onChapterEnd(studyId: Study.Id, chapterId: Chapter.Id): Funit =
chapterRepo.setRelayPath(chapterId, Path.root) >>
studyApi.analysisRequest(
studyId = studyId,
chapterId = chapterId,
userId = "lichess"
)
private def createChapter(study: Study, game: RelayGame): Fu[Chapter] =
2017-09-20 13:35:28 -06:00
chapterRepo.nextOrderByStudy(study.id) flatMap { order =>
val name = {
for {
w <- game.tags(_.White)
b <- game.tags(_.Black)
} yield s"$w - $b"
} orElse game.tags("board") getOrElse "?"
2017-09-20 13:35:28 -06:00
val chapter = Chapter.make(
studyId = study.id,
name = Chapter.Name(name),
2017-09-20 13:35:28 -06:00
setup = Chapter.Setup(
none,
game.variant,
2017-09-20 13:35:28 -06:00
chess.Color.White
),
root = game.root,
2017-10-05 11:28:07 -06:00
tags = game.tags,
2017-09-20 13:35:28 -06:00
order = order,
ownerId = study.ownerId,
practice = false,
gamebook = false,
2017-10-07 06:14:25 -06:00
conceal = none,
relay = Chapter.Relay(
index = game.index,
2017-10-07 06:14:25 -06:00
path = game.root.mainlinePath,
lastMoveAt = DateTime.now
2017-10-07 06:14:25 -06:00
).some
2017-09-20 13:35:28 -06:00
)
studyApi.doAddChapter(study, chapter, sticky = false, uid = socketUid) inject chapter
2017-09-20 13:35:28 -06:00
}
private val moveOpts = MoveOpts(
write = true,
sticky = false,
promoteToMainline = true,
clock = none
)
private val socketUid = Uid("")
2018-10-17 03:55:10 -06:00
private def vs(tags: Tags) =
(tags(_.White) |@| tags(_.Black)).tupled map { case (w, b) => s"$w - $b" }
private def showSC(study: Study, chapter: Chapter) =
s"#${study.id} chapter[${chapter.relay.fold("?")(_.index.toString)}]"
2017-09-19 20:24:59 -06:00
}
2017-10-18 11:54:50 -06:00
sealed trait SyncResult {
val reportKey: String
}
object SyncResult {
2017-10-18 11:54:50 -06:00
case class Ok(moves: Int, games: RelayGames) extends SyncResult {
val reportKey = "ok"
}
case object Timeout extends Exception with SyncResult {
val reportKey = "timeout"
override def getMessage = "In progress..."
}
2018-10-17 03:55:10 -06:00
case class Error(msg: String) extends Exception with SyncResult {
val reportKey = "error"
}
case class SourceFail(msg: String) extends Exception with SyncResult {
2017-10-18 11:54:50 -06:00
val reportKey = "error"
}
}