Initial import

This commit is contained in:
Your Name 2018-09-02 21:45:30 +00:00
parent da8965872c
commit 9a612a6281
2 changed files with 61 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
httphere

60
main.go Normal file
View File

@ -0,0 +1,60 @@
package main
import (
"flag"
"fmt"
"github.com/gorilla/mux"
"gitto.work/shortcut/enhancedfileserver"
"log"
"net/http"
)
type config struct {
Listen string
Port int
Username string
Password string
}
var c config
func init() {
flag.StringVar(&c.Listen, "listen", "0.0.0.0", "IP address to listen.")
flag.IntVar(&c.Port, "port", 8000, "Listen port for interface (ports below 1024 may require super user privileges)")
flag.StringVar(&c.Username, "username", "", "Require this username tp access")
flag.StringVar(&c.Password, "password", "", "Require this password to access interface")
flag.Parse()
}
func main() {
r := mux.NewRouter()
r.Use(BasicAuth)
r.PathPrefix("/").Handler(http.StripPrefix("/", enhancedfileserver.FileServer(http.Dir("./"))))
a := fmt.Sprintf("%s:%d", c.Listen, c.Port)
log.Fatal(http.ListenAndServe(a, r))
}
func BasicAuth(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if c.Username != "" && c.Password != "" {
user, pass, ok := r.BasicAuth()
if !ok || user != c.Username || pass != c.Password {
w.Header().Set("WWW-Authenticate", `Basic realm="mydomain"`)
http.Error(w, "Unauthorized", http.StatusUnauthorized)
}
}
next.ServeHTTP(w, r)
})
}
func QueryLog(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
log.Printf("%s - %s", r.RemoteAddr, r.URL)
next.ServeHTTP(w, r)
})
}