Documentation
¶
Overview ¶
Copyright 2023 Jesus Ruiz. All rights reserved. Use of this source code is governed by an Apache 2.0 license that can be found in the LICENSE file.
Index ¶
- func InspectRuntime() (baseDir string, withGoRun bool)
- func NewLogin(cfg *Config, authenticate authenticate, ...) *login
- func RequestOnBehalf(w http.ResponseWriter, r *http.Request)
- func StarDictFromFiberRequest(c *fiber.Ctx) *starlark.Dict
- func StarDictFromHttpRequest(request *http.Request) (*starlark.Dict, error)
- func Start(cfg *yaml.YAML) error
- type Client
- type Config
- type Decision
- type PDP
- type Storage
- type VerifierServer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func InspectRuntime ¶
func RequestOnBehalf ¶
func RequestOnBehalf(w http.ResponseWriter, r *http.Request)
func StarDictFromHttpRequest ¶
Types ¶
type Config ¶
type Config struct { ListenAddress string `json:"listenAddress,omitempty"` VerifierURL string `json:"verifierURL,omitempty"` AuthnPolicies string `json:"authnPolicies,omitempty"` SamedeviceWallet string `json:"samedeviceWallet,omitempty"` CredentialTemplatesDir string `json:"credentialTemplatesDir,omitempty"` RegisteredClients []Client `json:"registeredClients,omitempty"` }
func (*Config) OverrideWith ¶
func (*Config) SetDefaults ¶
func (s *Config) SetDefaults()
type Decision ¶
type Decision int
Decision can be Authenticate or Authorize
const Authenticate Decision = 1
const Authorize Decision = 2
type PDP ¶
type PDP struct {
// contains filtered or unexported fields
}
PDP implements a simple Policy Decision Point in Starlark
func (PDP) HttpHandler ¶
func (m PDP) HttpHandler(w http.ResponseWriter, r *http.Request)
func (*PDP) ParseAndCompileFile ¶
ParseAndCompileFile reads a file with Starlark code and compiles it, storing the resulting global dictionary for later usage. In particular, the compiled module should define two functions, one for athentication and the second for athorisation. ParseAndCompileFile can be called several times and will perform a new compilation every time, creating a new Thread and so the old ones will never be called again and eventually will be disposed.
func (PDP) TakeAuthnDecision ¶
func (m PDP) TakeAuthnDecision(decision Decision, r *http.Request, credential string, protectedResource string) (bool, error)
TakeAuthnDecision is called when a decision should be taken for either Athentication or Authorization. The type of decision to evaluate is passed in the Decision argument. The rest of the arguments contain the information required for the decision. They are: - the Verifiable Credential with the information from the caller needed for the decision - the protected resource that the caller identified in the Credential wants to access
type VerifierServer ¶
func New ¶
func New(cfg *yaml.YAML) *VerifierServer
func (*VerifierServer) SetupServer ¶
func (ver *VerifierServer) SetupServer(storage Storage, logger *slog.Logger, extraOptions ...op.Option) (chi.Router, error)
SetupServer creates an OIDC server with the configured verifier URL