From a34a0d45da548bef8b18da04d2947fb0ff0edae0 Mon Sep 17 00:00:00 2001 From: LarsVomMars Date: Fri, 7 Jun 2019 21:53:38 +0200 Subject: Added /file/ prefix to all routes used for file like actions Signed-off-by: LarsVomMars --- src/main/kotlin/App.kt | 14 +++++++------- src/main/kotlin/DatabaseController.kt | 2 +- src/main/kotlin/FileController.kt | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) (limited to 'src/main/kotlin') diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index b6b5a14..181149d 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -12,7 +12,7 @@ import org.slf4j.* import java.net.* import kotlin.system.* -const val debug = false +const val debug = true var silent = true var port = 7000 // TODO: Add abstract and secure file home support for windows/BSD/macOS @@ -146,32 +146,32 @@ fun main(args: Array) { /** * Receives and saves multipart media data */ - post("/upload/*", fileController::upload, roles(Roles.USER)) + post("/file/upload/*", fileController::upload, roles(Roles.USER)) /** * Indexes every file of the user into the database */ - get("/index", fileController::indexAll, roles(Roles.USER)) + get("/file/index", fileController::indexAll, roles(Roles.USER)) /** * Deletes file */ - post("/delete/*", fileController::delete, roles(Roles.USER)) + post("/file/delete/*", fileController::delete, roles(Roles.USER)) /** * Shares file */ - post("/share/*", fileController::share, roles(Roles.USER)) + post("/file/share/*", fileController::share, roles(Roles.USER)) /** * Shares file in directory */ - post("/share", fileController::handleSharedFile, roles(Roles.USER)) + post("/file/share", fileController::handleSharedFile, roles(Roles.USER)) /** * Shows the shared file */ - get("/shared", fileController::renderShared, roles(Roles.GUEST, Roles.USER)) + get("/file/shared", fileController::renderShared, roles(Roles.GUEST, Roles.USER)) } } diff --git a/src/main/kotlin/DatabaseController.kt b/src/main/kotlin/DatabaseController.kt index fc03148..8ae39a3 100644 --- a/src/main/kotlin/DatabaseController.kt +++ b/src/main/kotlin/DatabaseController.kt @@ -507,7 +507,7 @@ class DatabaseController { } } -data class ReturnFileData( +data class ReturnFileData ( val userId: Int, val fileLocation: String, val isDirectory: Boolean diff --git a/src/main/kotlin/FileController.kt b/src/main/kotlin/FileController.kt index d1e1870..1b48b4c 100644 --- a/src/main/kotlin/FileController.kt +++ b/src/main/kotlin/FileController.kt @@ -176,7 +176,7 @@ class FileController { if (userId > 0) { val path = "$firstParam${if (shareType == "dir") "/" else ""}" val accessId = databaseController.getAccessId(path, userId) - ctx.result("${ctx.host()}/shared?id=$accessId") + ctx.result("${ctx.host()}/file/shared?id=$accessId") } } -- cgit v1.2.3