diff options
author | Marvin Borner | 2019-04-15 19:59:37 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-15 19:59:37 +0200 |
commit | 1ee7bb209d0f3a66b00d34edc57661e31a846e49 (patch) | |
tree | c627c8ec0ddf63c6e0cbd5804d8711983e9f8120 /src/main/kotlin/App.kt | |
parent | 85654224957a5d6c68e3060d706137cfd02d8a06 (diff) |
Added file preview css reset via iframe
Diffstat (limited to 'src/main/kotlin/App.kt')
-rw-r--r-- | src/main/kotlin/App.kt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index 608957d..6abaa4c 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -148,7 +148,7 @@ fun crawlFiles(ctx: Context) { files.add( arrayOf( if (File(filePath).isDirectory) "$fileName/" else fileName, - humanReadableBytes(File(filePath).length()), + humanReadableBytes(File(filePath).length()), // TODO: Fix file size for directories SimpleDateFormat("MM/dd/yyyy HH:mm:ss").format(File(filePath).lastModified()).toString(), if (File(filePath).isDirectory) "true" else isHumanReadable(filePath).toString() ) @@ -186,7 +186,7 @@ fun crawlFiles(ctx: Context) { fun upload(ctx: Context) { ctx.uploadedFiles("file").forEach { (_, content, name, _) -> val path = "${ctx.splats()[0]}/$name" - FileUtil.streamToFile(content, path) + FileUtil.streamToFile(content, "$fileHome/${getVerifiedUserId(ctx)}/$path") databaseController.addFile(path, getVerifiedUserId(ctx)) } } @@ -310,8 +310,8 @@ fun setup(ctx: Context) { fun delete(ctx: Context) { val userId = getVerifiedUserId(ctx) if (userId > 0) { - val path = "$fileHome/$userId/${ctx.splats()[0]}" - File(path).delete() + val path = ctx.splats()[0] + File("$fileHome/$userId/$path").delete() databaseController.deleteFile(path, userId) } } |