mirror of
https://github.com/gocsaf/csaf.git
synced 2025-12-22 05:40:11 +01:00
46 lines
1.1 KiB
Go
46 lines
1.1 KiB
Go
// This file is Free Software under the Apache-2.0 License
|
|
// without warranty, see README.md and LICENSES/Apache-2.0.txt for details.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
// SPDX-FileCopyrightText: 2021 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
|
|
// Software-Engineering: 2021 Intevation GmbH <https://intevation.de>
|
|
|
|
package main
|
|
|
|
import (
|
|
"net/http"
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
type pathInfoMux struct {
|
|
routes map[string]http.Handler
|
|
}
|
|
|
|
func newPathInfoMux() *pathInfoMux {
|
|
return &pathInfoMux{routes: map[string]http.Handler{}}
|
|
}
|
|
|
|
func (pim *pathInfoMux) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
|
|
pi := os.Getenv("PATH_INFO")
|
|
if h, ok := pim.routes[pi]; ok {
|
|
h.ServeHTTP(rw, req)
|
|
return
|
|
}
|
|
for k, v := range pim.routes {
|
|
if strings.HasPrefix(k, pi) {
|
|
v.ServeHTTP(rw, req)
|
|
return
|
|
}
|
|
}
|
|
http.NotFound(rw, req)
|
|
}
|
|
|
|
func (pim *pathInfoMux) handle(pattern string, handler http.Handler) {
|
|
pim.routes[pattern] = handler
|
|
}
|
|
|
|
func (pim *pathInfoMux) handleFunc(pattern string, handler func(http.ResponseWriter, *http.Request)) {
|
|
pim.handle(pattern, http.HandlerFunc(handler))
|
|
}
|