Documentation ¶
Index ¶
- Variables
- func NewAuth(guard string) contractauth.Auth
- type Auth
- func (app *Auth) Guard(name string) contractauth.Auth
- func (app *Auth) Login(ctx http.Context, user any) (token string, err error)
- func (app *Auth) LoginUsingID(ctx http.Context, id any) (token string, err error)
- func (app *Auth) Logout(ctx http.Context) error
- func (app *Auth) Parse(ctx http.Context, token string) error
- func (app *Auth) Refresh(ctx http.Context) (token string, err error)
- func (app *Auth) User(ctx http.Context, user any) error
- type Claims
- type Guard
- type Guards
- type ServiceProvider
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrorRefreshTimeExceeded = errors.New("refresh time exceeded") ErrorTokenExpired = errors.New("token expired") ErrorNoPrimaryKeyField = errors.New("the primaryKey field was not found in the model, set primaryKey like orm.Model") ErrorEmptySecret = errors.New("secret is required") ErrorTokenDisabled = errors.New("token is disabled") ErrorParseTokenFirst = errors.New("parse token first") ErrorInvalidClaims = errors.New("invalid claims") ErrorInvalidToken = errors.New("invalid token") )
Functions ¶
func NewAuth ¶ added in v1.6.0
func NewAuth(guard string) contractauth.Auth
Types ¶
type Auth ¶ added in v1.2.0
type Auth struct {
// contains filtered or unexported fields
}
func (*Auth) LoginUsingID ¶ added in v1.6.0
type ServiceProvider ¶
type ServiceProvider struct { }
func (*ServiceProvider) Boot ¶
func (database *ServiceProvider) Boot()
func (*ServiceProvider) Register ¶
func (database *ServiceProvider) Register()
Click to show internal directories.
Click to hide internal directories.