b1bca19b1d546e2fde420e4726145d49b4ff2f7e
[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 import javax.inject.Inject
8
9 /**
10  * AJAX page that lets a Sone unfollow another Sone.
11  */
12 class UnfollowSoneAjaxPage @Inject constructor(webInterface: WebInterface) :
13                 LoggedInJsonPage("unfollowSone.ajax", webInterface) {
14
15         override fun createJsonObject(currentSone: Sone, request: FreenetRequest) =
16                         request.parameters["sone"]
17                                         ?.let(core::getSone)
18                                         ?.also { core.unfollowSone(currentSone, it.id) }
19                                         ?.let { createSuccessJsonObject() }
20                                         ?: createErrorJsonObject("invalid-sone-id")
21
22 }