Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // DefaultConfig is the default CasbinAuth middleware config. DefaultConfig = Config{ Skipper: middleware.DefaultSkipper, } )
Functions ¶
func Middleware ¶
func Middleware(ce *casbin.Enforcer) echo.MiddlewareFunc
Middleware returns a CasbinAuth middleware.
For valid credentials it calls the next handler. For missing or invalid credentials, it sends "401 - Unauthorized" response.
func MiddlewareWithConfig ¶
func MiddlewareWithConfig(config Config) echo.MiddlewareFunc
MiddlewareWithConfig returns a CasbinAuth middleware with config. See `Middleware()`.
Types ¶
type AuthenticationType ¶
type AuthenticationType int
AuthenticationType ...
const ( //BasicAuth refers to basic authentication //default option BasicAuth AuthenticationType = iota //JwtAuth refers to JWT token auth in 'Authorization` header JwtAuth )
type Config ¶
type Config struct { // Skipper defines a function to skip middleware. Skipper middleware.Skipper // Enforcer CasbinAuth main rule. // Required. Enforcer *casbin.Enforcer //AuthType ... AuthType AuthenticationType }
Config defines the config for CasbinAuth middleware.
func (*Config) CheckPermission ¶
CheckPermission checks the user/method/path combination from the request. Returns true (permission granted) or false (permission forbidden)
func (*Config) GetUserName ¶
GetUserName gets the user name from the request. Currently, only HTTP basic authentication is supported
Click to show internal directories.
Click to hide internal directories.