Skip to content

Commit e2ed59f

Browse files
committed
feat: remove support for legacy ipfs-404.html
1 parent a966a74 commit e2ed59f

File tree

5 files changed

+1
-120
lines changed

5 files changed

+1
-120
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ The following emojis are used to highlight certain changes:
1919
### Changed
2020

2121
### Removed
22+
* 🛠 `boxo/gateway`: removed support for undocumented legacy `ipfs-404.html`. Use [`_redirects`](https://specs.ipfs.tech/http-gateways/web-redirects-file/) instead.
2223

2324
### Fixed
2425

gateway/gateway_test.go

-40
Original file line numberDiff line numberDiff line change
@@ -93,46 +93,6 @@ func TestGatewayGet(t *testing.T) {
9393
}
9494
}
9595

96-
func TestPretty404(t *testing.T) {
97-
ts, backend, root := newTestServerAndNode(t, nil, "pretty-404.car")
98-
t.Logf("test server url: %s", ts.URL)
99-
100-
host := "example.net"
101-
backend.namesys["/ipns/"+host] = newMockNamesysItem(path.FromCid(root), 0)
102-
103-
for _, test := range []struct {
104-
path string
105-
accept string
106-
status int
107-
text string
108-
}{
109-
{"/ipfs-404.html", "text/html", http.StatusOK, "Custom 404"},
110-
{"/nope", "text/html", http.StatusNotFound, "Custom 404"},
111-
{"/nope", "text/*", http.StatusNotFound, "Custom 404"},
112-
{"/nope", "*/*", http.StatusNotFound, "Custom 404"},
113-
{"/nope", "application/json", http.StatusNotFound, fmt.Sprintf("failed to resolve /ipns/example.net/nope: no link named \"nope\" under %s\n", root.String())},
114-
{"/deeper/nope", "text/html", http.StatusNotFound, "Deep custom 404"},
115-
{"/deeper/", "text/html", http.StatusOK, ""},
116-
{"/deeper", "text/html", http.StatusOK, ""},
117-
{"/nope/nope", "text/html", http.StatusNotFound, "Custom 404"},
118-
} {
119-
testName := fmt.Sprintf("%s %s", test.path, test.accept)
120-
t.Run(testName, func(t *testing.T) {
121-
req := mustNewRequest(t, "GET", ts.URL+test.path, nil)
122-
req.Header.Add("Accept", test.accept)
123-
req.Host = host
124-
resp := mustDo(t, req)
125-
defer resp.Body.Close()
126-
require.Equal(t, test.status, resp.StatusCode)
127-
body, err := io.ReadAll(resp.Body)
128-
require.NoError(t, err)
129-
if test.text != "" {
130-
require.Equal(t, test.text, string(body))
131-
}
132-
})
133-
}
134-
}
135-
13696
func TestHeaders(t *testing.T) {
13797
t.Parallel()
13898

gateway/handler.go

-10
Original file line numberDiff line numberDiff line change
@@ -770,16 +770,6 @@ func (i *handler) handleWebRequestErrors(w http.ResponseWriter, r *http.Request,
770770
}
771771
}
772772

773-
// if Accept is text/html, see if ipfs-404.html is present
774-
// This logic isn't documented and will likely be removed at some point.
775-
// Any 404 logic in _redirects above will have already run by this time, so it's really an extra fall back
776-
// PLEASE do not use this for new websites,
777-
// follow https://docs.ipfs.tech/how-to/websites-on-ipfs/redirects-and-custom-404s/ instead.
778-
if i.serveLegacy404IfPresent(w, r, immutableContentPath, logger) {
779-
logger.Debugw("served legacy 404")
780-
return path.ImmutablePath{}, false
781-
}
782-
783773
err = fmt.Errorf("failed to resolve %s: %w", debugStr(contentPath.String()), err)
784774
i.webError(w, r, err, http.StatusInternalServerError)
785775
return path.ImmutablePath{}, false

gateway/handler_unixfs__redirects.go

-70
Original file line numberDiff line numberDiff line change
@@ -240,73 +240,3 @@ func hasOriginIsolation(r *http.Request) bool {
240240

241241
return false
242242
}
243-
244-
// Deprecated: legacy ipfs-404.html files are superseded by _redirects file
245-
// This is provided only for backward-compatibility, until websites migrate
246-
// to 404s managed via _redirects file (https://github.com/ipfs/specs/pull/290)
247-
func (i *handler) serveLegacy404IfPresent(w http.ResponseWriter, r *http.Request, imPath path.ImmutablePath, logger *zap.SugaredLogger) bool {
248-
resolved404File, resolved404FileSize, ctype, err := i.searchUpTreeFor404(r, imPath)
249-
if err != nil {
250-
return false
251-
}
252-
defer resolved404File.Close()
253-
254-
logger.Debugw("using pretty 404 file", "path", imPath)
255-
w.Header().Set("Content-Type", ctype)
256-
w.Header().Set("Content-Length", strconv.FormatInt(resolved404FileSize, 10))
257-
w.WriteHeader(http.StatusNotFound)
258-
_, err = io.CopyN(w, resolved404File, resolved404FileSize)
259-
return err == nil
260-
}
261-
262-
func (i *handler) searchUpTreeFor404(r *http.Request, imPath path.ImmutablePath) (io.ReadCloser, int64, string, error) {
263-
filename404, ctype, err := preferred404Filename(r.Header.Values("Accept"))
264-
if err != nil {
265-
return nil, 0, "", err
266-
}
267-
268-
pathComponents := strings.Split(imPath.String(), "/")
269-
270-
for idx := len(pathComponents); idx >= 3; idx-- {
271-
pretty404 := gopath.Join(append(pathComponents[0:idx], filename404)...)
272-
parsed404Path, err := path.NewPath("/" + pretty404)
273-
if err != nil {
274-
break
275-
}
276-
imparsed404Path, err := path.NewImmutablePath(parsed404Path)
277-
if err != nil {
278-
break
279-
}
280-
281-
_, getResp, err := i.backend.Get(r.Context(), imparsed404Path)
282-
if err != nil {
283-
continue
284-
}
285-
if getResp.bytes == nil {
286-
// Close the response here if not returning bytes, otherwise it's the caller's responsibility to close the io.ReadCloser
287-
getResp.Close()
288-
return nil, 0, "", fmt.Errorf("found a pretty 404 but it was not a file")
289-
}
290-
return getResp.bytes, getResp.bytesSize, ctype, nil
291-
}
292-
293-
return nil, 0, "", fmt.Errorf("no pretty 404 in any parent folder")
294-
}
295-
296-
func preferred404Filename(acceptHeaders []string) (string, string, error) {
297-
// If we ever want to offer a 404 file for a different content type
298-
// then this function will need to parse q weightings, but for now
299-
// the presence of anything matching HTML is enough.
300-
for _, acceptHeader := range acceptHeaders {
301-
accepted := strings.Split(acceptHeader, ",")
302-
for _, spec := range accepted {
303-
contentType := strings.SplitN(spec, ";", 1)[0]
304-
switch contentType {
305-
case "*/*", "text/*", "text/html":
306-
return "ipfs-404.html", "text/html", nil
307-
}
308-
}
309-
}
310-
311-
return "", "", fmt.Errorf("there is no 404 file for the requested content types")
312-
}

gateway/testdata/pretty-404.car

-405 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)