1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
|
package space.anity
import io.javalin.*
import io.javalin.rendering.template.TemplateUtil.model
import org.joda.time.*
import org.slf4j.*
import kotlin.math.*
class UserHandler {
private val log = LoggerFactory.getLogger(this.javaClass.name)
/**
* Renders the login page
*/
fun renderLogin(ctx: Context) {
if (userHandler.getVerifiedUserId(ctx) > 0 || !databaseController.isSetup()) ctx.redirect("/")
else ctx.render("login.rocker.html", model("message", "", "counter", 0, "ctx", ctx))
}
/**
* Checks and verifies users credentials and logs the user in
*/
fun login(ctx: Context) {
if (getVerifiedUserId(ctx) > 0 || !databaseController.isSetup()) ctx.redirect("/")
val username = ctx.formParam("username").toString()
val password = ctx.formParam("password").toString()
val requestIp = ctx.ip()
val loginAttempts = databaseController.getLoginAttempts(requestIp)
val lastAttemptDifference =
if (loginAttempts.isEmpty()) -1
else Interval(
loginAttempts[loginAttempts.indexOfLast { true }].first.toInstant(),
Instant()
).toDuration().standardSeconds.toInt()
var lastHourAttempts = 0
loginAttempts.forEach {
val difference = Interval(it.first.toInstant(), Instant()).toDuration().standardMinutes.toInt()
if (difference < 60) lastHourAttempts += 1
}
val nextThreshold = 4f.pow(lastHourAttempts + 1)
if (lastAttemptDifference > 4f.pow(lastHourAttempts) || lastHourAttempts == 0) {
if (databaseController.checkUser(username, password)) {
ctx.cookieStore("verification", databaseController.getVerificationId(username))
ctx.cookieStore("userId", databaseController.getUserId(username))
ctx.redirect("/")
} else {
databaseController.loginAttempt(DateTime(), requestIp)
ctx.render(
"login.rocker.html",
model(
"message",
"Login failed!",
"counter", if (nextThreshold / 60 > 60) 3600 else nextThreshold.toInt(),
"ctx", ctx
)
)
}
} else {
databaseController.loginAttempt(DateTime(), requestIp)
ctx.render(
"login.rocker.html",
model(
"message",
"Too many request.",
"counter", if (nextThreshold / 60 > 60) 3600 else nextThreshold.toInt(),
"ctx", ctx
)
)
}
}
/**
* Logs the user out of the system
*/
fun logout(ctx: Context) {
ctx.clearCookieStore()
ctx.removeCookie("javalin-cookie-store", "/")
ctx.redirect("/")
}
/**
* Toggles the users dark theme
*/
fun toggleTheme(ctx: Context) {
databaseController.toggleDarkTheme(userHandler.getVerifiedUserId(ctx))
val dark = databaseController.isDarkTheme(userHandler.getVerifiedUserId(ctx))
ctx.json(mapOf("dark" to dark))
}
/**
* Renders the admin interface
*/
fun renderAdmin(ctx: Context) {
ctx.render("admin.rocker.html", model("message", "", "ctx", ctx))
}
/**
* Renders the setup page
*/
fun renderSetup(ctx: Context) {
if (databaseController.isSetup()) ctx.redirect("/user/login")
else ctx.render("setup.rocker.html", model("message", "", "ctx", ctx))
}
/**
* Sets up the general settings and admin credentials
*/
fun setup(ctx: Context) {
try {
val username = ctx.formParam("username").toString()
val password = ctx.formParam("password").toString()
val verifyPassword = ctx.formParam("verifyPassword").toString()
// TODO: Clean up ugly if statements in validation
if (username.matches("[a-zA-Z0-9]+".toRegex()) && username.length > 3) {
if (password == verifyPassword) {
if (password.length >= 8)
if (databaseController.createUser(username, password, "ADMIN")) {
databaseController.toggleSetup()
ctx.redirect("/user/login")
} else ctx.status(400).render(
"setup.rocker.html",
model("message", "User already exists!", "ctx", ctx)
)
else ctx.status(400).render(
"setup.rocker.html",
model("message", "Password is too short!", "ctx", ctx)
)
} else ctx.status(400).render(
"setup.rocker.html",
model("message", "Passwords do not match!", "ctx", ctx)
)
} else ctx.status(400).render(
"setup.rocker.html",
model("message", "Username must only use alphabetical characters!", "ctx", ctx)
)
} catch (err: Exception) {
ctx.status(400).render("setup.rocker.html", model("message", "An error occurred!", "ctx", ctx))
error(err)
}
}
/**
* Renders the registration page
*/
fun renderRegistration(ctx: Context) {
val username = ctx.queryParam("username", "")
val token = ctx.queryParam("token", "")
if (username.isNullOrEmpty()) throw ForbiddenResponse("Please provide a valid username!")
else if (token.isNullOrEmpty()) throw ForbiddenResponse("Please provide a valid token!")
else {
if (databaseController.isUserRegistrationValid(username, token))
ctx.render(
"register.rocker.html",
model("username", username, "token", token, "message", "", "ctx", ctx)
)
else ctx.redirect("/user/login")
}
}
/**
* Registers a new user
*/
fun register(ctx: Context) {
try {
val username = ctx.formParam("username").toString()
val token = ctx.formParam("token").toString()
val password = ctx.formParam("password").toString()
val verifyPassword = ctx.formParam("verifyPassword").toString()
if (password == verifyPassword) {
if (password.length >= 8)
if (databaseController.isUserRegistrationValid(username, token)) {
databaseController.createUser(username, password, "USER")
databaseController.removeRegistrationIndex(username)
ctx.redirect("/user/login")
} else ctx.render(
"register.rocker.html",
model("username", username, "token", token, "message", "Not authorized!", "ctx", ctx)
)
else ctx.render(
"register.rocker.html",
model(
"username", username,
"token", token,
"message", "Please make sure that your password is at least 8 digits long!",
"ctx", ctx
)
)
} else ctx.render(
"register.rocker.html",
model("username", username, "token", token, "message", "The passwords don't match!", "ctx", ctx)
)
} catch (err: Exception) {
throw BadRequestResponse()
}
}
/**
* Gets the username and verifies its identity
*/
fun getVerifiedUserId(ctx: Context): Int {
return if (databaseController.getUserIdByVerificationId(ctx.cookieStore("verification") ?: "verification")
== ctx.cookieStore("userId") ?: "userId"
) ctx.cookieStore("userId")
else -1
}
/**
* Checks whether a user has admin privileges
*/
fun isAdmin(usernameString: String): Boolean {
val userId = databaseController.getUserId(usernameString)
return if (userId > 0) databaseController.getRoles(userId).contains(Roles.ADMIN)
else false
}
}
|