2019-06-10 01:33:19 -07:00
|
|
|
package home
|
2018-08-30 07:25:33 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
2022-11-02 06:18:02 -07:00
|
|
|
"net/netip"
|
2020-02-13 08:42:07 -07:00
|
|
|
"net/url"
|
2020-11-16 09:01:12 -07:00
|
|
|
"runtime"
|
2020-02-13 08:42:07 -07:00
|
|
|
"strings"
|
2022-10-03 08:52:20 -07:00
|
|
|
"time"
|
2020-02-13 08:42:07 -07:00
|
|
|
|
2021-12-16 10:54:59 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghhttp"
|
2021-03-22 06:46:36 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghnet"
|
2020-10-30 03:32:02 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/dnsforward"
|
2021-01-13 06:18:51 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/version"
|
2019-02-27 08:28:09 -07:00
|
|
|
"github.com/AdguardTeam/golibs/log"
|
2021-08-09 06:03:37 -07:00
|
|
|
"github.com/AdguardTeam/golibs/netutil"
|
2019-04-15 06:21:12 -07:00
|
|
|
"github.com/NYTimes/gziphandler"
|
2018-08-30 07:25:33 -07:00
|
|
|
)
|
|
|
|
|
2021-03-24 04:52:37 -07:00
|
|
|
// appendDNSAddrs is a convenient helper for appending a formatted form of DNS
|
|
|
|
// addresses to a slice of strings.
|
2022-11-02 06:18:02 -07:00
|
|
|
func appendDNSAddrs(dst []string, addrs ...netip.Addr) (res []string) {
|
2021-03-24 04:52:37 -07:00
|
|
|
for _, addr := range addrs {
|
2021-06-01 11:06:55 -07:00
|
|
|
var hostport string
|
2021-09-17 08:31:07 -07:00
|
|
|
if config.DNS.Port != defaultPortDNS {
|
2022-11-02 06:18:02 -07:00
|
|
|
hostport = netip.AddrPortFrom(addr, uint16(config.DNS.Port)).String()
|
2021-06-01 11:06:55 -07:00
|
|
|
} else {
|
|
|
|
hostport = addr.String()
|
2021-03-24 04:52:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
dst = append(dst, hostport)
|
|
|
|
}
|
|
|
|
|
|
|
|
return dst
|
|
|
|
}
|
|
|
|
|
|
|
|
// appendDNSAddrsWithIfaces formats and appends all DNS addresses from src to
|
|
|
|
// dst. It also adds the IP addresses of all network interfaces if src contains
|
2021-12-27 09:40:39 -07:00
|
|
|
// an unspecified IP address.
|
2022-11-02 06:18:02 -07:00
|
|
|
func appendDNSAddrsWithIfaces(dst []string, src []netip.Addr) (res []string, err error) {
|
2021-03-24 04:52:37 -07:00
|
|
|
ifacesAdded := false
|
|
|
|
for _, h := range src {
|
|
|
|
if !h.IsUnspecified() {
|
|
|
|
dst = appendDNSAddrs(dst, h)
|
|
|
|
|
|
|
|
continue
|
|
|
|
} else if ifacesAdded {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add addresses of all network interfaces for addresses like
|
|
|
|
// "0.0.0.0" and "::".
|
|
|
|
var ifaces []*aghnet.NetInterface
|
|
|
|
ifaces, err = aghnet.GetValidNetInterfacesForWeb()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("cannot get network interfaces: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, iface := range ifaces {
|
|
|
|
dst = appendDNSAddrs(dst, iface.Addresses...)
|
|
|
|
}
|
|
|
|
|
|
|
|
ifacesAdded = true
|
|
|
|
}
|
|
|
|
|
|
|
|
return dst, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// collectDNSAddresses returns the list of DNS addresses the server is listening
|
|
|
|
// on, including the addresses on all interfaces in cases of unspecified IPs.
|
|
|
|
func collectDNSAddresses() (addrs []string, err error) {
|
|
|
|
if hosts := config.DNS.BindHosts; len(hosts) == 0 {
|
2022-11-23 06:52:05 -07:00
|
|
|
addrs = appendDNSAddrs(addrs, netutil.IPv4Localhost())
|
2021-03-24 04:52:37 -07:00
|
|
|
} else {
|
|
|
|
addrs, err = appendDNSAddrsWithIfaces(addrs, hosts)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("collecting dns addresses: %w", err)
|
|
|
|
}
|
2019-07-02 02:19:36 -07:00
|
|
|
}
|
2021-03-24 04:52:37 -07:00
|
|
|
|
|
|
|
de := getDNSEncryption()
|
|
|
|
if de.https != "" {
|
|
|
|
addrs = append(addrs, de.https)
|
|
|
|
}
|
|
|
|
|
|
|
|
if de.tls != "" {
|
|
|
|
addrs = append(addrs, de.tls)
|
|
|
|
}
|
|
|
|
|
|
|
|
if de.quic != "" {
|
|
|
|
addrs = append(addrs, de.quic)
|
|
|
|
}
|
|
|
|
|
|
|
|
return addrs, nil
|
2019-07-02 02:19:36 -07:00
|
|
|
}
|
2019-03-19 04:14:58 -07:00
|
|
|
|
2021-01-21 09:55:41 -07:00
|
|
|
// statusResponse is a response for /control/status endpoint.
|
|
|
|
type statusResponse struct {
|
2022-10-03 08:52:20 -07:00
|
|
|
Version string `json:"version"`
|
|
|
|
Language string `json:"language"`
|
2021-01-21 09:55:41 -07:00
|
|
|
DNSAddrs []string `json:"dns_addresses"`
|
|
|
|
DNSPort int `json:"dns_port"`
|
|
|
|
HTTPPort int `json:"http_port"`
|
|
|
|
IsProtectionEnabled bool `json:"protection_enabled"`
|
|
|
|
// TODO(e.burkov): Inspect if front-end doesn't requires this field as
|
|
|
|
// openapi.yaml declares.
|
2022-10-03 08:52:20 -07:00
|
|
|
IsDHCPAvailable bool `json:"dhcp_available"`
|
|
|
|
IsRunning bool `json:"running"`
|
2021-01-21 09:55:41 -07:00
|
|
|
}
|
|
|
|
|
2021-12-16 10:54:59 -07:00
|
|
|
func handleStatus(w http.ResponseWriter, r *http.Request) {
|
2021-03-24 04:52:37 -07:00
|
|
|
dnsAddrs, err := collectDNSAddresses()
|
|
|
|
if err != nil {
|
|
|
|
// Don't add a lot of formatting, since the error is already
|
|
|
|
// wrapped by collectDNSAddresses.
|
2021-12-16 10:54:59 -07:00
|
|
|
aghhttp.Error(r, w, http.StatusInternalServerError, "%s", err)
|
2021-03-24 04:52:37 -07:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-17 06:50:02 -07:00
|
|
|
var resp statusResponse
|
|
|
|
func() {
|
|
|
|
config.RLock()
|
|
|
|
defer config.RUnlock()
|
|
|
|
|
|
|
|
resp = statusResponse{
|
2022-10-03 08:52:20 -07:00
|
|
|
Version: version.Version(),
|
2021-05-17 06:50:02 -07:00
|
|
|
DNSAddrs: dnsAddrs,
|
|
|
|
DNSPort: config.DNS.Port,
|
|
|
|
HTTPPort: config.BindPort,
|
|
|
|
Language: config.Language,
|
2022-10-03 08:52:20 -07:00
|
|
|
IsRunning: isRunning(),
|
2021-05-17 06:50:02 -07:00
|
|
|
}
|
|
|
|
}()
|
2020-11-16 09:01:12 -07:00
|
|
|
|
2021-01-21 09:55:41 -07:00
|
|
|
var c *dnsforward.FilteringConfig
|
|
|
|
if Context.dnsServer != nil {
|
|
|
|
c = &dnsforward.FilteringConfig{}
|
|
|
|
Context.dnsServer.WriteDiskConfig(c)
|
|
|
|
resp.IsProtectionEnabled = c.ProtectionEnabled
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
2020-11-16 09:01:12 -07:00
|
|
|
|
2021-01-21 09:55:41 -07:00
|
|
|
// IsDHCPAvailable field is now false by default for Windows.
|
|
|
|
if runtime.GOOS != "windows" {
|
|
|
|
resp.IsDHCPAvailable = Context.dhcpServer != nil
|
2020-11-16 09:01:12 -07:00
|
|
|
}
|
2018-08-30 07:25:33 -07:00
|
|
|
|
2022-09-29 09:10:03 -07:00
|
|
|
_ = aghhttp.WriteJSONResponse(w, r, resp)
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
|
|
|
|
2019-02-12 10:02:52 -07:00
|
|
|
// ------------------------
|
|
|
|
// registration of handlers
|
|
|
|
// ------------------------
|
2018-08-30 07:25:33 -07:00
|
|
|
func registerControlHandlers() {
|
2019-08-21 04:39:37 -07:00
|
|
|
httpRegister(http.MethodGet, "/control/status", handleStatus)
|
|
|
|
httpRegister(http.MethodPost, "/control/i18n/change_language", handleI18nChangeLanguage)
|
|
|
|
httpRegister(http.MethodGet, "/control/i18n/current_language", handleI18nCurrentLanguage)
|
2020-11-25 05:50:59 -07:00
|
|
|
Context.mux.HandleFunc("/control/version.json", postInstall(optionalAuth(handleGetVersionJSON)))
|
2019-08-21 04:39:37 -07:00
|
|
|
httpRegister(http.MethodPost, "/control/update", handleUpdate)
|
2020-10-08 01:34:36 -07:00
|
|
|
httpRegister(http.MethodGet, "/control/profile", handleGetProfile)
|
2023-01-19 05:04:46 -07:00
|
|
|
httpRegister(http.MethodPut, "/control/profile/update", handlePutProfile)
|
2019-08-21 04:39:37 -07:00
|
|
|
|
2021-06-18 08:13:36 -07:00
|
|
|
// No auth is necessary for DoH/DoT configurations
|
|
|
|
Context.mux.HandleFunc("/apple/doh.mobileconfig", postInstall(handleMobileConfigDoH))
|
|
|
|
Context.mux.HandleFunc("/apple/dot.mobileconfig", postInstall(handleMobileConfigDoT))
|
2019-08-29 02:34:07 -07:00
|
|
|
RegisterAuthHandlers()
|
2018-08-30 07:25:33 -07:00
|
|
|
}
|
2019-08-21 04:39:37 -07:00
|
|
|
|
2022-08-04 09:05:28 -07:00
|
|
|
func httpRegister(method, url string, handler http.HandlerFunc) {
|
2021-01-13 06:18:51 -07:00
|
|
|
if method == "" {
|
2020-02-27 01:48:59 -07:00
|
|
|
// "/dns-query" handler doesn't need auth, gzip and isn't restricted by 1 HTTP method
|
2020-11-25 05:50:59 -07:00
|
|
|
Context.mux.HandleFunc(url, postInstall(handler))
|
2020-02-27 01:48:59 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-11-25 05:50:59 -07:00
|
|
|
Context.mux.Handle(url, postInstallHandler(optionalAuthHandler(gziphandler.GzipHandler(ensureHandler(method, handler)))))
|
2019-08-21 04:39:37 -07:00
|
|
|
}
|
2020-02-13 08:42:07 -07:00
|
|
|
|
2022-10-03 08:52:20 -07:00
|
|
|
// ensure returns a wrapped handler that makes sure that the request has the
|
|
|
|
// correct method as well as additional method and header checks.
|
|
|
|
func ensure(
|
|
|
|
method string,
|
|
|
|
handler func(http.ResponseWriter, *http.Request),
|
|
|
|
) (wrapped func(http.ResponseWriter, *http.Request)) {
|
2020-02-13 08:42:07 -07:00
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
2022-10-03 08:52:20 -07:00
|
|
|
start := time.Now()
|
|
|
|
m, u := r.Method, r.URL
|
|
|
|
log.Debug("started %s %s %s", m, r.Host, u)
|
|
|
|
defer func() { log.Debug("finished %s %s %s in %s", m, r.Host, u, time.Since(start)) }()
|
2020-02-13 08:42:07 -07:00
|
|
|
|
2022-10-03 08:52:20 -07:00
|
|
|
if m != method {
|
|
|
|
aghhttp.Error(r, w, http.StatusMethodNotAllowed, "only method %s is allowed", method)
|
2022-09-29 09:10:03 -07:00
|
|
|
|
2020-02-13 08:42:07 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-10-03 08:52:20 -07:00
|
|
|
if modifiesData(m) {
|
|
|
|
if !ensureContentType(w, r) {
|
2022-09-29 09:10:03 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-02-13 08:42:07 -07:00
|
|
|
Context.controlLock.Lock()
|
|
|
|
defer Context.controlLock.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
handler(w, r)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-03 08:52:20 -07:00
|
|
|
// modifiesData returns true if m is an HTTP method that can modify data.
|
|
|
|
func modifiesData(m string) (ok bool) {
|
|
|
|
return m == http.MethodPost || m == http.MethodPut || m == http.MethodDelete
|
|
|
|
}
|
|
|
|
|
|
|
|
// ensureContentType makes sure that the content type of a data-modifying
|
|
|
|
// request is set correctly. If it is not, ensureContentType writes a response
|
|
|
|
// to w, and ok is false.
|
|
|
|
func ensureContentType(w http.ResponseWriter, r *http.Request) (ok bool) {
|
|
|
|
const statusUnsup = http.StatusUnsupportedMediaType
|
|
|
|
|
|
|
|
cType := r.Header.Get(aghhttp.HdrNameContentType)
|
|
|
|
if r.ContentLength == 0 {
|
|
|
|
if cType == "" {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assume that browsers always send a content type when submitting HTML
|
|
|
|
// forms and require no content type for requests with no body to make
|
|
|
|
// sure that the request comes from JavaScript.
|
|
|
|
aghhttp.Error(r, w, statusUnsup, "empty body with content-type %q not allowed", cType)
|
|
|
|
|
|
|
|
return false
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
const wantCType = aghhttp.HdrValApplicationJSON
|
|
|
|
if cType == wantCType {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
aghhttp.Error(r, w, statusUnsup, "only content-type %s is allowed", wantCType)
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-02-13 08:42:07 -07:00
|
|
|
func ensurePOST(handler func(http.ResponseWriter, *http.Request)) func(http.ResponseWriter, *http.Request) {
|
2021-01-13 07:26:57 -07:00
|
|
|
return ensure(http.MethodPost, handler)
|
2020-02-13 08:42:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func ensureGET(handler func(http.ResponseWriter, *http.Request)) func(http.ResponseWriter, *http.Request) {
|
2021-01-13 07:26:57 -07:00
|
|
|
return ensure(http.MethodGet, handler)
|
2020-02-13 08:42:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Bridge between http.Handler object and Go function
|
|
|
|
type httpHandler struct {
|
|
|
|
handler func(http.ResponseWriter, *http.Request)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *httpHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
h.handler(w, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ensureHandler(method string, handler func(http.ResponseWriter, *http.Request)) http.Handler {
|
|
|
|
h := httpHandler{}
|
|
|
|
h.handler = ensure(method, handler)
|
|
|
|
return &h
|
|
|
|
}
|
|
|
|
|
|
|
|
// preInstall lets the handler run only if firstRun is true, no redirects
|
|
|
|
func preInstall(handler func(http.ResponseWriter, *http.Request)) func(http.ResponseWriter, *http.Request) {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if !Context.firstRun {
|
|
|
|
// if it's not first run, don't let users access it (for example /install.html when configuration is done)
|
|
|
|
http.Error(w, http.StatusText(http.StatusForbidden), http.StatusForbidden)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
handler(w, r)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// preInstallStruct wraps preInstall into a struct that can be returned as an interface where necessary
|
|
|
|
type preInstallHandlerStruct struct {
|
|
|
|
handler http.Handler
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *preInstallHandlerStruct) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
preInstall(p.handler.ServeHTTP)(w, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
// preInstallHandler returns http.Handler interface for preInstall wrapper
|
|
|
|
func preInstallHandler(handler http.Handler) http.Handler {
|
|
|
|
return &preInstallHandlerStruct{handler}
|
|
|
|
}
|
|
|
|
|
2021-02-05 04:11:53 -07:00
|
|
|
// handleHTTPSRedirect redirects the request to HTTPS, if needed. If ok is
|
|
|
|
// true, the middleware must continue handling the request.
|
|
|
|
func handleHTTPSRedirect(w http.ResponseWriter, r *http.Request) (ok bool) {
|
|
|
|
web := Context.web
|
|
|
|
if web.httpsServer.server == nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2021-08-09 06:03:37 -07:00
|
|
|
host, err := netutil.SplitHost(r.Host)
|
2021-02-05 04:11:53 -07:00
|
|
|
if err != nil {
|
2021-12-16 10:54:59 -07:00
|
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "bad host: %s", err)
|
2021-02-05 04:11:53 -07:00
|
|
|
|
2021-03-22 06:46:36 -07:00
|
|
|
return false
|
2021-02-05 04:11:53 -07:00
|
|
|
}
|
|
|
|
|
2022-11-02 06:18:02 -07:00
|
|
|
var serveHTTP3 bool
|
|
|
|
var portHTTPS int
|
|
|
|
func() {
|
|
|
|
config.RLock()
|
|
|
|
defer config.RUnlock()
|
|
|
|
|
|
|
|
serveHTTP3, portHTTPS = config.DNS.ServeHTTP3, config.TLS.PortHTTPS
|
|
|
|
}()
|
|
|
|
|
|
|
|
respHdr := w.Header()
|
|
|
|
|
|
|
|
// Let the browser know that server supports HTTP/3.
|
|
|
|
//
|
|
|
|
// See https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Alt-Svc.
|
|
|
|
//
|
|
|
|
// TODO(a.garipov): Consider adding a configurable max-age. Currently, the
|
|
|
|
// default is 24 hours.
|
|
|
|
if serveHTTP3 {
|
|
|
|
altSvc := fmt.Sprintf(`h3=":%d"`, portHTTPS)
|
|
|
|
respHdr.Set(aghhttp.HdrNameAltSvc, altSvc)
|
|
|
|
}
|
|
|
|
|
2021-02-05 04:11:53 -07:00
|
|
|
if r.TLS == nil && web.forceHTTPS {
|
|
|
|
hostPort := host
|
2021-09-17 08:31:07 -07:00
|
|
|
if port := web.conf.PortHTTPS; port != defaultPortHTTPS {
|
2021-08-09 06:03:37 -07:00
|
|
|
hostPort = netutil.JoinHostPort(host, port)
|
2021-02-05 04:11:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
httpsURL := &url.URL{
|
2022-09-29 07:36:01 -07:00
|
|
|
Scheme: aghhttp.SchemeHTTPS,
|
2021-02-05 04:11:53 -07:00
|
|
|
Host: hostPort,
|
|
|
|
Path: r.URL.Path,
|
|
|
|
RawQuery: r.URL.RawQuery,
|
|
|
|
}
|
|
|
|
http.Redirect(w, r, httpsURL.String(), http.StatusTemporaryRedirect)
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allow the frontend from the HTTP origin to send requests to the HTTPS
|
|
|
|
// server. This can happen when the user has just set up HTTPS with
|
2021-02-11 08:40:14 -07:00
|
|
|
// redirects. Prevent cache-related errors by setting the Vary header.
|
|
|
|
//
|
|
|
|
// See https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin.
|
2021-02-05 04:11:53 -07:00
|
|
|
originURL := &url.URL{
|
2022-09-29 07:36:01 -07:00
|
|
|
Scheme: aghhttp.SchemeHTTP,
|
2021-02-05 04:11:53 -07:00
|
|
|
Host: r.Host,
|
|
|
|
}
|
2022-11-02 06:18:02 -07:00
|
|
|
|
|
|
|
respHdr.Set(aghhttp.HdrNameAccessControlAllowOrigin, originURL.String())
|
|
|
|
respHdr.Set(aghhttp.HdrNameVary, aghhttp.HdrNameOrigin)
|
2021-02-05 04:11:53 -07:00
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// postInstall lets the handler to run only if firstRun is false. Otherwise, it
|
|
|
|
// redirects to /install.html. It also enforces HTTPS if it is enabled and
|
|
|
|
// configured and sets appropriate access control headers.
|
2020-02-13 08:42:07 -07:00
|
|
|
func postInstall(handler func(http.ResponseWriter, *http.Request)) func(http.ResponseWriter, *http.Request) {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
2021-02-05 04:11:53 -07:00
|
|
|
path := r.URL.Path
|
|
|
|
if Context.firstRun && !strings.HasPrefix(path, "/install.") &&
|
|
|
|
!strings.HasPrefix(path, "/assets/") {
|
2020-02-18 09:27:09 -07:00
|
|
|
http.Redirect(w, r, "/install.html", http.StatusFound)
|
2021-02-05 04:11:53 -07:00
|
|
|
|
2020-02-13 08:42:07 -07:00
|
|
|
return
|
|
|
|
}
|
2020-02-18 09:27:09 -07:00
|
|
|
|
2021-02-05 04:11:53 -07:00
|
|
|
if !handleHTTPSRedirect(w, r) {
|
2020-02-13 08:42:07 -07:00
|
|
|
return
|
|
|
|
}
|
2020-02-18 09:27:09 -07:00
|
|
|
|
2020-02-13 08:42:07 -07:00
|
|
|
handler(w, r)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type postInstallHandlerStruct struct {
|
|
|
|
handler http.Handler
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *postInstallHandlerStruct) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
postInstall(p.handler.ServeHTTP)(w, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
func postInstallHandler(handler http.Handler) http.Handler {
|
|
|
|
return &postInstallHandlerStruct{handler}
|
|
|
|
}
|