2019-01-05 22:44:33 +00:00
|
|
|
package http
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2019-05-13 14:30:18 +00:00
|
|
|
"strings"
|
2019-01-05 22:44:33 +00:00
|
|
|
|
|
|
|
"github.com/filebrowser/filebrowser/v2/files"
|
|
|
|
)
|
|
|
|
|
|
|
|
var withHashFile = func(fn handleFunc) handleFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request, d *data) (int, error) {
|
|
|
|
link, err := d.store.Share.GetByHash(r.URL.Path)
|
|
|
|
if err != nil {
|
2019-05-13 14:30:18 +00:00
|
|
|
link, err = d.store.Share.GetByHash(ifPathWithName(r))
|
|
|
|
if err != nil {
|
|
|
|
return errToStatus(err), err
|
|
|
|
}
|
2019-01-05 22:44:33 +00:00
|
|
|
}
|
|
|
|
|
2019-01-08 10:29:09 +00:00
|
|
|
user, err := d.store.Users.Get(d.server.Root, link.UserID)
|
2019-01-05 22:44:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return errToStatus(err), err
|
|
|
|
}
|
|
|
|
|
|
|
|
d.user = user
|
|
|
|
|
|
|
|
file, err := files.NewFileInfo(files.FileOptions{
|
|
|
|
Fs: d.user.Fs,
|
|
|
|
Path: link.Path,
|
|
|
|
Modify: d.user.Perm.Modify,
|
|
|
|
Expand: false,
|
|
|
|
Checker: d,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return errToStatus(err), err
|
|
|
|
}
|
|
|
|
|
|
|
|
d.raw = file
|
|
|
|
return fn(w, r, d)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-05 11:15:57 +00:00
|
|
|
// ref to https://github.com/filebrowser/filebrowser/pull/727
|
|
|
|
// `/api/public/dl/MEEuZK-v/file-name.txt` for old browsers to save file with correct name
|
2019-05-13 14:30:18 +00:00
|
|
|
func ifPathWithName(r *http.Request) string {
|
|
|
|
pathElements := strings.Split(r.URL.Path, "/")
|
2019-07-05 11:15:57 +00:00
|
|
|
// prevent maliciously constructed parameters like `/api/public/dl/XZzCDnK2_not_exists_hash_name`
|
|
|
|
// len(pathElements) will be 1, and golang will panic `runtime error: index out of range`
|
|
|
|
if len(pathElements) < 2 {
|
|
|
|
return r.URL.Path
|
|
|
|
}
|
2019-05-13 14:30:18 +00:00
|
|
|
id := pathElements[len(pathElements)-2]
|
|
|
|
return id
|
|
|
|
}
|
|
|
|
|
2019-01-05 22:44:33 +00:00
|
|
|
var publicShareHandler = withHashFile(func(w http.ResponseWriter, r *http.Request, d *data) (int, error) {
|
|
|
|
return renderJSON(w, r, d.raw)
|
|
|
|
})
|
|
|
|
|
|
|
|
var publicDlHandler = withHashFile(func(w http.ResponseWriter, r *http.Request, d *data) (int, error) {
|
|
|
|
file := d.raw.(*files.FileInfo)
|
|
|
|
if !file.IsDir {
|
|
|
|
return rawFileHandler(w, r, file)
|
|
|
|
}
|
|
|
|
|
|
|
|
return rawDirHandler(w, r, d, file)
|
|
|
|
})
|