micro--go-micro
3e885308a0
Fixes #2988. Brings 'golangci-lint run ./...' to zero issues (was ~373): - errcheck: explicitly ignore fire-and-forget calls with '_ =' (and a small errcheck.exclude-functions list for response writes — json Encoder.Encode, http ResponseWriter.Write, fmt.Fprint*); genuine cases handled. - unused: remove dead code (unexported decls and dead test helpers) and the imports they orphaned. - staticcheck: ST1005 error strings, ST1016 receiver names, S1000/S1017/S1019/ S1023 simplifications, SA4004/SA4006/SA4010 dead code, SA1021 net.IP.Equal, SA6002 (store *[]byte in sync.Pool). - govet: fix a context leak (lostcancel) in internal/util/mdns and move t.Fatal/Fatalf out of goroutines (testinggoroutine) in tests. - ineffassign, unconvert: mechanical fixes. CI: the Lint workflow now runs a blocking full-tree 'golangci-lint run' on pushes and PRs (dropped only-new-issues now that the tree is clean). Verified: go build, go vet, test compilation, and unit tests for the behaviourally-touched packages all pass. Claude-Session: https://claude.ai/code/session_01CmdEY7pYmV5zzwCjNJ4ykL Co-authored-by: Claude <noreply@anthropic.com>
92 行
2.3 KiB
Go
92 行
2.3 KiB
Go
package server
|
|
|
|
import (
|
|
"crypto/rand"
|
|
"crypto/rsa"
|
|
"crypto/x509"
|
|
"encoding/pem"
|
|
"errors"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/golang-jwt/jwt/v5"
|
|
)
|
|
|
|
var (
|
|
jwtPrivateKey *rsa.PrivateKey
|
|
jwtPublicKey *rsa.PublicKey
|
|
)
|
|
|
|
// Load or generate RSA keys for JWT
|
|
func InitJWTKeys(privPath, pubPath string) error {
|
|
var err error
|
|
if _, err = os.Stat(privPath); os.IsNotExist(err) {
|
|
priv, _ := rsa.GenerateKey(rand.Reader, 2048)
|
|
privBytes := x509.MarshalPKCS1PrivateKey(priv)
|
|
privPem := pem.EncodeToMemory(&pem.Block{Type: "RSA PRIVATE KEY", Bytes: privBytes})
|
|
_ = os.WriteFile(privPath, privPem, 0600)
|
|
pubBytes, _ := x509.MarshalPKIXPublicKey(&priv.PublicKey)
|
|
pubPem := pem.EncodeToMemory(&pem.Block{Type: "PUBLIC KEY", Bytes: pubBytes})
|
|
_ = os.WriteFile(pubPath, pubPem, 0644)
|
|
}
|
|
privPem, err := os.ReadFile(privPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
block, _ := pem.Decode(privPem)
|
|
if block == nil {
|
|
return errors.New("invalid private key PEM")
|
|
}
|
|
jwtPrivateKey, err = x509.ParsePKCS1PrivateKey(block.Bytes)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
pubPem, err := os.ReadFile(pubPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
block, _ = pem.Decode(pubPem)
|
|
if block == nil {
|
|
return errors.New("invalid public key PEM")
|
|
}
|
|
pub, err := x509.ParsePKIXPublicKey(block.Bytes)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
var ok bool
|
|
jwtPublicKey, ok = pub.(*rsa.PublicKey)
|
|
if !ok {
|
|
return errors.New("not RSA public key")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Generate a JWT for a user
|
|
func GenerateJWT(userID, userType string, scopes []string, expiry time.Duration) (string, error) {
|
|
claims := jwt.MapClaims{
|
|
"sub": userID,
|
|
"type": userType,
|
|
"scopes": scopes,
|
|
"exp": time.Now().Add(expiry).Unix(),
|
|
}
|
|
token := jwt.NewWithClaims(jwt.SigningMethodRS256, claims)
|
|
return token.SignedString(jwtPrivateKey)
|
|
}
|
|
|
|
// Parse and validate a JWT, returns claims if valid
|
|
func ParseJWT(tokenStr string) (jwt.MapClaims, error) {
|
|
token, err := jwt.Parse(tokenStr, func(token *jwt.Token) (interface{}, error) {
|
|
if _, ok := token.Method.(*jwt.SigningMethodRSA); !ok {
|
|
return nil, errors.New("unexpected signing method")
|
|
}
|
|
return jwtPublicKey, nil
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if claims, ok := token.Claims.(jwt.MapClaims); ok && token.Valid {
|
|
return claims, nil
|
|
}
|
|
return nil, errors.New("invalid token")
|
|
}
|