Expose core as member of JsonPage
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / ajax / UnfollowSoneAjaxPage.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 unfollow another Sone.
10  */
11 class UnfollowSoneAjaxPage(webInterface: WebInterface) : LoggedInJsonPage("unfollowSone.ajax", webInterface) {
12
13         override fun createJsonObject(currentSone: Sone, request: FreenetRequest) =
14                         request.parameters["sone"]
15                                         ?.takeIf { core.getSone(it).isPresent }
16                                         ?.also { core.unfollowSone(currentSone, it) }
17                                         ?.let { createSuccessJsonObject() }
18                                         ?: createErrorJsonObject("invalid-sone-id")
19
20 }