From ff98bebada6b000b83259e5ebde48b2deb3a4afd Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 17 Apr 2019 18:28:04 +0200 Subject: Added recursive directory upload algorithm Co-authored-by: LarsVomMars --- src/main/kotlin/FileController.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/kotlin') diff --git a/src/main/kotlin/FileController.kt b/src/main/kotlin/FileController.kt index 5586212..29706b1 100644 --- a/src/main/kotlin/FileController.kt +++ b/src/main/kotlin/FileController.kt @@ -110,12 +110,12 @@ class FileController { * Saves multipart media data into requested directory */ fun upload(ctx: Context) { - ctx.uploadedFiles("file").forEach { (_, content, name, _) -> - val path = "${ctx.splats()[0]}/$name" // es gibt kein [content] bei nem dir + ctx.uploadedFiles("file").forEach { (contentType, content, name, extension) -> + val path = "${ctx.splats()[0]}/$name" FileUtil.streamToFile( content, "$fileHome/${userHandler.getVerifiedUserId(ctx)}/$path" - ) // ich würde alle files aus der directory einzeln uploaden <- deshalb das (foreach) + ) databaseController.addFile(path, userHandler.getVerifiedUserId(ctx)) } } -- cgit v1.2.3