aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/App.kt
diff options
context:
space:
mode:
authorMarvin Borner2019-04-15 18:20:13 +0200
committerMarvin Borner2019-04-15 18:20:13 +0200
commit85654224957a5d6c68e3060d706137cfd02d8a06 (patch)
treeb17257ff877036acbd52279a218d97454dedcd9a /src/main/kotlin/App.kt
parent39bc64534b6465281185a3cdf226bb2c92e29213 (diff)
Changed column names
Diffstat (limited to 'src/main/kotlin/App.kt')
-rw-r--r--src/main/kotlin/App.kt6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt
index a96aabe..608957d 100644
--- a/src/main/kotlin/App.kt
+++ b/src/main/kotlin/App.kt
@@ -125,7 +125,7 @@ fun roleManager(handler: Handler, ctx: Context, permittedRoles: Set<Role>) {
* Gets the username and verifies its identity
*/
fun getVerifiedUserId(ctx: Context): Int {
- return if (databaseController.getUserIdByUUID(ctx.cookieStore("uuid") ?: "uuid")
+ return if (databaseController.getUserIdByVerificationId(ctx.cookieStore("verification") ?: "verification")
== ctx.cookieStore("userId") ?: "userId"
) ctx.cookieStore("userId")
else -1
@@ -185,7 +185,7 @@ fun crawlFiles(ctx: Context) {
*/
fun upload(ctx: Context) {
ctx.uploadedFiles("file").forEach { (_, content, name, _) ->
- val path = "$fileHome/${getVerifiedUserId(ctx)}/${ctx.splats()[0]}/$name"
+ val path = "${ctx.splats()[0]}/$name"
FileUtil.streamToFile(content, path)
databaseController.addFile(path, getVerifiedUserId(ctx))
}
@@ -245,7 +245,7 @@ fun login(ctx: Context) {
if (lastAttemptDifference > 4f.pow(lastHourAttempts) || lastHourAttempts == 0) {
if (databaseController.checkUser(username, password)) {
- ctx.cookieStore("uuid", databaseController.getUUID(username))
+ ctx.cookieStore("verification", databaseController.getVerificationId(username))
ctx.cookieStore("userId", databaseController.getUserId(username))
ctx.redirect("/")
} else {