2015-01-30 01:52:18 -05:00
|
|
|
// Package redirect is middleware for redirecting certain requests
|
2015-01-13 14:43:45 -05:00
|
|
|
// to other locations.
|
2015-01-30 00:05:54 -05:00
|
|
|
package redirect
|
2015-01-19 01:11:21 -05:00
|
|
|
|
2015-01-30 00:05:54 -05:00
|
|
|
import (
|
2015-06-10 00:44:40 -05:00
|
|
|
"fmt"
|
|
|
|
"html"
|
2015-01-30 00:05:54 -05:00
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/mholt/caddy/middleware"
|
|
|
|
)
|
2015-01-19 01:11:21 -05:00
|
|
|
|
2015-04-11 18:06:09 -05:00
|
|
|
// Redirect is middleware to respond with HTTP redirects
|
|
|
|
type Redirect struct {
|
|
|
|
Next middleware.Handler
|
|
|
|
Rules []Rule
|
|
|
|
}
|
|
|
|
|
|
|
|
// ServeHTTP implements the middleware.Handler interface.
|
|
|
|
func (rd Redirect) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) {
|
|
|
|
for _, rule := range rd.Rules {
|
2015-07-24 11:15:48 -05:00
|
|
|
if rule.From == "/" || r.URL.Path == rule.From {
|
|
|
|
to := middleware.NewReplacer(r, nil, "").Replace(rule.To)
|
2015-06-10 00:44:40 -05:00
|
|
|
if rule.Meta {
|
2015-07-24 11:15:48 -05:00
|
|
|
safeTo := html.EscapeString(to)
|
|
|
|
fmt.Fprintf(w, metaRedir, safeTo, safeTo)
|
2015-06-10 00:44:40 -05:00
|
|
|
} else {
|
2015-07-24 11:15:48 -05:00
|
|
|
http.Redirect(w, r, to, rule.Code)
|
2015-06-10 00:44:40 -05:00
|
|
|
}
|
2015-04-11 18:06:09 -05:00
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rd.Next.ServeHTTP(w, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rule describes an HTTP redirect rule.
|
|
|
|
type Rule struct {
|
|
|
|
From, To string
|
|
|
|
Code int
|
2015-06-10 00:44:40 -05:00
|
|
|
Meta bool
|
2015-01-13 14:43:45 -05:00
|
|
|
}
|
2015-06-10 00:44:40 -05:00
|
|
|
|
2015-07-24 11:15:48 -05:00
|
|
|
// Script tag comes first since that will better imitate a redirect in the browser's
|
|
|
|
// history, but the meta tag is a fallback for most non-JS clients.
|
|
|
|
const metaRedir = `<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<script>window.location.replace("%s");</script>
|
|
|
|
<meta http-equiv="refresh" content="0; URL='%s'">
|
|
|
|
</head>
|
|
|
|
<body>Redirecting...</body>
|
2015-06-10 00:44:40 -05:00
|
|
|
</html>`
|