🔀 Merge “release/v81” into “master”
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / notification / NotificationHandlerModule.kt
1 /**
2  * Sone - NotificationHandlerModule.kt - Copyright © 2019–2020 David ‘Bombe’ Roden
3  *
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.
8  *
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.
13  *
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/>.
16  */
17
18 package net.pterodactylus.sone.web.notification
19
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.*
32 import javax.inject.*
33 import javax.inject.Singleton
34
35 /**
36  * Guice module for creating all notification handlers.
37  */
38 class NotificationHandlerModule : AbstractModule() {
39
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()
60         }
61
62         @Provides
63         fun getMarkPostKnownHandler(core: Core): Consumer<Post> = Consumer { core.markPostKnown(it) }
64
65         @Provides
66         fun getMarkPostReplyKnownHandler(core: Core): Consumer<PostReply> = Consumer { core.markReplyKnown(it) }
67
68         @Provides
69         @Singleton
70         @Named("soneLockedOnStartup")
71         fun getSoneLockedOnStartupNotification(loaders: Loaders) =
72                         ListNotification<Sone>("sone-locked-on-startup", "sones", loaders.loadTemplate("/templates/notify/soneLockedOnStartupNotification.html"))
73
74         @Provides
75         @Named("newSone")
76         fun getNewSoneNotification(loaders: Loaders) =
77                         ListNotification<Sone>("new-sone-notification", "sones", loaders.loadTemplate("/templates/notify/newSoneNotification.html"), dismissable = false)
78
79         @Provides
80         @Singleton
81         @Named("newRemotePost")
82         fun getNewPostNotification(loaders: Loaders) =
83                         ListNotification<Post>("new-post-notification", "posts", loaders.loadTemplate("/templates/notify/newPostNotification.html"), dismissable = false)
84
85         @Provides
86         @Singleton
87         @Named("newRemotePostReply")
88         fun getNewRemotePostReplyNotification(loaders: Loaders) =
89                         ListNotification<PostReply>("new-reply-notification", "replies", loaders.loadTemplate("/templates/notify/newReplyNotification.html"), dismissable = false)
90
91         @Provides
92         @Singleton
93         @Named("soneLocked")
94         fun getSoneLockedNotification(loaders: Loaders) =
95                         ListNotification<Sone>("sones-locked-notification", "sones", loaders.loadTemplate("/templates/notify/lockedSonesNotification.html"), dismissable = true)
96
97         @Provides
98         @Singleton
99         @Named("localPost")
100         fun getLocalPostNotification(loaders: Loaders) =
101                         ListNotification<Post>("local-post-notification", "posts", loaders.loadTemplate("/templates/notify/newPostNotification.html"), dismissable = false)
102
103         @Provides
104         @Singleton
105         @Named("localReply")
106         fun getLocalReplyNotification(loaders: Loaders) =
107                         ListNotification<PostReply>("local-reply-notification", "replies", loaders.loadTemplate("/templates/notify/newReplyNotification.html"), dismissable = false)
108
109         @Provides
110         @Singleton
111         @Named("newVersion")
112         fun getNewVersionNotification(loaders: Loaders) =
113                         TemplateNotification("new-version-notification", loaders.loadTemplate("/templates/notify/newVersionNotification.html"))
114
115         @Provides
116         @Singleton
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)
120
121         @Provides
122         @Singleton
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)
126
127         @Provides
128         @Singleton
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)
132
133         @Provides
134         @Singleton
135         @Named("firstStart")
136         fun getFirstStartNotification(loaders: Loaders) =
137                         TemplateNotification("first-start-notification", loaders.loadTemplate("/templates/notify/firstStartNotification.html"))
138
139         @Provides
140         @Singleton
141         @Named("configNotRead")
142         fun getConfigNotReadNotification(loaders: Loaders) =
143                         TemplateNotification("config-not-read-notification", loaders.loadTemplate("/templates/notify/configNotReadNotification.html"))
144
145         @Provides
146         @Singleton
147         @Named("startup")
148         fun getStartupNotification(loaders: Loaders) =
149                         TemplateNotification("startup-notification", loaders.loadTemplate("/templates/notify/startupNotification.html"))
150
151         @Provides
152         @Singleton
153         @Named("webOfTrust")
154         fun getWebOfTrustNotification(loaders: Loaders) =
155                         TemplateNotification("wot-missing-notification", loaders.loadTemplate("/templates/notify/wotMissingNotification.html"))
156
157         @Provides
158         @Singleton
159         @Named("webOfTrustReacher")
160         fun getWebOfTrustReacher(webOfTrustConnector: WebOfTrustConnector): Runnable =
161                         Runnable { webOfTrustConnector.ping() }
162
163         @Provides
164         @Singleton
165         @Named("webOfTrustReschedule")
166         fun getWebOfTrustReschedule(@Named("notification") ticker: ScheduledExecutorService) =
167                         Consumer<Runnable> { ticker.schedule(it, 15, SECONDS) }
168
169         @Provides
170         @Singleton
171         @Named("soneMentioned")
172         fun getSoneMentionedNotification(loaders: Loaders) =
173                         ListNotification<Post>("mention-notification", "posts", loaders.loadTemplate("/templates/notify/mentionNotification.html"), dismissable = false)
174
175         @Provides
176         @Singleton
177         fun getSoneNotificationSupplier(loaders: Loaders): SoneInsertNotificationSupplier =
178                         mutableMapOf<Sone, TemplateNotification>()
179                                         .let { cache ->
180                                                 { sone ->
181                                                         cache.computeIfAbsent(sone) {
182                                                                 loaders.loadTemplate("/templates/notify/soneInsertNotification.html")
183                                                                                 .let(::TemplateNotification)
184                                                                                 .also { it["insertSone"] = sone }
185                                                         }
186                                                 }
187                                         }
188
189         private inline fun <reified T> bind(): AnnotatedBindingBuilder<T> = bind(T::class.java)
190         private fun ScopedBindingBuilder.asSingleton() = `in`(Singleton::class.java)
191
192 }