seaweedfs/weed/server/filer_server_handlers_read_dir.go

88 lines
2.2 KiB
Go
Raw Normal View History

2018-05-28 09:24:14 +00:00
package weed_server
import (
2019-03-15 22:55:34 +00:00
"context"
2018-05-28 09:24:14 +00:00
"net/http"
"strconv"
"strings"
"github.com/chrislusf/seaweedfs/weed/glog"
ui "github.com/chrislusf/seaweedfs/weed/server/filer_ui"
2019-06-23 05:53:52 +00:00
"github.com/chrislusf/seaweedfs/weed/stats"
2020-03-23 07:01:34 +00:00
"github.com/chrislusf/seaweedfs/weed/util"
2018-05-28 09:24:14 +00:00
)
// listDirectoryHandler lists directories and folers under a directory
// files are sorted by name and paginated via "lastFileName" and "limit".
// sub directories are listed on the first page, when "lastFileName"
// is empty.
func (fs *FilerServer) listDirectoryHandler(w http.ResponseWriter, r *http.Request) {
2019-06-23 05:53:52 +00:00
stats.FilerRequestCounter.WithLabelValues("list").Inc()
2018-05-28 09:24:14 +00:00
path := r.URL.Path
if strings.HasSuffix(path, "/") && len(path) > 1 {
path = path[:len(path)-1]
}
limit, limit_err := strconv.Atoi(r.FormValue("limit"))
if limit_err != nil {
limit = 100
}
lastFileName := r.FormValue("lastFileName")
namePattern := r.FormValue("namePattern")
namePatternExclude := r.FormValue("namePatternExclude")
2018-05-28 09:24:14 +00:00
entries, shouldDisplayLoadMore, err := fs.filer.ListDirectoryEntries(context.Background(), util.FullPath(path), lastFileName, false, int64(limit), "", namePattern, namePatternExclude)
2018-05-28 09:24:14 +00:00
if err != nil {
2018-06-12 06:51:36 +00:00
glog.V(0).Infof("listDirectory %s %s %d: %s", path, lastFileName, limit, err)
2018-05-28 09:24:14 +00:00
w.WriteHeader(http.StatusNotFound)
return
}
if path == "/" {
path = ""
}
if len(entries) > 0 {
lastFileName = entries[len(entries)-1].Name()
}
glog.V(4).Infof("listDirectory %s, last file %s, limit %d: %d items", path, lastFileName, limit, len(entries))
if r.Header.Get("Accept") == "application/json" {
writeJsonQuiet(w, r, http.StatusOK, struct {
Path string
Entries interface{}
Limit int
LastFileName string
ShouldDisplayLoadMore bool
}{
path,
entries,
limit,
lastFileName,
shouldDisplayLoadMore,
})
return
}
ui.StatusTpl.Execute(w, struct {
Path string
Breadcrumbs []ui.Breadcrumb
Entries interface{}
Limit int
LastFileName string
ShouldDisplayLoadMore bool
}{
path,
ui.ToBreadcrumb(path),
entries,
limit,
lastFileName,
shouldDisplayLoadMore,
})
2018-05-28 09:24:14 +00:00
}