zrok/controller/util.go

133 lines
3.0 KiB
Go
Raw Normal View History

2022-07-25 19:17:52 +02:00
package controller
import (
"fmt"
"net/http"
"strings"
"unicode"
2022-07-27 20:50:46 +02:00
errors2 "github.com/go-openapi/errors"
2022-10-20 20:16:18 +02:00
"github.com/jaevor/go-nanoid"
"github.com/openziti/zrok/controller/config"
"github.com/openziti/zrok/rest_model_zrok"
"github.com/sirupsen/logrus"
2022-07-25 19:17:52 +02:00
)
type zrokAuthenticator struct {
cfg *config.Config
}
func newZrokAuthenticator(cfg *config.Config) *zrokAuthenticator {
return &zrokAuthenticator{cfg}
}
func (za *zrokAuthenticator) authenticate(token string) (*rest_model_zrok.Principal, error) {
2022-07-29 21:28:40 +02:00
tx, err := str.Begin()
if err != nil {
logrus.Errorf("error starting transaction for '%v': %v", token, err)
return nil, err
}
defer func() { _ = tx.Rollback() }()
2022-07-29 21:28:40 +02:00
if a, err := str.FindAccountWithToken(token, tx); err == nil {
principal := &rest_model_zrok.Principal{
2023-01-13 19:16:10 +01:00
ID: int64(a.Id),
Token: a.Token,
Email: a.Email,
Limitless: a.Limitless,
2022-07-28 18:12:50 +02:00
}
return principal, nil
} else {
// check for admin secret
if cfg.Admin != nil {
for _, secret := range cfg.Admin.Secrets {
if token == secret {
principal := &rest_model_zrok.Principal{
ID: int64(-1),
Admin: true,
}
return principal, nil
}
}
}
// no match
logrus.Warnf("invalid api key '%v'", token)
2022-07-27 20:50:46 +02:00
return nil, errors2.New(401, "invalid api key")
}
}
func createShareToken() (string, error) {
2022-10-20 20:16:18 +02:00
gen, err := nanoid.CustomASCII("abcdefghijklmnopqrstuvwxyz0123456789", 12)
if err != nil {
return "", err
}
return gen(), nil
2022-10-18 21:49:30 +02:00
}
func createToken() (string, error) {
gen, err := nanoid.CustomASCII("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789", 12)
2022-10-18 21:49:30 +02:00
if err != nil {
return "", err
}
return gen(), nil
}
func realRemoteAddress(req *http.Request) string {
ip := strings.Split(req.RemoteAddr, ":")[0]
fwdAddress := req.Header.Get("X-Forwarded-For")
if fwdAddress != "" {
ip = fwdAddress
ips := strings.Split(fwdAddress, ", ")
if len(ips) > 1 {
ip = ips[0]
}
}
return ip
}
2022-11-22 21:31:02 +01:00
2023-01-04 20:21:23 +01:00
func proxyUrl(shrToken, template string) string {
return strings.Replace(template, "{token}", shrToken, -1)
2022-11-22 21:31:02 +01:00
}
func validatePassword(cfg *config.Config, password string) error {
2023-05-23 19:51:33 +02:00
if cfg.Passwords.Length > len(password) {
return fmt.Errorf("password length: expected (%d), got (%d)", cfg.Passwords.Length, len(password))
}
2023-05-23 19:51:33 +02:00
if cfg.Passwords.RequireCapital {
if !hasCapital(password) {
return fmt.Errorf("password requires capital, found none")
}
}
2023-05-23 19:51:33 +02:00
if cfg.Passwords.RequireNumeric {
if !hasNumeric(password) {
return fmt.Errorf("password requires numeric, found none")
}
}
2023-05-23 19:51:33 +02:00
if cfg.Passwords.RequireSpecial {
if !strings.ContainsAny(password, cfg.Passwords.ValidSpecialCharacters) {
return fmt.Errorf("password requires special character, found none")
}
}
return nil
}
func hasCapital(check string) bool {
for _, c := range check {
if unicode.IsUpper(c) {
return true
}
}
return false
}
func hasNumeric(check string) bool {
for _, c := range check {
if unicode.IsDigit(c) {
return true
}
}
return false
}