aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/DatabaseController.kt
diff options
context:
space:
mode:
authorMarvin Borner2019-04-04 15:26:08 +0200
committerMarvin Borner2019-04-04 15:26:08 +0200
commitb71c055a8a198a1071b5905904096630aba98361 (patch)
tree47a53b620bbba632d1c4c98b328cc786e16f0e27 /src/main/kotlin/DatabaseController.kt
parentb0a2b6c5a19e0e20d50d29f52d640b5f7d19f841 (diff)
Cleaned up code
Diffstat (limited to 'src/main/kotlin/DatabaseController.kt')
-rw-r--r--src/main/kotlin/DatabaseController.kt47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/main/kotlin/DatabaseController.kt b/src/main/kotlin/DatabaseController.kt
new file mode 100644
index 0000000..423dd05
--- /dev/null
+++ b/src/main/kotlin/DatabaseController.kt
@@ -0,0 +1,47 @@
+package space.anity
+
+import org.jetbrains.exposed.sql.*
+import org.jetbrains.exposed.sql.transactions.*
+import java.sql.*
+
+class DatabaseController(dbFileLocation: String = "main.db") {
+ val db: Database
+
+ /**
+ * Database table for the file location indexing
+ */
+ object FileLocation : Table() {
+ val id = integer("id").autoIncrement().primaryKey()
+ val location = text("location")
+ }
+
+ /**
+ * Database table to index the users with their regarding passwords
+ */
+ object UserData : Table() {
+ // only for multiple users:
+ // val id = integer("id").autoIncrement().primaryKey()
+ val username = varchar("username", 24).primaryKey() // remove .primaryKey(), if id column is used
+ val password = varchar("password", 64)
+ }
+
+ /**
+ * Database table storing general data/states
+ */
+ object General : Table() {
+ val initialUse = integer("initialUse").default(1).primaryKey() // boolean -> 0:1
+ }
+
+ init {
+ // create connection
+ this.db = Database.connect("jdbc:sqlite:$dbFileLocation", "org.sqlite.JDBC")
+ TransactionManager.manager.defaultIsolationLevel = Connection.TRANSACTION_SERIALIZABLE
+
+ // add tables
+ transaction {
+ SchemaUtils.createMissingTablesAndColumns(FileLocation, UserData, General)
+ }
+ }
+
+ // TODO add functions for database usage
+}