mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-24 20:07:45 +08:00
* fix(core/gateway): option to limit directory size listing * feat(gw): HTMLDirListingLimit This is alternative take on the way we limit the HTML listing output. Instead of a hard cut-off, we list up to HTMLDirListingLimit. When a directory has more items than HTMLDirListingLimit we show additional header and footer informing user that only $HTMLDirListingLimit items are listed. This is a better UX. * fix: 0 disables Gateway.HTMLDirListingLimit * refactor: Gateway.FastDirIndexThreshold see explainer in docs/config.md * refactor: prealoc slices * docs: Gateway.FastDirIndexThreshold * refactor: core/corehttp/gateway_handler.go https://github.com/ipfs/go-ipfs/pull/8853#discussion_r851437088 * docs: apply suggestions from code review Co-authored-by: Alan Shaw <alan.shaw@protocol.ai> Co-authored-by: Marcin Rataj <lidel@lidel.org> Co-authored-by: Alan Shaw <alan.shaw@protocol.ai>
47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
package corehttp
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"html"
|
|
"net/http"
|
|
"time"
|
|
|
|
files "github.com/ipfs/go-ipfs-files"
|
|
"github.com/ipfs/go-ipfs/tracing"
|
|
ipath "github.com/ipfs/interface-go-ipfs-core/path"
|
|
"go.opentelemetry.io/otel/attribute"
|
|
"go.opentelemetry.io/otel/trace"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
func (i *gatewayHandler) serveUnixFS(ctx context.Context, w http.ResponseWriter, r *http.Request, resolvedPath ipath.Resolved, contentPath ipath.Path, begin time.Time, logger *zap.SugaredLogger) {
|
|
ctx, span := tracing.Span(ctx, "Gateway", "ServeUnixFS", trace.WithAttributes(attribute.String("path", resolvedPath.String())))
|
|
defer span.End()
|
|
|
|
// Handling UnixFS
|
|
dr, err := i.api.Unixfs().Get(ctx, resolvedPath)
|
|
if err != nil {
|
|
webError(w, "ipfs cat "+html.EscapeString(contentPath.String()), err, http.StatusNotFound)
|
|
return
|
|
}
|
|
defer dr.Close()
|
|
|
|
// Handling Unixfs file
|
|
if f, ok := dr.(files.File); ok {
|
|
logger.Debugw("serving unixfs file", "path", contentPath)
|
|
i.serveFile(ctx, w, r, resolvedPath, contentPath, f, begin)
|
|
return
|
|
}
|
|
|
|
// Handling Unixfs directory
|
|
dir, ok := dr.(files.Directory)
|
|
if !ok {
|
|
internalWebError(w, fmt.Errorf("unsupported UnixFS type"))
|
|
return
|
|
}
|
|
|
|
logger.Debugw("serving unixfs directory", "path", contentPath)
|
|
i.serveDirectory(ctx, w, r, resolvedPath, contentPath, dir, begin, logger)
|
|
}
|