aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Borner2019-04-17 22:50:44 +0200
committerMarvin Borner2019-04-17 22:50:44 +0200
commit6051112b2811b197a32940a2aa7ffa48b7501ea0 (patch)
tree99b30d2d386f901154e3f9b690151365397e8670
parent8e291101329aa5bb688b23c153fbc83affebef21 (diff)
Fixed sharing of files in directories
Co-authored-by: LarsVomMars <lars@kroenner.eu>
-rw-r--r--src/main/kotlin/FileController.kt11
1 files changed, 6 insertions, 5 deletions
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")
}
}