2019-04-24 21:52:08 +00:00
|
|
|
package authorization
|
|
|
|
|
|
|
|
import (
|
2019-12-24 02:14:52 +00:00
|
|
|
"github.com/authelia/authelia/internal/configuration/schema"
|
2020-02-18 22:15:09 +00:00
|
|
|
"github.com/authelia/authelia/internal/logging"
|
2019-04-24 21:52:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Authorizer the component in charge of checking whether a user can access a given resource.
|
|
|
|
type Authorizer struct {
|
2021-03-05 04:18:31 +00:00
|
|
|
defaultPolicy Level
|
|
|
|
rules []*AccessControlRule
|
2021-06-18 01:38:01 +00:00
|
|
|
configuration *schema.Configuration
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewAuthorizer create an instance of authorizer with a given access control configuration.
|
2021-06-18 01:38:01 +00:00
|
|
|
func NewAuthorizer(configuration *schema.Configuration) *Authorizer {
|
2019-04-24 21:52:08 +00:00
|
|
|
return &Authorizer{
|
2021-06-18 01:38:01 +00:00
|
|
|
defaultPolicy: PolicyToLevel(configuration.AccessControl.DefaultPolicy),
|
|
|
|
rules: NewAccessControlRules(configuration.AccessControl),
|
|
|
|
configuration: configuration,
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-06 00:31:09 +00:00
|
|
|
// IsSecondFactorEnabled return true if at least one policy is set to second factor.
|
2021-06-18 01:38:01 +00:00
|
|
|
func (p Authorizer) IsSecondFactorEnabled() bool {
|
2021-03-05 04:18:31 +00:00
|
|
|
if p.defaultPolicy == TwoFactor {
|
2020-03-06 00:31:09 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2021-03-05 04:18:31 +00:00
|
|
|
for _, rule := range p.rules {
|
|
|
|
if rule.Policy == TwoFactor {
|
2020-03-06 00:31:09 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-18 01:38:01 +00:00
|
|
|
if p.configuration.IdentityProviders.OIDC != nil {
|
|
|
|
for _, client := range p.configuration.IdentityProviders.OIDC.Clients {
|
|
|
|
if client.Policy == twoFactor {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-06 00:31:09 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-04-24 21:52:08 +00:00
|
|
|
// GetRequiredLevel retrieve the required level of authorization to access the object.
|
2021-04-14 10:53:23 +00:00
|
|
|
func (p Authorizer) GetRequiredLevel(subject Subject, object Object) Level {
|
2021-01-16 23:23:35 +00:00
|
|
|
logger := logging.Logger()
|
2021-04-14 10:53:23 +00:00
|
|
|
|
|
|
|
logger.Debugf("Check authorization of subject %s and object %s (method %s).",
|
|
|
|
subject.String(), object.String(), object.Method)
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2021-03-05 04:18:31 +00:00
|
|
|
for _, rule := range p.rules {
|
|
|
|
if rule.IsMatch(subject, object) {
|
2021-04-14 10:53:23 +00:00
|
|
|
logger.Tracef(traceFmtACLHitMiss, "HIT", rule.Position, subject.String(), object.String(), object.Method)
|
|
|
|
|
2021-03-05 04:18:31 +00:00
|
|
|
return rule.Policy
|
|
|
|
}
|
2021-04-14 10:53:23 +00:00
|
|
|
|
|
|
|
logger.Tracef(traceFmtACLHitMiss, "MISS", rule.Position, subject.String(), object.String(), object.Method)
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2021-04-14 10:53:23 +00:00
|
|
|
logger.Debugf("No matching rule for subject %s and url %s... Applying default policy.",
|
|
|
|
subject.String(), object.String())
|
2020-02-18 22:15:09 +00:00
|
|
|
|
2021-03-05 04:18:31 +00:00
|
|
|
return p.defaultPolicy
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|