mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
600723c224
Former-commit-id: cc9953eaa75e9c68abc19b40cf1c4391f1c5fe24 [formerly b553106eb6a4f00474c7c79f74c02ae475e9601c] [formerly 39ca855c5e0788008f5c671164fb6e404a31aaa0 [formerly 76de8e5940
]]
Former-commit-id: 0c1a5f9cc633e40506f54d9da1420ae7c183bc88 [formerly 061569610df0c6e41830bf27516ef567c3a83c55]
Former-commit-id: b400af585254eba659078ea1f5f48609930c4ea6
125 lines
2.6 KiB
Go
125 lines
2.6 KiB
Go
package http
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"net/http"
|
|
"path/filepath"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/asdine/storm"
|
|
fm "github.com/hacdias/filemanager"
|
|
)
|
|
|
|
func shareHandler(c *fm.Context, w http.ResponseWriter, r *http.Request) (int, error) {
|
|
r.URL.Path = sanitizeURL(r.URL.Path)
|
|
|
|
switch r.Method {
|
|
case http.MethodGet:
|
|
return shareGetHandler(c, w, r)
|
|
case http.MethodDelete:
|
|
return shareDeleteHandler(c, w, r)
|
|
case http.MethodPost:
|
|
return sharePostHandler(c, w, r)
|
|
}
|
|
|
|
return http.StatusNotImplemented, nil
|
|
}
|
|
|
|
func shareGetHandler(c *fm.Context, w http.ResponseWriter, r *http.Request) (int, error) {
|
|
path := filepath.Join(string(c.User.FileSystem), r.URL.Path)
|
|
s, err := c.Store.Share.GetByPath(path)
|
|
if err == storm.ErrNotFound {
|
|
return http.StatusNotFound, nil
|
|
}
|
|
|
|
if err != nil {
|
|
return http.StatusInternalServerError, err
|
|
}
|
|
|
|
for i, link := range s {
|
|
if link.Expires && link.ExpireDate.Before(time.Now()) {
|
|
c.Store.Share.Delete(link.Hash)
|
|
s = append(s[:i], s[i+1:]...)
|
|
}
|
|
}
|
|
|
|
return renderJSON(w, s)
|
|
}
|
|
|
|
func sharePostHandler(c *fm.Context, w http.ResponseWriter, r *http.Request) (int, error) {
|
|
path := filepath.Join(string(c.User.FileSystem), r.URL.Path)
|
|
|
|
var s *fm.ShareLink
|
|
expire := r.URL.Query().Get("expires")
|
|
unit := r.URL.Query().Get("unit")
|
|
|
|
if expire == "" {
|
|
var err error
|
|
s, err = c.Store.Share.GetPermanent(path)
|
|
if err == nil {
|
|
w.Write([]byte(c.RootURL() + "/share/" + s.Hash))
|
|
return 0, nil
|
|
}
|
|
}
|
|
|
|
bytes, err := fm.GenerateRandomBytes(32)
|
|
if err != nil {
|
|
return http.StatusInternalServerError, err
|
|
}
|
|
|
|
str := hex.EncodeToString(bytes)
|
|
|
|
s = &fm.ShareLink{
|
|
Path: path,
|
|
Hash: str,
|
|
Expires: expire != "",
|
|
}
|
|
|
|
if expire != "" {
|
|
num, err := strconv.Atoi(expire)
|
|
if err != nil {
|
|
return http.StatusInternalServerError, err
|
|
}
|
|
|
|
var add time.Duration
|
|
switch unit {
|
|
case "seconds":
|
|
add = time.Second * time.Duration(num)
|
|
case "minutes":
|
|
add = time.Minute * time.Duration(num)
|
|
case "days":
|
|
add = time.Hour * 24 * time.Duration(num)
|
|
default:
|
|
add = time.Hour * time.Duration(num)
|
|
}
|
|
|
|
s.ExpireDate = time.Now().Add(add)
|
|
}
|
|
|
|
if err := c.Store.Share.Save(s); err != nil {
|
|
return http.StatusInternalServerError, err
|
|
}
|
|
|
|
return renderJSON(w, s)
|
|
}
|
|
|
|
func shareDeleteHandler(c *fm.Context, w http.ResponseWriter, r *http.Request) (int, error) {
|
|
s, err := c.Store.Share.Get(strings.TrimPrefix(r.URL.Path, "/"))
|
|
if err == storm.ErrNotFound {
|
|
return http.StatusNotFound, nil
|
|
}
|
|
|
|
if err != nil {
|
|
return http.StatusInternalServerError, err
|
|
}
|
|
|
|
err = c.Store.Share.Delete(s.Hash)
|
|
if err != nil {
|
|
return http.StatusInternalServerError, err
|
|
}
|
|
|
|
return http.StatusOK, nil
|
|
}
|