🎨 Wrap CSS styling in unsafe tag
[rhynodge.git] / src / main / kotlin / net / pterodactylus / rhynodge / filters / webpages / savoy / MovieState.kt
1 package net.pterodactylus.rhynodge.filters.webpages.savoy
2
3 import com.fasterxml.jackson.annotation.JsonProperty
4 import kotlinx.html.a
5 import kotlinx.html.body
6 import kotlinx.html.div
7 import kotlinx.html.dom.serialize
8 import kotlinx.html.head
9 import kotlinx.html.html
10 import kotlinx.html.img
11 import kotlinx.html.li
12 import kotlinx.html.ol
13 import kotlinx.html.section
14 import kotlinx.html.style
15 import kotlinx.html.title
16 import kotlinx.html.ul
17 import kotlinx.html.unsafe
18 import net.pterodactylus.rhynodge.Reaction
19 import net.pterodactylus.rhynodge.states.AbstractState
20 import java.time.LocalDateTime
21 import java.util.Locale
22
23 class MovieState(@JsonProperty val movies: Collection<Movie>, val newMovies: Collection<Movie> = emptySet(), private val triggered: Boolean = false) : AbstractState() {
24
25         private constructor() : this(emptySet())
26
27         override fun summary(reaction: Reaction) =
28                 "%s â€“ Programme for %tY-%<tm-%<td".format(reaction.name(), earliestMovie?.earliestPerformance)
29
30         override fun plainText() = ""
31
32         override fun htmlText() = kotlinx.html.dom.createHTMLDocument().html {
33                 head {
34                         title { +"Savoy Programme" }
35                         style("text/css") {
36                                 unsafe {
37                                         +"html { font-family: 'Recursive Sans Linear Static', Roboto, serif; }"
38                                         +"section.new-movies > .label { font-family: Impact, sans-serif; background-color: black; padding: 0.5ex; font-size: 200%; color: #ffffee; font-weight: bold; }"
39                                         +"section.new-movies ul { padding: 0; margin: 0; }"
40                                         +"section.new-movies li.movie { list-style: none; width: 250px; height: 353px; display: inline-block; position: relative; margin: 1ex 1ex 1ex 0ex; }"
41                                         +"section.new-movies li.movie img { width: 100%; height: 100%; display: block; position: absolute; z-index: -1; }"
42                                         +"section.new-movies li.movie .text { color: white; text-shadow: 2px 2px black; font-weight: bold; font-size: 150%; display: flex; flex-direction: column; justify-content: end; width: 100%; height: 100%; }"
43                                         +"section.new-movies li.movie .text .name { padding: 1ex; font-size: 120%; }"
44
45                                         +"section.daily-programmes ol { padding: 0; }"
46                                         +"section.daily-programmes li { list-style: none; }"
47                                         +"section.daily-programmes li.day > .label { font-family: Impact, sans-serif; background-color: black; padding: 0.5ex; font-size: 200%; color: #ffffee; font-weight: bold; }"
48                                         +"section.daily-programmes li .performances { display: flex; border-top: 1ex; }"
49                                         +"section.daily-programmes li.performance { width: 250px; height: 353px; display: inline-block; margin: 1ex 1ex 1ex 0ex; position: relative; }"
50                                         +"section.daily-programmes li.performance a { width: 100%; height: 100%; display: block; text-decoration: none; }"
51                                         +"section.daily-programmes li.performance a img { width: 100%; height: 100%; display: block; position: absolute; z-index: -1; }"
52                                         +"section.daily-programmes li.performance a .text { color: white; text-shadow: 2px 2px black; font-weight: bold; font-size: 150%; width: 100%; height: 100%; }"
53                                         +"section.daily-programmes li.performance a .text .time { padding: 1ex; text-align: right; }"
54                                         +"section.daily-programmes li.performance a .text .type { padding: 0ex 1ex 1ex 1ex; text-align: right; }"
55                                         +"section.daily-programmes li.performance a .text .name { padding: 1ex; font-size: 120%; bottom: 0px; position: absolute; }"
56                                 }
57                         }
58                 }
59                 body {
60                         if (newMovies.isNotEmpty()) {
61                                 section("new-movies") {
62                                         div("label") {
63                                                 +"New Movies"
64                                         }
65                                         ul {
66                                                 newMovies.forEach { movie ->
67                                                         li("movie") {
68                                                                 img(src = movie.imageUrl)
69                                                                 div("text") {
70                                                                         div("name") {
71                                                                                 +(movie.name)
72                                                                         }
73                                                                 }
74                                                         }
75                                                 }
76                                         }
77                                 }
78                         }
79
80                         section("daily-programmes") {
81
82                                 ol("days") {
83                                         movies.flatMap { it.performances.map(Performance::getTime).map(LocalDateTime::toLocalDate) }.distinct().sorted().forEach { date ->
84                                                 li("day") {
85                                                         attributes += "data-date" to "%tY-%<tm-%<td".format(date)
86                                                         div("label") {
87                                                                 +("Programme for %tA, %<tY-%<tm-%<td".format(Locale.ENGLISH, date))
88                                                         }
89                                                         ol("performances") {
90                                                                 movies
91                                                                         .flatMap { movie -> movie.performances.map { movie to it } }
92                                                                         .filter { (movie, performances) -> performances.time.toLocalDate() == date }
93                                                                         .sortedBy { (_, performance) -> performance.time }
94                                                                         .forEach { (movie, performance) ->
95                                                                                 li("performance") {
96                                                                                         a(href = performance.link) {
97                                                                                                 img(src = movie.imageUrl)
98                                                                                                 div("text") {
99                                                                                                         div("time") {
100                                                                                                                 +("%tH:%<tM".format(performance.time))
101                                                                                                         }
102                                                                                                         div("type") {
103                                                                                                                 +performance.type
104                                                                                                         }
105                                                                                                         div("name") {
106                                                                                                                 +(movie.name)
107                                                                                                         }
108                                                                                                 }
109                                                                                         }
110                                                                                 }
111                                                                         }
112                                                         }
113                                                 }
114                                         }
115                                 }
116                         }
117                 }
118
119         }.serialize()
120
121         override fun triggered() = newMovies.isNotEmpty() || triggered
122
123         private val earliestMovie = movies.minByOrNull { it.earliestPerformance ?: LocalDateTime.MAX }
124         private val Movie.earliestPerformance: LocalDateTime? get() = performances.minOfOrNull(Performance::getTime)
125
126 }