X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fkotlin%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fnotification%2FNotificationHandlerModule.kt;h=7571f67c2fe1ad346491981d2b63cf81f2e2e557;hb=b2952fda6d34528489d7fa4e26e09133099c978f;hp=02bc3f9cfb049f0e5f7f01201dedcf717e6cf2f1;hpb=7cb0100ec63244e5f64654947206b610f96b006f;p=Sone.git diff --git a/src/main/kotlin/net/pterodactylus/sone/web/notification/NotificationHandlerModule.kt b/src/main/kotlin/net/pterodactylus/sone/web/notification/NotificationHandlerModule.kt index 02bc3f9..7571f67 100644 --- a/src/main/kotlin/net/pterodactylus/sone/web/notification/NotificationHandlerModule.kt +++ b/src/main/kotlin/net/pterodactylus/sone/web/notification/NotificationHandlerModule.kt @@ -23,6 +23,7 @@ import net.pterodactylus.sone.data.* import net.pterodactylus.sone.main.* import net.pterodactylus.sone.notify.* import net.pterodactylus.util.notify.* +import java.util.concurrent.Executors.* import javax.inject.* import javax.inject.Singleton @@ -36,6 +37,7 @@ class NotificationHandlerModule : AbstractModule() { } @Provides + @Singleton fun getMarkPostKnownDuringFirstStartHandler(core: Core, notificationManager: NotificationManager) = MarkPostKnownDuringFirstStartHandler(notificationManager, core::markPostKnown) @@ -50,4 +52,36 @@ class NotificationHandlerModule : AbstractModule() { fun getSoneLockedOnStartupNotification(loaders: Loaders) = ListNotification("sone-locked-on-startup", "sones", loaders.loadTemplate("/templates/notify/soneLockedOnStartupNotification.html")) + @Provides + @Singleton + fun getNewSoneHandler(notificationManager: NotificationManager, @Named("newSone") notification: ListNotification) = + NewSoneHandler(notificationManager, notification) + + @Provides + @Named("newSone") + fun getNewSoneNotification(loaders: Loaders) = + ListNotification("new-sone-notification", "sones", loaders.loadTemplate("/templates/notify/newSoneNotification.html"), dismissable = false) + + @Provides + @Singleton + fun getNewRemotePostHandler(notificationManager: NotificationManager, @Named("newRemotePost") newPostNotification: ListNotification) = + NewRemotePostHandler(notificationManager, newPostNotification) + + @Provides + @Singleton + @Named("newRemotePost") + fun getNewPostNotification(loaders: Loaders) = + ListNotification("new-post-notification", "posts", loaders.loadTemplate("/templates/notify/newPostNotification.html"), dismissable = false) + + @Provides + @Singleton + @Named("soneLocked") + fun getSoneLockedNotification(loaders: Loaders) = + ListNotification("sones-locked-notification", "sones", loaders.loadTemplate("/templates/notify/lockedSonesNotification.html"), dismissable = true) + + @Provides + @Singleton + fun getSoneLockedHandler(notificationManager: NotificationManager, @Named("soneLocked") soneLockedNotification: ListNotification) = + SoneLockedHandler(notificationManager, soneLockedNotification, newScheduledThreadPool(1)) + }