2015-05-12 00:43:54 +02:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/base64"
|
|
|
|
"github.com/labstack/echo"
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
|
|
|
type (
|
|
|
|
AuthFunc func(string, string) bool
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
Basic = "Basic"
|
|
|
|
)
|
|
|
|
|
2015-05-18 07:54:29 +02:00
|
|
|
// BasicAuth returns an HTTP basic authentication middleware.
|
2015-05-12 00:43:54 +02:00
|
|
|
func BasicAuth(fn AuthFunc) echo.HandlerFunc {
|
2015-05-20 23:38:51 +02:00
|
|
|
return func(c *echo.Context) error {
|
2015-05-12 00:43:54 +02:00
|
|
|
auth := c.Request.Header.Get(echo.Authorization)
|
|
|
|
i := 0
|
2015-05-21 00:59:36 +02:00
|
|
|
he := echo.NewHTTPError(http.StatusUnauthorized)
|
2015-05-12 00:43:54 +02:00
|
|
|
|
|
|
|
for ; i < len(auth); i++ {
|
|
|
|
c := auth[i]
|
|
|
|
// Ignore empty spaces
|
|
|
|
if c == ' ' {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check scheme
|
2015-05-12 15:18:49 +02:00
|
|
|
if i < len(Basic) {
|
2015-05-12 00:43:54 +02:00
|
|
|
// Ignore case
|
|
|
|
if i == 0 {
|
|
|
|
if c != Basic[i] && c != 'b' {
|
2015-05-20 23:38:51 +02:00
|
|
|
return he
|
2015-05-12 00:43:54 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if c != Basic[i] {
|
2015-05-20 23:38:51 +02:00
|
|
|
return he
|
2015-05-12 00:43:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Extract credentials
|
|
|
|
b, err := base64.StdEncoding.DecodeString(auth[i:])
|
|
|
|
if err != nil {
|
2015-05-20 23:38:51 +02:00
|
|
|
return he
|
2015-05-12 00:43:54 +02:00
|
|
|
}
|
|
|
|
cred := string(b)
|
|
|
|
for i := 0; i < len(cred); i++ {
|
|
|
|
if cred[i] == ':' {
|
|
|
|
// Verify credentials
|
|
|
|
if !fn(cred[:i], cred[i+1:]) {
|
2015-05-20 23:38:51 +02:00
|
|
|
return he
|
2015-05-12 00:43:54 +02:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-20 23:38:51 +02:00
|
|
|
return he
|
2015-05-12 00:43:54 +02:00
|
|
|
}
|
|
|
|
}
|