mirror of
https://github.com/antos-rde/antos-backend.git
synced 2025-04-05 16:36:46 +02:00
fix: file upload
All checks were successful
gitea-sync/antos-backend/pipeline/head This commit looks good
All checks were successful
gitea-sync/antos-backend/pipeline/head This commit looks good
This commit is contained in:
parent
0974679023
commit
beec8b9350
@ -186,8 +186,9 @@ end
|
|||||||
function VFSController:upload(...)
|
function VFSController:upload(...)
|
||||||
auth_or_die("User unauthorized. Please login")
|
auth_or_die("User unauthorized. Please login")
|
||||||
local vfs = require("vfs")
|
local vfs = require("vfs")
|
||||||
if REQUEST and REQUEST.path then
|
--LOG_DEBUG("UPLOAD COMMAND: %s", JSON.encode(REQUEST))
|
||||||
local r, m = require("vfs").upload(REQUEST.path)
|
if REQUEST and REQUEST.multipart and REQUEST.multipart.path then
|
||||||
|
local r, m = require("vfs").upload(REQUEST.multipart.path)
|
||||||
if r then
|
if r then
|
||||||
result(r)
|
result(r)
|
||||||
else
|
else
|
||||||
|
10
libs/vfs.lua
10
libs/vfs.lua
@ -149,11 +149,13 @@ vfs.upload = function(path)
|
|||||||
if (r) then
|
if (r) then
|
||||||
local uid = ulib.uid(SESSION.user)
|
local uid = ulib.uid(SESSION.user)
|
||||||
local index = 0
|
local index = 0
|
||||||
while (REQUEST["upload-" .. index .. ".tmp"] ~= nil) do
|
while (REQUEST.multipart["upload-" .. index] ~= nil) do
|
||||||
local file = m .. "/" .. REQUEST["upload-" .. index .. ".file"]
|
local file_data = JSON.decodeString(REQUEST.multipart["upload-" .. index])
|
||||||
local ret = ulib.move(REQUEST["upload-" .. index .. ".tmp"], file)
|
|
||||||
|
local file = m .. "/" .. file_data.file
|
||||||
|
local ret = ulib.move(file_data.tmp, file)
|
||||||
if not ret then
|
if not ret then
|
||||||
ret = ulib.send_file(REQUEST["upload-" .. index .. ".tmp"], file)
|
ret = ulib.send_file(file_data.tmp, file)
|
||||||
end
|
end
|
||||||
if not ret then
|
if not ret then
|
||||||
return false, "Unable to copy file"
|
return false, "Unable to copy file"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user