drone/registry/app/pkg/helpers.go
Pragyesh Mishra af016422cd [feat]: [AH-147]: added maven integration api handlers (#3269)
* [feat]: [AH-147]: added maven handlers, routers
* [feat]: [AH-147]: added maven handlers, routers
* [feat]: [AH-147]: added maven handlers, routers
* Merge branch 'main' of https://git0.harness.io/l7B_kbSEQD2wjrM7PShm5w/PROD/Harness_Commons/gitness into maven-integration-api-handler
* [feat]: [AH-147]: added maven handlers, routers
* [feat]: [AH-147]: added maven handlers, routers
2025-01-15 12:23:21 +00:00

74 lines
2.2 KiB
Go

// Copyright 2023 Harness, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package pkg
import (
"context"
"fmt"
apiauth "github.com/harness/gitness/app/api/auth"
"github.com/harness/gitness/app/api/request"
"github.com/harness/gitness/app/auth/authz"
corestore "github.com/harness/gitness/app/store"
"github.com/harness/gitness/registry/app/store"
"github.com/harness/gitness/types"
"github.com/harness/gitness/types/enum"
"github.com/rs/zerolog/log"
)
// GetRegistryCheckAccess fetches an active registry
// and checks if the current user has permission to access it.
func GetRegistryCheckAccess(
ctx context.Context,
registryStore store.RegistryRepository,
authorizer authz.Authorizer,
spaceStore corestore.SpaceStore,
repoName string,
parentID int64,
reqPermissions ...enum.Permission,
) error {
registry, err := registryStore.GetByParentIDAndName(ctx, parentID, repoName)
if err != nil {
return fmt.Errorf("failed to find registry: %w", err)
}
space, err := spaceStore.Find(ctx, parentID)
if err != nil {
return fmt.Errorf("failed to find parent by ref: %w", err)
}
session, _ := request.AuthSessionFrom(ctx)
var permissionChecks []types.PermissionCheck
for i := range reqPermissions {
permissionCheck := types.PermissionCheck{
Permission: reqPermissions[i],
Scope: types.Scope{SpacePath: space.Path},
Resource: types.Resource{
Type: enum.ResourceTypeRegistry,
Identifier: registry.Name,
},
}
permissionChecks = append(permissionChecks, permissionCheck)
}
if err = apiauth.CheckRegistry(ctx, authorizer, session, permissionChecks...); err != nil {
err = fmt.Errorf("registgry access check failed: %w", err)
log.Ctx(ctx).Error().Msgf("Error: %v", err)
return err
}
return nil
}