micro/auth/jwt/jwt.go

148 lines
2.8 KiB
Go
Raw Normal View History

2020-04-29 11:21:17 +03:00
package jwt
import (
2020-04-29 15:21:51 +03:00
"sync"
2020-05-14 15:56:51 +03:00
"time"
2020-04-29 11:21:17 +03:00
"github.com/micro/go-micro/v2/auth"
2020-05-20 13:59:01 +03:00
"github.com/micro/go-micro/v2/auth/rules"
2020-04-29 11:21:17 +03:00
"github.com/micro/go-micro/v2/auth/token"
jwtToken "github.com/micro/go-micro/v2/auth/token/jwt"
)
// NewAuth returns a new instance of the Auth service
func NewAuth(opts ...auth.Option) auth.Auth {
j := new(jwt)
j.Init(opts...)
return j
}
type jwt struct {
options auth.Options
jwt token.Provider
2020-05-20 13:59:01 +03:00
rules []*auth.Rule
2020-04-29 15:21:51 +03:00
sync.Mutex
2020-04-29 11:21:17 +03:00
}
func (j *jwt) String() string {
return "jwt"
}
func (j *jwt) Init(opts ...auth.Option) {
2020-04-29 15:21:51 +03:00
j.Lock()
defer j.Unlock()
2020-04-29 11:21:17 +03:00
for _, o := range opts {
o(&j.options)
}
j.jwt = jwtToken.NewTokenProvider(
2020-04-29 11:38:39 +03:00
token.WithPrivateKey(j.options.PrivateKey),
2020-04-29 11:21:17 +03:00
token.WithPublicKey(j.options.PublicKey),
)
}
func (j *jwt) Options() auth.Options {
2020-04-29 15:21:51 +03:00
j.Lock()
defer j.Unlock()
2020-04-29 11:21:17 +03:00
return j.options
}
func (j *jwt) Generate(id string, opts ...auth.GenerateOption) (*auth.Account, error) {
2020-04-29 15:21:51 +03:00
options := auth.NewGenerateOptions(opts...)
account := &auth.Account{
ID: id,
Type: options.Type,
Scopes: options.Scopes,
Metadata: options.Metadata,
Issuer: j.Options().Issuer,
2020-04-29 15:21:51 +03:00
}
// generate a JWT secret which can be provided to the Token() method
// and exchanged for an access token
secret, err := j.jwt.Generate(account)
if err != nil {
return nil, err
}
account.Secret = secret.Token
// return the account
return account, nil
2020-04-29 11:21:17 +03:00
}
2020-05-20 13:59:01 +03:00
func (j *jwt) Grant(rule *auth.Rule) error {
2020-04-29 15:21:51 +03:00
j.Lock()
defer j.Unlock()
2020-05-20 13:59:01 +03:00
j.rules = append(j.rules, rule)
2020-04-29 15:21:51 +03:00
return nil
2020-04-29 11:21:17 +03:00
}
2020-05-20 13:59:01 +03:00
func (j *jwt) Revoke(rule *auth.Rule) error {
2020-04-29 15:21:51 +03:00
j.Lock()
defer j.Unlock()
2020-05-20 13:59:01 +03:00
rules := []*auth.Rule{}
2020-06-02 05:26:33 +03:00
for _, r := range j.rules {
2020-05-20 13:59:01 +03:00
if r.ID != rule.ID {
2020-04-29 15:21:51 +03:00
rules = append(rules, r)
}
}
j.rules = rules
return nil
2020-04-29 11:21:17 +03:00
}
2020-05-20 18:49:52 +03:00
func (j *jwt) Verify(acc *auth.Account, res *auth.Resource, opts ...auth.VerifyOption) error {
j.Lock()
2020-05-20 13:59:01 +03:00
defer j.Unlock()
2020-05-20 18:49:52 +03:00
2020-05-21 18:41:55 +03:00
var options auth.VerifyOptions
2020-05-20 18:49:52 +03:00
for _, o := range opts {
o(&options)
}
2020-05-21 18:41:55 +03:00
return rules.Verify(j.rules, acc, res)
2020-05-20 13:59:01 +03:00
}
2020-04-29 15:21:51 +03:00
2020-05-26 17:52:21 +03:00
func (j *jwt) Rules(opts ...auth.RulesOption) ([]*auth.Rule, error) {
2020-05-20 13:59:01 +03:00
j.Lock()
defer j.Unlock()
return j.rules, nil
2020-04-29 11:21:17 +03:00
}
func (j *jwt) Inspect(token string) (*auth.Account, error) {
return j.jwt.Inspect(token)
}
func (j *jwt) Token(opts ...auth.TokenOption) (*auth.Token, error) {
options := auth.NewTokenOptions(opts...)
2020-04-29 15:21:51 +03:00
secret := options.RefreshToken
if len(options.Secret) > 0 {
secret = options.Secret
}
account, err := j.jwt.Inspect(secret)
if err != nil {
return nil, err
2020-04-29 11:21:17 +03:00
}
2020-05-14 15:56:51 +03:00
access, err := j.jwt.Generate(account, token.WithExpiry(options.Expiry))
if err != nil {
return nil, err
}
refresh, err := j.jwt.Generate(account, token.WithExpiry(options.Expiry+time.Hour))
2020-04-29 11:21:17 +03:00
if err != nil {
return nil, err
}
return &auth.Token{
2020-05-14 15:56:51 +03:00
Created: access.Created,
Expiry: access.Expiry,
AccessToken: access.Token,
RefreshToken: refresh.Token,
2020-04-29 11:21:17 +03:00
}, nil
}