From 481426f28b548ba64097895d0604585e6f722480 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 15 Apr 2019 14:46:54 +0200 Subject: Added file delete buttons --- src/main/kotlin/App.kt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/main/kotlin/App.kt') diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index fb93564..d95c887 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -101,6 +101,11 @@ fun main() { * TODO: Fix possible security issue with "../" */ post("/upload/*", ::upload, roles(Roles.USER)) + + /** + * Deletes file + */ + post("/delete/*", ::delete, roles(Roles.USER)) } } @@ -299,6 +304,16 @@ fun setup(ctx: Context) { } } +/** + * Deletes the requested file + */ +fun delete(ctx: Context) { + if (getVerifiedUserId(ctx) > 0) { + File("$fileHome/${getVerifiedUserId(ctx)}/${ctx.splats()[0]}").delete() + // TODO: delete from database + } +} + /** * Declares the roles in which a user can be in */ -- cgit v1.2.3