diff options
author | Marvin Borner | 2019-04-20 14:49:04 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-20 14:49:04 +0200 |
commit | 034dfe305973a0f2e7deb0c9776605664ea9b169 (patch) | |
tree | 908864d3b1a08635288a02d6f0bf51ea80ebffda /src/main/kotlin/FileController.kt | |
parent | 9fe9795c996a6e37e894f7e42ba8761320c47798 (diff) |
Fixed many minor things regarding stability
Co-authored-by: LarsVomMars <lars@kroenner.eu>
Diffstat (limited to 'src/main/kotlin/FileController.kt')
-rw-r--r-- | src/main/kotlin/FileController.kt | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/src/main/kotlin/FileController.kt b/src/main/kotlin/FileController.kt index 15bf11f..e9c861c 100644 --- a/src/main/kotlin/FileController.kt +++ b/src/main/kotlin/FileController.kt @@ -49,7 +49,7 @@ class FileController { "files", files, "path", - (if (firstParam.firstOrNull() != '/' && firstParam.isNotEmpty()) "/$firstParam" else firstParam) + (if (firstParam.firstOrNull() == '/') firstParam.drop(1) else firstParam) ) ) } @@ -106,6 +106,9 @@ class FileController { return d > 0.95 } + /** + * Converts bytes to human-readable text like 100MiB + */ private fun humanReadableBytes(bytes: Long): String { val unit = 1024 if (bytes < unit) return "$bytes B" @@ -118,8 +121,10 @@ class FileController { * Saves multipart media data into requested directory */ fun upload(ctx: Context) { + val firstParam = ctx.splat(0) ?: "" ctx.uploadedFiles("file").forEach { (_, content, name, _) -> - val path = "${ctx.splat(0)}/$name" + val path = if (firstParam.isEmpty()) name else "$firstParam/$name" + val userId = userHandler.getVerifiedUserId(ctx) var addPath = "" path.split("/").forEach { @@ -163,8 +168,7 @@ class FileController { val shareType = ctx.queryParam("type").toString() val firstParam = ctx.splat(0) ?: "" if (userId > 0) { - val path = - "${(if (firstParam.startsWith("/")) firstParam else "/$firstParam")}${if (shareType == "dir") "/" else ""}" + val path = "$firstParam${if (shareType == "dir") "/" else ""}" val accessId = databaseController.getAccessId(path, userId) ctx.result("${ctx.host()}/shared?id=$accessId") } @@ -191,7 +195,8 @@ class FileController { ) ) } else { - ctx.contentType(Files.probeContentType(Paths.get(sharedFileLocation))) + val fileProbe = Files.probeContentType(Paths.get(sharedFileLocation)) // is null if file type is not recognized + ctx.contentType(fileProbe) ctx.result(FileInputStream(File(sharedFileLocation))) } } else { @@ -221,7 +226,8 @@ class FileController { ctx.render( "files.rocker.html", TemplateUtil.model( "files", files, - "path", sharedFileData.fileLocation + "path", + (if (sharedFileData.fileLocation.firstOrNull() != '/') "/${sharedFileData.fileLocation}" else sharedFileData.fileLocation) ) ) } |