2247d8c3a2
* + endpoint and namespace level authorizations + user namespace authorization API + k8s client setup service account with k8s roles and policies by portainer role * User authorization changes refresh token cache * rbac authorizes k8s requests * CE to EE migrator to include new authorizations * code clean up * comments * * merge in the RestrictDefaultNamespace changes * - remove unnecessary check for default namespace * + updates namespace access policies when generating token * * updates namespace access policies when querying the user namespace endpoint * + k8s rule in rbac.go for endpoint access test + missing k8s cluster rules for different roles * feat(rbac): update kube rbac * feat(rbac): use the authorization directive * feat(rbac): Update namespace access policies when user/team is deleted * refactor(app): use new angular-multi-select capabilities * feat(rbac): fix authorizations * feat(rbac): fix userAccessPolicies update bug * feat(rbac): add W applications authorizations * feat(rbac): add application details W authorizations * feat(rbac): add configurations W autohorizations * feat(rbac): add configuration details W authorizations * feat(rbac): add volumes W authorizations * feat(rbac): add volume details W authorizations * feat(rbac): add componentstatus to portainer-view role and add cluster/node authorizations * fix(rbac): disable application note for non authorized user * fix(rbac): add endpoints list and components status to portainer-basic * fix(rbac): allow user to access default namespace when restrict default namespace isn't activated * fix(rbac): remove default namespace from useraccesspolicies when restrict default namespace isn't activated * fix(rbac): change some things * fix(rbac): allow standard user to access container console * - removed unused parameter * fix(rbac): fix team authorizations Co-authored-by: Maxime Bajeux <max.bajeux@gmail.com> Co-authored-by: xAt0mZ <baron_l@epitech.eu>
104 lines
3.2 KiB
Go
104 lines
3.2 KiB
Go
package proxy
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/portainer/portainer/api/http/proxy/factory/kubernetes"
|
|
|
|
cmap "github.com/orcaman/concurrent-map"
|
|
"github.com/portainer/portainer/api/kubernetes/cli"
|
|
|
|
portainer "github.com/portainer/portainer/api"
|
|
"github.com/portainer/portainer/api/docker"
|
|
"github.com/portainer/portainer/api/http/proxy/factory"
|
|
"github.com/portainer/portainer/api/internal/authorization"
|
|
)
|
|
|
|
// TODO: contain code related to legacy extension management
|
|
|
|
type (
|
|
// Manager represents a service used to manage proxies to endpoints and extensions.
|
|
Manager struct {
|
|
proxyFactory *factory.ProxyFactory
|
|
endpointProxies cmap.ConcurrentMap
|
|
legacyExtensionProxies cmap.ConcurrentMap
|
|
}
|
|
)
|
|
|
|
// NewManager initializes a new proxy Service
|
|
func NewManager(
|
|
dataStore portainer.DataStore,
|
|
signatureService portainer.DigitalSignatureService,
|
|
tunnelService portainer.ReverseTunnelService,
|
|
clientFactory *docker.ClientFactory,
|
|
kubernetesClientFactory *cli.ClientFactory,
|
|
kubernetesTokenCacheManager *kubernetes.TokenCacheManager,
|
|
authService *authorization.Service,
|
|
) *Manager {
|
|
return &Manager{
|
|
endpointProxies: cmap.New(),
|
|
legacyExtensionProxies: cmap.New(),
|
|
proxyFactory: factory.NewProxyFactory(
|
|
dataStore,
|
|
signatureService,
|
|
tunnelService,
|
|
clientFactory,
|
|
kubernetesClientFactory,
|
|
kubernetesTokenCacheManager,
|
|
authService,
|
|
),
|
|
}
|
|
}
|
|
|
|
// CreateAndRegisterEndpointProxy creates a new HTTP reverse proxy based on endpoint properties and and adds it to the registered proxies.
|
|
// It can also be used to create a new HTTP reverse proxy and replace an already registered proxy.
|
|
func (manager *Manager) CreateAndRegisterEndpointProxy(endpoint *portainer.Endpoint) (http.Handler, error) {
|
|
proxy, err := manager.proxyFactory.NewEndpointProxy(endpoint)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
manager.endpointProxies.Set(string(endpoint.ID), proxy)
|
|
return proxy, nil
|
|
}
|
|
|
|
// GetEndpointProxy returns the proxy associated to a key
|
|
func (manager *Manager) GetEndpointProxy(endpoint *portainer.Endpoint) http.Handler {
|
|
proxy, ok := manager.endpointProxies.Get(string(endpoint.ID))
|
|
if !ok {
|
|
return nil
|
|
}
|
|
|
|
return proxy.(http.Handler)
|
|
}
|
|
|
|
// DeleteEndpointProxy deletes the proxy associated to a key
|
|
func (manager *Manager) DeleteEndpointProxy(endpoint *portainer.Endpoint) {
|
|
manager.endpointProxies.Remove(string(endpoint.ID))
|
|
}
|
|
|
|
// CreateLegacyExtensionProxy creates a new HTTP reverse proxy for a legacy extension and adds it to the registered proxies
|
|
func (manager *Manager) CreateLegacyExtensionProxy(key, extensionAPIURL string) (http.Handler, error) {
|
|
proxy, err := manager.proxyFactory.NewLegacyExtensionProxy(extensionAPIURL)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
manager.legacyExtensionProxies.Set(key, proxy)
|
|
return proxy, nil
|
|
}
|
|
|
|
// GetLegacyExtensionProxy returns a legacy extension proxy associated to a key
|
|
func (manager *Manager) GetLegacyExtensionProxy(key string) http.Handler {
|
|
proxy, ok := manager.legacyExtensionProxies.Get(key)
|
|
if !ok {
|
|
return nil
|
|
}
|
|
return proxy.(http.Handler)
|
|
}
|
|
|
|
// CreateGitlabProxy creates a new HTTP reverse proxy that can be used to send requests to the Gitlab API
|
|
func (manager *Manager) CreateGitlabProxy(url string) (http.Handler, error) {
|
|
return manager.proxyFactory.NewGitlabProxy(url)
|
|
}
|