Add test for DI constructability of UnfollowSoneAjaxPage
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / ajax / UnfollowSoneAjaxPage.kt
index 229765d..b1bca19 100644 (file)
@@ -4,16 +4,18 @@ 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
+import javax.inject.Inject
 
 /**
  * AJAX page that lets a Sone unfollow another Sone.
  */
-class UnfollowSoneAjaxPage(webInterface: WebInterface) : LoggedInJsonPage("unfollowSone.ajax", webInterface) {
+class UnfollowSoneAjaxPage @Inject constructor(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(core::getSone)
+                                       ?.also { core.unfollowSone(currentSone, it.id) }
                                        ?.let { createSuccessJsonObject() }
                                        ?: createErrorJsonObject("invalid-sone-id")