mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-30 10:56:28 +02:00
81 lines
1.8 KiB
Go
81 lines
1.8 KiB
Go
package config
|
|
|
|
const (
|
|
// ServiceAll represents running all services in "all-in-one" mode
|
|
ServiceAll = "all"
|
|
// ServiceProxy represents running the proxy service component
|
|
ServiceProxy = "proxy"
|
|
// ServiceAuthorize represents running the authorize service component
|
|
ServiceAuthorize = "authorize"
|
|
// ServiceAuthenticate represents running the authenticate service component
|
|
ServiceAuthenticate = "authenticate"
|
|
// ServiceCache represents running the cache service component
|
|
ServiceCache = "cache"
|
|
// StorageRedisName is the name of the redis storage backend
|
|
StorageRedisName = "redis"
|
|
// StorageInMemoryName is the name of the in-memory storage backend
|
|
StorageInMemoryName = "memory"
|
|
)
|
|
|
|
// IsValidService checks to see if a service is a valid service mode
|
|
func IsValidService(s string) bool {
|
|
switch s {
|
|
case
|
|
ServiceAll,
|
|
ServiceAuthenticate,
|
|
ServiceAuthorize,
|
|
ServiceCache,
|
|
ServiceProxy:
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// IsAuthenticate checks to see if we should be running the authenticate service
|
|
func IsAuthenticate(s string) bool {
|
|
switch s {
|
|
case
|
|
ServiceAll,
|
|
ServiceAuthenticate:
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// IsAuthorize checks to see if we should be running the authorize service
|
|
func IsAuthorize(s string) bool {
|
|
switch s {
|
|
case
|
|
ServiceAll,
|
|
ServiceAuthorize:
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// IsProxy checks to see if we should be running the proxy service
|
|
func IsProxy(s string) bool {
|
|
switch s {
|
|
case
|
|
ServiceAll,
|
|
ServiceProxy:
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// IsCache checks to see if we should be running the proxy service
|
|
func IsCache(s string) bool {
|
|
switch s {
|
|
case
|
|
ServiceAll,
|
|
ServiceCache:
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// IsAll checks to see if we should be running all services
|
|
func IsAll(s string) bool {
|
|
return s == ServiceAll
|
|
}
|