ac7700801e6dec00f9f037411e299c83632f168f
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / ajax / FollowSoneAjaxPage.kt
1 package net.pterodactylus.sone.web.ajax
2
3 import net.pterodactylus.sone.data.Sone
4 import net.pterodactylus.sone.utils.parameters
5 import net.pterodactylus.sone.web.WebInterface
6 import net.pterodactylus.sone.web.page.FreenetRequest
7
8 /**
9  * AJAX page that lets a Sone follow another Sone.
10  */
11 class FollowSoneAjaxPage(webInterface: WebInterface) : LoggedInJsonPage("followSone.ajax", webInterface) {
12
13         override fun createJsonObject(currentSone: Sone, request: FreenetRequest) =
14                         request.parameters["sone"]
15                                         ?.let(core::getSone)
16                                         ?.also { core.followSone(currentSone, it.id) }
17                                         ?.also(core::markSoneKnown)
18                                         ?.let { createSuccessJsonObject() }
19                                         ?: createErrorJsonObject("invalid-sone-id")
20
21 }