From 6051112b2811b197a32940a2aa7ffa48b7501ea0 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 17 Apr 2019 22:50:44 +0200 Subject: Fixed sharing of files in directories Co-authored-by: LarsVomMars --- src/main/kotlin/FileController.kt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/main') diff --git a/src/main/kotlin/FileController.kt b/src/main/kotlin/FileController.kt index 29706b1..cb2b0f7 100644 --- a/src/main/kotlin/FileController.kt +++ b/src/main/kotlin/FileController.kt @@ -110,7 +110,7 @@ class FileController { * Saves multipart media data into requested directory */ fun upload(ctx: Context) { - ctx.uploadedFiles("file").forEach { (contentType, content, name, extension) -> + ctx.uploadedFiles("file").forEach { (_, content, name, _) -> val path = "${ctx.splats()[0]}/$name" FileUtil.streamToFile( content, @@ -131,11 +131,11 @@ class FileController { /** * Deletes the requested file */ - fun delete(ctx: Context) { + fun delete(ctx: Context) { // TODO: Fix deleting of directories val userId = userHandler.getVerifiedUserId(ctx) if (userId > 0) { val path = ctx.splats()[0] - File("$fileHome/$userId/$path").delete() + File("$fileHome/$userId/$path").delete() // File.deleteRecursively() kind of "crashes" server but deletes folder :'( databaseController.deleteFile(path, userId) } } @@ -143,10 +143,11 @@ class FileController { /** * Shares the requested file via the accessId */ - fun share(ctx: Context) { + fun share(ctx: Context) { // TODO: Add support for directory sharing val userId = userHandler.getVerifiedUserId(ctx) if (userId > 0) { - val accessId = databaseController.getAccessId(ctx.splats()[0], userId) + val path = if (ctx.splats()[0].startsWith("/")) ctx.splats()[0] else "/${ctx.splats()[0]}" + val accessId = databaseController.getAccessId(path, userId) ctx.result("${ctx.host()}/shared?id=$accessId") } } -- cgit v1.2.3