Documentation ¶
Overview ¶
Package auth provides an API to use GraphJin serv auth handles with your own application. Works with routers like chi and http mux. For detailed documentation visit https://graphjin.com
Example usage:
package main import ( "net/http" "path/filepath" "github.com/go-chi/chi" "github.com/dosco/graphjin/serv" "github.com/dosco/graphjin/serv/auth" ) func main() { conf, err := serv.ReadInConfig(filepath.Join("./config", serv.GetConfigName())) if err != nil { panic(err) } useAuth, err := auth.NewAuth(conf.Auth, log, auth.Options{AuthFailBlock: true}) if err != nil { panic(err) } r := chi.NewRouter() r.Use(useAuth) r.Get("/user", userInfo) http.ListenAndServe(":8080", r) }
Index ¶
- Variables
- func IsAuth(c context.Context) bool
- func NewAuth(ac Auth, log *zap.Logger, opt Options, hFn ...HandlerFunc) (func(next http.Handler) http.Handler, error)
- func UserID(c context.Context) interface{}
- func UserIDInt(c context.Context) int
- type Auth
- type HandlerFunc
- func HeaderHandler(ac Auth) (HandlerFunc, error)
- func JwtHandler(ac Auth) (HandlerFunc, error)
- func NewAuthHandlerFunc(ac Auth) (HandlerFunc, error)
- func RailsCookieHandler(ac Auth) (HandlerFunc, error)
- func RailsHandler(ac Auth) (HandlerFunc, error)
- func RailsMemcacheHandler(ac Auth) (HandlerFunc, error)
- func RailsRedisHandler(ac Auth) (HandlerFunc, error)
- func SimpleHandler(ac Auth) (HandlerFunc, error)
- type JWTConfig
- type Options
Constants ¶
This section is empty.
Variables ¶
View Source
var Err401 = errors.New("401 unauthorized")
Functions ¶
func NewAuth ¶
func NewAuth(ac Auth, log *zap.Logger, opt Options, hFn ...HandlerFunc) ( func(next http.Handler) http.Handler, error)
NewAuth returns a new auth handler. It will create a HandlerFunc based on the provided config.
Optionally an existing HandlerFunc can be provided. This is required to support auth in WS subscriptions.
Types ¶
type Auth ¶
type Auth struct { // Enable development mode use to set credentials in the // header and vars for testing Development bool // Name is a friendly name for this auth config Name string // Type can be magiclink, rails, jwt or header Type string // Cookie is the name of the cookie used Cookie string // In certain cases like Magiclink the jwt cookie // is generated by us this helps set the secure parameter // of this cookie CookieHTTPS bool `mapstructure:"cookie_https"` // In certain cases like Magiclink the jwt cookie // is generated by us this helps set the expiry parameter // of this cookie (ex. "20m", "2h") CookieExpiry string `mapstructure:"cookie_expiry"` // Rails cookie authentication Rails struct { // Rails version is needed to decode the cookie correctly. // Can be 5.2 or 6 Version string // SecretKeyBase is the cookie encryption key used in your Rails config SecretKeyBase string `mapstructure:"secret_key_base"` // URL is used for Rails cookie store based auth. // Example: redis://redis-host:6379 or memcache://memcache-host URL string // Password is set if needed by Redis or Memcache Password string // MaxIdle maximum idle time for the connection MaxIdle int `mapstructure:"max_idle"` // MaxActive maximum active time for the connection MaxActive int `mapstructure:"max_active"` // Salt value is from your Rails 5.2 and below auth config Salt string // SignSalt value is from your Rails 5.2 and below auth config SignSalt string `mapstructure:"sign_salt"` // AuthSalt value is from your Rails 5.2 and below auth config AuthSalt string `mapstructure:"auth_salt"` } // JWT authentication JWT JWTConfig // Header authentication Header struct { // Name of the HTTP header Name string // Value if set must match expected value (optional) Value string // Exists if set to true then the header must exist // this is an alternative to using value Exists bool } // Magic.link authentication MagicLink struct { Secret string } }
Auth struct contains authentication related config values used by the GraphJin service
type HandlerFunc ¶ added in v0.20.24
func HeaderHandler ¶
func HeaderHandler(ac Auth) (HandlerFunc, error)
func JwtHandler ¶
func JwtHandler(ac Auth) (HandlerFunc, error)
func NewAuthHandlerFunc ¶ added in v0.20.24
func NewAuthHandlerFunc(ac Auth) (HandlerFunc, error)
NewAuthHandlerFunc returns a HandlerFunc based on the provided config. Usually you don't need to use this function, because is called by NewAuth if no HandlerFunc is provided.
func RailsCookieHandler ¶
func RailsCookieHandler(ac Auth) (HandlerFunc, error)
func RailsHandler ¶
func RailsHandler(ac Auth) (HandlerFunc, error)
func RailsMemcacheHandler ¶
func RailsMemcacheHandler(ac Auth) (HandlerFunc, error)
func RailsRedisHandler ¶
func RailsRedisHandler(ac Auth) (HandlerFunc, error)
func SimpleHandler ¶
func SimpleHandler(ac Auth) (HandlerFunc, error)
Click to show internal directories.
Click to hide internal directories.