Replace unfollow Sone ajax page with Kotlin version
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / ajax / UnfollowSoneAjaxPage.kt
diff --git a/src/main/kotlin/net/pterodactylus/sone/web/ajax/UnfollowSoneAjaxPage.kt b/src/main/kotlin/net/pterodactylus/sone/web/ajax/UnfollowSoneAjaxPage.kt
new file mode 100644 (file)
index 0000000..229765d
--- /dev/null
@@ -0,0 +1,20 @@
+package net.pterodactylus.sone.web.ajax
+
+import net.pterodactylus.sone.data.Sone
+import net.pterodactylus.sone.utils.parameters
+import net.pterodactylus.sone.web.WebInterface
+import net.pterodactylus.sone.web.page.FreenetRequest
+
+/**
+ * AJAX page that lets a Sone unfollow another Sone.
+ */
+class UnfollowSoneAjaxPage(webInterface: WebInterface) : LoggedInJsonPage("unfollowSone.ajax", webInterface) {
+
+       override fun createJsonObject(currentSone: Sone, request: FreenetRequest) =
+                       request.parameters["sone"]
+                                       ?.takeIf { webInterface.core.getSone(it).isPresent }
+                                       ?.also { webInterface.core.unfollowSone(currentSone, it) }
+                                       ?.let { createSuccessJsonObject() }
+                                       ?: createErrorJsonObject("invalid-sone-id")
+
+}