diff options
author | Marvin Borner | 2019-04-15 18:20:13 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-15 18:20:13 +0200 |
commit | 85654224957a5d6c68e3060d706137cfd02d8a06 (patch) | |
tree | b17257ff877036acbd52279a218d97454dedcd9a | |
parent | 39bc64534b6465281185a3cdf226bb2c92e29213 (diff) |
Changed column names
-rw-r--r-- | src/main/kotlin/App.kt | 6 | ||||
-rw-r--r-- | src/main/kotlin/DatabaseController.kt | 35 |
2 files changed, 26 insertions, 15 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 { diff --git a/src/main/kotlin/DatabaseController.kt b/src/main/kotlin/DatabaseController.kt index 783b387..c26ba36 100644 --- a/src/main/kotlin/DatabaseController.kt +++ b/src/main/kotlin/DatabaseController.kt @@ -5,7 +5,6 @@ import org.jetbrains.exposed.sql.* import org.jetbrains.exposed.sql.transactions.* import org.joda.time.* import java.sql.* -import java.util.* import java.util.logging.* class DatabaseController(dbFileLocation: String = "main.db") { @@ -17,8 +16,9 @@ class DatabaseController(dbFileLocation: String = "main.db") { */ object FileLocation : Table() { val id = integer("id").autoIncrement().primaryKey() - val location = text("location").uniqueIndex() + val path = text("path").uniqueIndex() val userId = integer("userId").references(UserData.id) + val accessId = varchar("accessId", 64).uniqueIndex() // TODO: Add file sharing } /** @@ -28,7 +28,7 @@ class DatabaseController(dbFileLocation: String = "main.db") { val id = integer("id").autoIncrement().primaryKey() val username = varchar("username", 24).uniqueIndex() val password = varchar("password", 64) - val uuid = varchar("uuid", 64) + val verification = varchar("verification", 64).uniqueIndex() } /** @@ -92,7 +92,7 @@ class DatabaseController(dbFileLocation: String = "main.db") { val usersId = UserData.insert { it[username] = usernameString it[password] = BCrypt.withDefaults().hashToString(12, passwordString.toCharArray()) - it[uuid] = UUID.randomUUID().toString() + it[verification] = generateRandomString(64) }[UserData.id] UserRoles.insert { roles -> @@ -136,12 +136,12 @@ class DatabaseController(dbFileLocation: String = "main.db") { } /** - * Returns the corresponding username using [uuid] + * Returns the corresponding username using [verificationId] */ - fun getUserIdByUUID(uuid: String): Int { + fun getUserIdByVerificationId(verificationId: String): Int { return transaction { try { - UserData.select { UserData.uuid eq uuid }.map { it[UserData.id] }[0] + UserData.select { UserData.verification eq verificationId }.map { it[UserData.id] }[0] } catch (_: Exception) { -1 } @@ -149,12 +149,12 @@ class DatabaseController(dbFileLocation: String = "main.db") { } /** - * Returns the corresponding uuid using [usernameString] + * Returns the corresponding verification id using [usernameString] */ - fun getUUID(usernameString: String): String { + fun getVerificationId(usernameString: String): String { return transaction { try { - UserData.select { UserData.username eq usernameString }.map { it[UserData.uuid] }[0] + UserData.select { UserData.username eq usernameString }.map { it[UserData.verification] }[0] } catch (_: Exception) { "" } @@ -213,8 +213,9 @@ class DatabaseController(dbFileLocation: String = "main.db") { transaction { try { FileLocation.insert { - it[location] = fileLocation + it[path] = fileLocation it[userId] = usersId + it[accessId] = generateRandomString(64) } } catch (_: org.jetbrains.exposed.exceptions.ExposedSQLException) { log.warning("File already exists!") @@ -228,7 +229,7 @@ class DatabaseController(dbFileLocation: String = "main.db") { fun deleteFile(fileLocation: String, userId: Int) { transaction { try { - FileLocation.deleteWhere { (FileLocation.location eq fileLocation) and (FileLocation.userId eq userId) } + FileLocation.deleteWhere { (FileLocation.path eq fileLocation) and (FileLocation.userId eq userId) } } catch (_: org.jetbrains.exposed.exceptions.ExposedSQLException) { log.warning("File does not exist!") } @@ -311,4 +312,14 @@ class DatabaseController(dbFileLocation: String = "main.db") { log.info("Already initialized Database.") } } + + /** + * Generates a random string with [length] characters + */ + private fun generateRandomString(length: Int): String { + val allowedChars = "ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz0123456789" + return (1..length) + .map { allowedChars.random() } + .joinToString("") + } } |