| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package authz
- import (
- "context"
- "fmt"
- "net/http"
- "github.com/porter-dev/porter/api/server/shared/apierrors"
- "github.com/porter-dev/porter/api/server/shared/config"
- "github.com/porter-dev/porter/api/types"
- "github.com/porter-dev/porter/internal/models"
- "gorm.io/gorm"
- )
- type RegistryScopedFactory struct {
- config *config.Config
- }
- func NewRegistryScopedFactory(
- config *config.Config,
- ) *RegistryScopedFactory {
- return &RegistryScopedFactory{config}
- }
- func (p *RegistryScopedFactory) Middleware(next http.Handler) http.Handler {
- return &RegistryScopedMiddleware{next, p.config}
- }
- type RegistryScopedMiddleware struct {
- next http.Handler
- config *config.Config
- }
- func (p *RegistryScopedMiddleware) ServeHTTP(w http.ResponseWriter, r *http.Request) {
- // read the project to check scopes
- proj, _ := r.Context().Value(types.ProjectScope).(*models.Project)
- // get the registry id from the URL param context
- reqScopes, _ := r.Context().Value(types.RequestScopeCtxKey).(map[types.PermissionScope]*types.RequestAction)
- registryID := reqScopes[types.RegistryScope].Resource.UInt
- registry, err := p.config.Repo.Registry().ReadRegistry(proj.ID, registryID)
- if err != nil {
- if err == gorm.ErrRecordNotFound {
- apierrors.HandleAPIError(p.config.Logger, p.config.Alerter, w, r, apierrors.NewErrForbidden(
- fmt.Errorf("registry with id %d not found in project %d", registryID, proj.ID),
- ), true)
- } else {
- apierrors.HandleAPIError(p.config.Logger, p.config.Alerter, w, r, apierrors.NewErrInternal(err), true)
- }
- return
- }
- ctx := NewRegistryContext(r.Context(), registry)
- r = r.Clone(ctx)
- p.next.ServeHTTP(w, r)
- }
- func NewRegistryContext(ctx context.Context, registry *models.Registry) context.Context {
- return context.WithValue(ctx, types.RegistryScope, registry)
- }
|