2 * Sone - NotificationHandlerModule.kt - Copyright © 2019–2020 David ‘Bombe’ Roden
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package net.pterodactylus.sone.web.notification
20 import com.google.inject.*
21 import com.google.inject.binder.*
22 import net.pterodactylus.sone.core.*
23 import net.pterodactylus.sone.data.*
24 import net.pterodactylus.sone.freenet.wot.*
25 import net.pterodactylus.sone.main.*
26 import net.pterodactylus.sone.notify.*
27 import net.pterodactylus.sone.text.*
28 import net.pterodactylus.util.notify.*
29 import java.util.concurrent.*
30 import java.util.concurrent.TimeUnit.*
31 import java.util.function.*
33 import javax.inject.Singleton
36 * Guice module for creating all notification handlers.
38 class NotificationHandlerModule : AbstractModule() {
40 override fun configure() {
41 bind(NotificationHandler::class.java).`in`(Singleton::class.java)
42 bind<MarkPostKnownDuringFirstStartHandler>().asSingleton()
43 bind<MarkPostReplyKnownDuringFirstStartHandler>().asSingleton()
44 bind<SoneLockedOnStartupHandler>().asSingleton()
45 bind<NewSoneHandler>().asSingleton()
46 bind<NewRemotePostHandler>().asSingleton()
47 bind<RemotePostReplyHandler>().asSingleton()
48 bind<SoneLockedHandler>().asSingleton()
49 bind<LocalPostHandler>().asSingleton()
50 bind<LocalReplyHandler>().asSingleton()
51 bind<NewVersionHandler>().asSingleton()
52 bind<ImageInsertHandler>().asSingleton()
53 bind<FirstStartHandler>().asSingleton()
54 bind<ConfigNotReadHandler>().asSingleton()
55 bind<StartupHandler>().asSingleton()
56 bind<WebOfTrustHandler>().asSingleton()
57 bind<SoneMentionDetector>().asSingleton()
58 bind<SoneMentionedHandler>().asSingleton()
59 bind<SoneInsertHandler>().asSingleton()
63 fun getMarkPostKnownHandler(core: Core): Consumer<Post> = Consumer { core.markPostKnown(it) }
66 fun getMarkPostReplyKnownHandler(core: Core): Consumer<PostReply> = Consumer { core.markReplyKnown(it) }
70 @Named("soneLockedOnStartup")
71 fun getSoneLockedOnStartupNotification(loaders: Loaders) =
72 ListNotification<Sone>("sone-locked-on-startup", "sones", loaders.loadTemplate("/templates/notify/soneLockedOnStartupNotification.html"))
76 fun getNewSoneNotification(loaders: Loaders) =
77 ListNotification<Sone>("new-sone-notification", "sones", loaders.loadTemplate("/templates/notify/newSoneNotification.html"), dismissable = false)
81 @Named("newRemotePost")
82 fun getNewPostNotification(loaders: Loaders) =
83 ListNotification<Post>("new-post-notification", "posts", loaders.loadTemplate("/templates/notify/newPostNotification.html"), dismissable = false)
87 @Named("newRemotePostReply")
88 fun getNewRemotePostReplyNotification(loaders: Loaders) =
89 ListNotification<PostReply>("new-reply-notification", "replies", loaders.loadTemplate("/templates/notify/newReplyNotification.html"), dismissable = false)
94 fun getSoneLockedNotification(loaders: Loaders) =
95 ListNotification<Sone>("sones-locked-notification", "sones", loaders.loadTemplate("/templates/notify/lockedSonesNotification.html"), dismissable = true)
100 fun getLocalPostNotification(loaders: Loaders) =
101 ListNotification<Post>("local-post-notification", "posts", loaders.loadTemplate("/templates/notify/newPostNotification.html"), dismissable = false)
106 fun getLocalReplyNotification(loaders: Loaders) =
107 ListNotification<PostReply>("local-reply-notification", "replies", loaders.loadTemplate("/templates/notify/newReplyNotification.html"), dismissable = false)
112 fun getNewVersionNotification(loaders: Loaders) =
113 TemplateNotification("new-version-notification", loaders.loadTemplate("/templates/notify/newVersionNotification.html"))
117 @Named("imageInserting")
118 fun getImageInsertingNotification(loaders: Loaders) =
119 ListNotification<Image>("inserting-images-notification", "images", loaders.loadTemplate("/templates/notify/inserting-images-notification.html"), dismissable = true)
123 @Named("imageFailed")
124 fun getImageInsertingFailedNotification(loaders: Loaders) =
125 ListNotification<Image>("image-insert-failed-notification", "images", loaders.loadTemplate("/templates/notify/image-insert-failed-notification.html"), dismissable = true)
129 @Named("imageInserted")
130 fun getImageInsertedNotification(loaders: Loaders) =
131 ListNotification<Image>("inserted-images-notification", "images", loaders.loadTemplate("/templates/notify/inserted-images-notification.html"), dismissable = true)
136 fun getFirstStartNotification(loaders: Loaders) =
137 TemplateNotification("first-start-notification", loaders.loadTemplate("/templates/notify/firstStartNotification.html"))
141 @Named("configNotRead")
142 fun getConfigNotReadNotification(loaders: Loaders) =
143 TemplateNotification("config-not-read-notification", loaders.loadTemplate("/templates/notify/configNotReadNotification.html"))
148 fun getStartupNotification(loaders: Loaders) =
149 TemplateNotification("startup-notification", loaders.loadTemplate("/templates/notify/startupNotification.html"))
154 fun getWebOfTrustNotification(loaders: Loaders) =
155 TemplateNotification("wot-missing-notification", loaders.loadTemplate("/templates/notify/wotMissingNotification.html"))
159 @Named("webOfTrustReacher")
160 fun getWebOfTrustReacher(webOfTrustConnector: WebOfTrustConnector): Runnable =
161 Runnable { webOfTrustConnector.ping() }
165 @Named("webOfTrustReschedule")
166 fun getWebOfTrustReschedule(@Named("notification") ticker: ScheduledExecutorService) =
167 Consumer<Runnable> { ticker.schedule(it, 15, SECONDS) }
171 @Named("soneMentioned")
172 fun getSoneMentionedNotification(loaders: Loaders) =
173 ListNotification<Post>("mention-notification", "posts", loaders.loadTemplate("/templates/notify/mentionNotification.html"), dismissable = false)
177 fun getSoneNotificationSupplier(loaders: Loaders): SoneInsertNotificationSupplier =
178 mutableMapOf<Sone, TemplateNotification>()
181 cache.computeIfAbsent(sone) {
182 loaders.loadTemplate("/templates/notify/soneInsertNotification.html")
183 .let(::TemplateNotification)
184 .also { it["insertSone"] = sone }
189 private inline fun <reified T> bind(): AnnotatedBindingBuilder<T> = bind(T::class.java)
190 private fun ScopedBindingBuilder.asSingleton() = `in`(Singleton::class.java)