From c6e874ed068a640ad5ca2406b9abf93123bfb92e Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 14 Apr 2019 01:02:09 +0200 Subject: Added multi user directory support --- src/main/kotlin/DatabaseController.kt | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) (limited to 'src/main/kotlin/DatabaseController.kt') diff --git a/src/main/kotlin/DatabaseController.kt b/src/main/kotlin/DatabaseController.kt index 8b82093..a89a719 100644 --- a/src/main/kotlin/DatabaseController.kt +++ b/src/main/kotlin/DatabaseController.kt @@ -123,18 +123,31 @@ class DatabaseController(dbFileLocation: String = "main.db") { } /** - * Returns the corresponding username using [uuid] + * Returns the corresponding username using [userId] */ - fun getUsernameByUUID(uuid: String): String { + fun getUsername(userId: Int): String { return transaction { try { - UserData.select { UserData.uuid eq uuid }.map { it[UserData.username] }[0] + UserData.select { UserData.id eq userId }.map { it[UserData.username] }[0] } catch (_: Exception) { "" } } } + /** + * Returns the corresponding username using [uuid] + */ + fun getUserIdByUUID(uuid: String): Int { + return transaction { + try { + UserData.select { UserData.uuid eq uuid }.map { it[UserData.id] }[0] + } catch (_: Exception) { + -1 + } + } + } + /** * Returns the corresponding uuid using [usernameString] */ @@ -156,19 +169,17 @@ class DatabaseController(dbFileLocation: String = "main.db") { try { UserData.select { UserData.username eq usernameString }.map { it[UserData.id] }[0] } catch (_: Exception) { - log.warning("User not found!") -1 } } } /** - * Returns the corresponding role using [usernameString] + * Returns the corresponding role using [userId] */ - fun getRoles(usernameString: String): List { + fun getRoles(userId: Int): List { return transaction { try { - val userId = UserData.select { UserData.username eq usernameString }.map { it[UserData.id] }[0] val userRoleId = UserRoles.select { UserRoles.userId eq userId }.map { it[UserRoles.roleId] }[0] val userRoles = mutableListOf() -- cgit v1.2.3