mirror of
https://github.com/harness/drone.git
synced 2025-05-02 05:30:13 +00:00
122 lines
3.2 KiB
Go
122 lines
3.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 publicaccess
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/harness/gitness/app/store"
|
|
gitness_store "github.com/harness/gitness/store"
|
|
"github.com/harness/gitness/types/enum"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
var _ Service = (*service)(nil)
|
|
|
|
type service struct {
|
|
publicResourceCreationEnabled bool
|
|
publicAccessStore store.PublicAccessStore
|
|
repoStore store.RepoStore
|
|
spaceStore store.SpaceStore
|
|
}
|
|
|
|
func NewService(
|
|
publicResourceCreationEnabled bool,
|
|
publicAccessStore store.PublicAccessStore,
|
|
repoStore store.RepoStore,
|
|
spaceStore store.SpaceStore,
|
|
) Service {
|
|
return &service{
|
|
publicResourceCreationEnabled: publicResourceCreationEnabled,
|
|
|
|
publicAccessStore: publicAccessStore,
|
|
repoStore: repoStore,
|
|
spaceStore: spaceStore,
|
|
}
|
|
}
|
|
|
|
func (s *service) Get(
|
|
ctx context.Context,
|
|
resourceType enum.PublicResourceType,
|
|
resourcePath string,
|
|
) (bool, error) {
|
|
pubResID, err := s.getResourceID(ctx, resourceType, resourcePath)
|
|
if err != nil {
|
|
return false, fmt.Errorf("failed to get resource id: %w", err)
|
|
}
|
|
|
|
isPublic, err := s.publicAccessStore.Find(ctx, resourceType, pubResID)
|
|
if err != nil {
|
|
return false, fmt.Errorf("failed to get public access resource: %w", err)
|
|
}
|
|
|
|
return isPublic, nil
|
|
}
|
|
|
|
func (s *service) Set(
|
|
ctx context.Context,
|
|
resourceType enum.PublicResourceType,
|
|
resourcePath string,
|
|
enable bool,
|
|
) error {
|
|
if enable && !s.publicResourceCreationEnabled {
|
|
return ErrPublicAccessNotAllowed
|
|
}
|
|
|
|
pubResID, err := s.getResourceID(ctx, resourceType, resourcePath)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to get resource id: %w", err)
|
|
}
|
|
|
|
if !enable {
|
|
err = s.publicAccessStore.Delete(ctx, resourceType, pubResID)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to disable resource's public access: %w", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
err = s.publicAccessStore.Create(ctx, resourceType, pubResID)
|
|
if errors.Is(err, gitness_store.ErrDuplicate) {
|
|
log.Ctx(ctx).Warn().Msgf("%s %d is already set for public access", resourceType, pubResID)
|
|
return nil
|
|
}
|
|
if err != nil {
|
|
return fmt.Errorf("failed to enable resource's public access: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (s *service) Delete(
|
|
ctx context.Context,
|
|
resourceType enum.PublicResourceType,
|
|
resourcePath string,
|
|
) error {
|
|
// setting the value to false will remove it from the store.
|
|
err := s.Set(ctx, resourceType, resourcePath, false)
|
|
if errors.Is(err, gitness_store.ErrResourceNotFound) {
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
|
|
func (s *service) IsPublicAccessSupported(context.Context, string) (bool, error) {
|
|
return s.publicResourceCreationEnabled, nil
|
|
}
|