-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
88 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
package corehttp | ||
|
||
import ( | ||
"context" | ||
"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" | ||
) | ||
|
||
var unixEpochTime = time.Unix(0, 0) | ||
|
||
func (i *gatewayHandler) serveTAR(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", "ServeTAR", trace.WithAttributes(attribute.String("path", resolvedPath.String()))) | ||
defer span.End() | ||
|
||
ctx, cancel := context.WithCancel(ctx) | ||
defer cancel() | ||
|
||
// Set Cache-Control and read optional Last-Modified time | ||
modtime := addCacheControlHeaders(w, r, contentPath, resolvedPath.Cid()) | ||
|
||
// Finish early if Etag match | ||
if r.Header.Get("If-None-Match") == getEtag(r, resolvedPath.Cid()) { | ||
w.WriteHeader(http.StatusNotModified) | ||
return | ||
} | ||
|
||
// Set Content-Disposition | ||
var name string | ||
if urlFilename := r.URL.Query().Get("filename"); urlFilename != "" { | ||
name = urlFilename | ||
} else { | ||
name = resolvedPath.Cid().String() + ".tar" | ||
} | ||
setContentDispositionHeader(w, name, "attachment") | ||
|
||
// Get Unixfs file | ||
file, err := i.api.Unixfs().Get(ctx, resolvedPath) | ||
if err != nil { | ||
webError(w, "ipfs cat "+html.EscapeString(contentPath.String()), err, http.StatusNotFound) | ||
return | ||
} | ||
defer file.Close() | ||
|
||
// Construct the TAR writer | ||
tarw, err := files.NewTarWriter(w) | ||
if err != nil { | ||
webError(w, "could not build TarWriter", err, http.StatusInternalServerError) | ||
return | ||
} | ||
defer tarw.Close() | ||
|
||
// Sets correct Last-Modified header. This code is borrowed from the standard | ||
// library (net/http/server.go) as we cannot use serveFile without throwing the entire | ||
// TAR into the memory first. | ||
if !(modtime.IsZero() || modtime.Equal(unixEpochTime)) { | ||
w.Header().Set("Last-Modified", modtime.UTC().Format(http.TimeFormat)) | ||
} | ||
|
||
w.Header().Set("Content-Type", "application/x-tar") | ||
|
||
if err := tarw.WriteFile(file, name); err != nil { | ||
// We return error as a trailer, however it is not something browsers can access | ||
// (https://github.com/mdn/browser-compat-data/issues/14703) | ||
// Due to this, we suggest client always verify that | ||
// the received CAR stream response is matching requested DAG selector | ||
w.Header().Set("X-Stream-Error", err.Error()) | ||
return | ||
} | ||
} |