mirror of https://github.com/Xhofe/alist
chore: decode filePath in header
parent
e72a557b96
commit
e5480b99be
|
@ -2,6 +2,7 @@ package handles
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"net/url"
|
||||||
stdpath "path"
|
stdpath "path"
|
||||||
"strconv"
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
|
@ -189,6 +190,11 @@ func FsRemove(c *gin.Context) {
|
||||||
|
|
||||||
func FsPut(c *gin.Context) {
|
func FsPut(c *gin.Context) {
|
||||||
path := c.GetHeader("File-Path")
|
path := c.GetHeader("File-Path")
|
||||||
|
path, err := url.PathUnescape(path)
|
||||||
|
if err != nil {
|
||||||
|
common.ErrorResp(c, err, 400)
|
||||||
|
return
|
||||||
|
}
|
||||||
asTask := c.GetHeader("As-Task") == "true"
|
asTask := c.GetHeader("As-Task") == "true"
|
||||||
user := c.MustGet("user").(*model.User)
|
user := c.MustGet("user").(*model.User)
|
||||||
path = stdpath.Join(user.BasePath, path)
|
path = stdpath.Join(user.BasePath, path)
|
||||||
|
|
Loading…
Reference in New Issue