对于那些在Go中构建RESTful API和JS前端应用程序的人,您如何管理身份验证?您在使用任何特定的库或技术吗?
我很惊讶地发现很少对此进行讨论。我谨记以下答案,并在尝试避免开发自己的实现:
每个人都分别编写自己的解决方案吗?
对于那些在Go中构建RESTful API和JS前端应用程序的人,您如何管理身份验证?您在使用任何特定的库或技术吗?
我很惊讶地发现很少对此进行讨论。我谨记以下答案,并在尝试避免开发自己的实现:
每个人都分别编写自己的解决方案吗?
Answers:
这个问题有很多见解,并且有一个“热门问题”标志,所以我知道这个主题有很多潜在的兴趣,而且很多人都在问同样的事情,而没有在Interwebs上找到答案。
大部分可用信息会产生与手形波浪状文字相同的文字,作为“阅读者的练习”。;)
但是,我终于找到了一个具体的示例,(通常)由golang-nuts邮件列表的成员提供:
https://groups.google.com/forum/#!msg/golang-nuts/GE7a_5C5kbA/fdSnH41pOPYJ
这提供了建议的架构和服务器端实现,作为自定义身份验证的基础。客户端代码仍由您决定。
(我希望帖子的作者看到这一点:谢谢!)
摘录(并重新格式化):
“我建议采用以下设计:
create table User (
ID int primary key identity(1,1),
Username text,
FullName text,
PasswordHash text,
PasswordSalt text,
IsDisabled bool
)
create table UserSession (
SessionKey text primary key,
UserID int not null, -- Could have a hard "references User"
LoginTime <time type> not null,
LastSeenTime <time type> not null
)
您将使用中间件进行身份验证。
您可以尝试使用go-http-auth进行基本身份验证和摘要身份验证,使用gomniauth进行OAuth2。
但是如何进行身份验证实际上取决于您的应用程序。
身份验证将状态/上下文引入到您的http.Handlers中,最近对此进行了一些讨论。
上下文问题的著名解决方案是此处描述的大猩猩/上下文和Google上下文。
我提出了一个更通用的解决方案,而无需在go / on / wrap中使用全局状态,该状态可以一起使用,也可以不使用其他两个状态,并且可以与上下文无关的中间件很好地集成。
wraphttpauth提供了go-http-auth与go-on / wrap的集成。
go-http-auth
或gomniauth
或两者?
老实说,您可以将许多身份验证方法和技术安装到应用程序中,这取决于应用程序的业务逻辑和要求。
例如Oauth2,LDAP,本地身份验证等。
我的答案假设您正在寻找本地身份验证,这意味着您将在应用程序中管理用户的身份。服务器必须公开一组允许用户和管理员使用的外部API。管理帐户以及他们如何向Server标识自己的身份以实现可信任的通信。您最终将创建一个保存用户信息的数据库表。出于安全目的对密码进行哈希处理的位置,请参阅如何在数据库中存储密码
让我们假设应用程序要求基于以下方法之一对用户进行身份验证:
基本身份验证(用户名,密码):
此auth方法取决于在base64中编码并在rfc7617中定义的Authorization标头中的用户凭证集,基本上是在应用程序接收到用户请求其解码授权并重新哈希密码以在DB中进行比较时,如果匹配,则哈希值经过用户验证,否则返回401状态代码给用户。
基于证书的身份验证:
此身份验证方法依赖于数字证书来标识用户,这称为x509身份验证,因此当应用程序接收到用户请求时,它将读取客户端的证书并验证其是否与提供的CA Root证书相匹配。到APP。
承载令牌:
此身份验证方法取决于短期访问令牌。承载令牌是一个神秘字符串,通常由服务器根据登录请求生成。因此,当应用收到用户请求时,它会读取授权并验证令牌以验证用户身份。
但是,我建议 身份验证库使用go-guardian,它通过一组可扩展的身份验证方法(称为策略)来实现。基本上,Go-Guardian不会挂载路由或采用任何特定的数据库架构,从而最大程度地提高了灵活性并允许开发人员做出决策。
设置后卫身份验证器很简单。
这里是上述方法的完整示例。
package main
import (
"context"
"crypto/x509"
"encoding/pem"
"fmt"
"io/ioutil"
"log"
"net/http"
"sync"
"github.com/golang/groupcache/lru"
"github.com/gorilla/mux"
"github.com/shaj13/go-guardian/auth"
"github.com/shaj13/go-guardian/auth/strategies/basic"
"github.com/shaj13/go-guardian/auth/strategies/bearer"
gx509 "github.com/shaj13/go-guardian/auth/strategies/x509"
"github.com/shaj13/go-guardian/store"
)
var authenticator auth.Authenticator
var cache store.Cache
func middleware(next http.Handler) http.HandlerFunc {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
log.Println("Executing Auth Middleware")
user, err := authenticator.Authenticate(r)
if err != nil {
code := http.StatusUnauthorized
http.Error(w, http.StatusText(code), code)
return
}
log.Printf("User %s Authenticated\n", user.UserName())
next.ServeHTTP(w, r)
})
}
func Resource(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Resource!!\n"))
}
func Login(w http.ResponseWriter, r *http.Request) {
token := "90d64460d14870c08c81352a05dedd3465940a7"
user := auth.NewDefaultUser("admin", "1", nil, nil)
cache.Store(token, user, r)
body := fmt.Sprintf("token: %s \n", token)
w.Write([]byte(body))
}
func main() {
opts := x509.VerifyOptions{}
opts.KeyUsages = []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth}
opts.Roots = x509.NewCertPool()
// Read Root Ca Certificate
opts.Roots.AddCert(readCertificate("<root-ca>"))
cache = &store.LRU{
lru.New(100),
&sync.Mutex{},
}
// create strategies
x509Strategy := gx509.New(opts)
basicStrategy := basic.New(validateUser, cache)
tokenStrategy := bearer.New(bearer.NoOpAuthenticate, cache)
authenticator = auth.New()
authenticator.EnableStrategy(gx509.StrategyKey, x509Strategy)
authenticator.EnableStrategy(basic.StrategyKey, basicStrategy)
authenticator.EnableStrategy(bearer.CachedStrategyKey, tokenStrategy)
r := mux.NewRouter()
r.HandleFunc("/resource", middleware(http.HandlerFunc(Resource)))
r.HandleFunc("/login", middleware(http.HandlerFunc(Login)))
log.Fatal(http.ListenAndServeTLS(":8080", "<server-cert>", "<server-key>", r))
}
func validateUser(ctx context.Context, r *http.Request, userName, password string) (auth.Info, error) {
// here connect to db or any other service to fetch user and validate it.
if userName == "stackoverflow" && password == "stackoverflow" {
return auth.NewDefaultUser("stackoverflow", "10", nil, nil), nil
}
return nil, fmt.Errorf("Invalid credentials")
}
func readCertificate(file string) *x509.Certificate {
data, err := ioutil.ReadFile(file)
if err != nil {
log.Fatalf("error reading %s: %v", file, err)
}
p, _ := pem.Decode(data)
cert, err := x509.ParseCertificate(p.Bytes)
if err != nil {
log.Fatalf("error parseing certificate %s: %v", file, err)
}
return cert
}
用法:
curl -k https://127.0.0.1:8080/login -u stackoverflow:stackoverflow
token: 90d64460d14870c08c81352a05dedd3465940a7
curl -k https://127.0.0.1:8080/resource -H "Authorization: Bearer 90d64460d14870c08c81352a05dedd3465940a7"
Resource!!
curl -k https://127.0.0.1:8080/resource -u stackoverflow:stackoverflow
Resource!!
curl --cert client.pem --key client-key.pem --cacert ca.pem https://127.0.0.1:8080/resource
Resource!!
您可以一次启用多种身份验证方法。您通常应至少使用两种方法
看看Labstack Echo-它将RESTful API和前端应用程序的身份验证包装到中间件中,您可以使用它来保护特定的API路由。
例如,设置基本身份验证就像为/admin
路由创建新的子路由器一样简单:
e.Group("/admin").Use(middleware.BasicAuth(func(username, password string, c echo.Context) (bool, error) {
if username == "joe" && password == "secret" {
return true, nil
}
return false, nil
}))