🚧 Add handler for marking replies as known during first start
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / web / notification / NotificationHandlerModule.kt
1 /**
2  * Sone - NotificationHandlerModuleTest.kt - Copyright Â© 2019 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<SoneLockedHandler>().asSingleton()
48                 bind<LocalPostHandler>().asSingleton()
49                 bind<NewVersionHandler>().asSingleton()
50                 bind<ImageInsertHandler>().asSingleton()
51                 bind<FirstStartHandler>().asSingleton()
52                 bind<ConfigNotReadHandler>().asSingleton()
53                 bind<StartupHandler>().asSingleton()
54                 bind<WebOfTrustHandler>().asSingleton()
55                 bind<SoneMentionDetector>().asSingleton()
56                 bind<SoneMentionedHandler>().asSingleton()
57         }
58
59         @Provides
60         fun getMarkPostKnownHandler(core: Core): Consumer<Post> = Consumer { core.markPostKnown(it) }
61
62         @Provides
63         fun getMarkPostReplyKnownHandler(core: Core): Consumer<PostReply> = Consumer { core.markReplyKnown(it) }
64
65         @Provides
66         @Singleton
67         @Named("soneLockedOnStartup")
68         fun getSoneLockedOnStartupNotification(loaders: Loaders) =
69                         ListNotification<Sone>("sone-locked-on-startup", "sones", loaders.loadTemplate("/templates/notify/soneLockedOnStartupNotification.html"))
70
71         @Provides
72         @Named("newSone")
73         fun getNewSoneNotification(loaders: Loaders) =
74                         ListNotification<Sone>("new-sone-notification", "sones", loaders.loadTemplate("/templates/notify/newSoneNotification.html"), dismissable = false)
75
76         @Provides
77         @Singleton
78         @Named("newRemotePost")
79         fun getNewPostNotification(loaders: Loaders) =
80                         ListNotification<Post>("new-post-notification", "posts", loaders.loadTemplate("/templates/notify/newPostNotification.html"), dismissable = false)
81
82         @Provides
83         @Singleton
84         @Named("soneLocked")
85         fun getSoneLockedNotification(loaders: Loaders) =
86                         ListNotification<Sone>("sones-locked-notification", "sones", loaders.loadTemplate("/templates/notify/lockedSonesNotification.html"), dismissable = true)
87
88         @Provides
89         @Singleton
90         @Named("localPost")
91         fun getLocalPostNotification(loaders: Loaders) =
92                         ListNotification<Post>("local-post-notification", "posts", loaders.loadTemplate("/templates/notify/newPostNotification.html"), dismissable = false)
93
94         @Provides
95         @Singleton
96         @Named("newVersion")
97         fun getNewVersionNotification(loaders: Loaders) =
98                         TemplateNotification("new-version-notification", loaders.loadTemplate("/templates/notify/newVersionNotification.html"))
99
100         @Provides
101         @Singleton
102         @Named("imageInserting")
103         fun getImageInsertingNotification(loaders: Loaders) =
104                         ListNotification<Image>("inserting-images-notification", "images", loaders.loadTemplate("/templates/notify/inserting-images-notification.html"), dismissable = true)
105
106         @Provides
107         @Singleton
108         @Named("imageFailed")
109         fun getImageInsertingFailedNotification(loaders: Loaders) =
110                         ListNotification<Image>("image-insert-failed-notification", "images", loaders.loadTemplate("/templates/notify/image-insert-failed-notification.html"), dismissable = true)
111
112         @Provides
113         @Singleton
114         @Named("imageInserted")
115         fun getImageInsertedNotification(loaders: Loaders) =
116                         ListNotification<Image>("inserted-images-notification", "images", loaders.loadTemplate("/templates/notify/inserted-images-notification.html"), dismissable = true)
117
118         @Provides
119         @Singleton
120         @Named("firstStart")
121         fun getFirstStartNotification(loaders: Loaders) =
122                         TemplateNotification("first-start-notification", loaders.loadTemplate("/templates/notify/firstStartNotification.html"))
123
124         @Provides
125         @Singleton
126         @Named("configNotRead")
127         fun getConfigNotReadNotification(loaders: Loaders) =
128                         TemplateNotification("config-not-read-notification", loaders.loadTemplate("/templates/notify/configNotReadNotification.html"))
129
130         @Provides
131         @Singleton
132         @Named("startup")
133         fun getStartupNotification(loaders: Loaders) =
134                         TemplateNotification("startup-notification", loaders.loadTemplate("/templates/notify/startupNotification.html"))
135
136         @Provides
137         @Singleton
138         @Named("webOfTrust")
139         fun getWebOfTrustNotification(loaders: Loaders) =
140                         TemplateNotification("wot-missing-notification", loaders.loadTemplate("/templates/notify/wotMissingNotification.html"))
141
142         @Provides
143         @Singleton
144         @Named("webOfTrustReacher")
145         fun getWebOfTrustReacher(webOfTrustConnector: WebOfTrustConnector): Runnable =
146                         Runnable { webOfTrustConnector.ping() }
147
148         @Provides
149         @Singleton
150         @Named("webOfTrustReschedule")
151         fun getWebOfTrustReschedule(@Named("notification") ticker: ScheduledExecutorService) =
152                         Consumer<Runnable> { ticker.schedule(it, 15, SECONDS) }
153
154         @Provides
155         @Singleton
156         @Named("soneMentioned")
157         fun getSoneMentionedNotification(loaders: Loaders) =
158                         ListNotification<Post>("mention-notification", "posts", loaders.loadTemplate("/templates/notify/mentionNotification.html"), dismissable = false)
159
160         private inline fun <reified T> bind(): AnnotatedBindingBuilder<T> = bind(T::class.java)
161         private fun ScopedBindingBuilder.asSingleton() = `in`(Singleton::class.java)
162
163 }