mirror of
https://github.com/harness/drone.git
synced 2025-07-15 08:40:06 +00:00
* fix: [CDE-413]: Adding spacePath to method. * fix: [CDE-413]: Adding method to get branch url in the scm interface and using it to set the branch url in the gitspace config api responses. Removing the SCM interface as it has only 1 impl. Minor refactoring. * fix: [CDE-413]: Adding method to get branch url in the scm interface and using it to set the branch url in the gitspace config api responses. Removing the SCM interface as it has only 1 impl. Minor refactoring.
132 lines
4.0 KiB
Go
132 lines
4.0 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 gitspace
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"strconv"
|
|
|
|
"github.com/harness/gitness/store"
|
|
"github.com/harness/gitness/store/database/dbtx"
|
|
"github.com/harness/gitness/types"
|
|
"github.com/harness/gitness/types/enum"
|
|
)
|
|
|
|
func (c *Service) Find(
|
|
ctx context.Context,
|
|
spaceRef string,
|
|
identifier string,
|
|
) (*types.GitspaceConfig, error) {
|
|
var gitspaceConfigResult *types.GitspaceConfig
|
|
txErr := c.tx.WithTx(ctx, func(ctx context.Context) error {
|
|
space, err := c.spaceStore.FindByRef(ctx, spaceRef)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to find space: %w", err)
|
|
}
|
|
gitspaceConfig, err := c.gitspaceConfigStore.FindByIdentifier(ctx, space.ID, identifier)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to find gitspace config: %w", err)
|
|
}
|
|
gitspaceConfigResult = gitspaceConfig
|
|
if err = c.setInstance(ctx, gitspaceConfigResult, space); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}, dbtx.TxDefaultReadOnly)
|
|
if txErr != nil {
|
|
return nil, txErr
|
|
}
|
|
gitspaceConfigResult.BranchURL = c.GetBranchURL(ctx, gitspaceConfigResult)
|
|
return gitspaceConfigResult, nil
|
|
}
|
|
|
|
func (c *Service) setInstance(
|
|
ctx context.Context,
|
|
gitspaceConfig *types.GitspaceConfig,
|
|
space *types.Space,
|
|
) error {
|
|
instance, err := c.gitspaceInstanceStore.FindLatestByGitspaceConfigID(ctx, gitspaceConfig.ID)
|
|
if err != nil && !errors.Is(err, store.ErrResourceNotFound) {
|
|
return err
|
|
}
|
|
if instance != nil {
|
|
gitspaceConfig.GitspaceInstance = instance
|
|
instance.SpacePath = gitspaceConfig.SpacePath
|
|
gitspaceStateType, err := enum.GetGitspaceStateFromInstance(instance.State, instance.Updated)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
gitspaceConfig.State = gitspaceStateType
|
|
} else {
|
|
gitspaceConfig.State = enum.GitspaceStateUninitialized
|
|
}
|
|
gitspaceConfig.SpacePath = space.Path
|
|
return nil
|
|
}
|
|
|
|
func (c *Service) FindByID(
|
|
ctx context.Context,
|
|
id int64,
|
|
includeDeleted bool,
|
|
) (*types.GitspaceConfig, error) {
|
|
var gitspaceConfigResult *types.GitspaceConfig
|
|
txErr := c.tx.WithTx(ctx, func(ctx context.Context) error {
|
|
gitspaceConfig, err := c.gitspaceConfigStore.Find(ctx, id, includeDeleted)
|
|
gitspaceConfigResult = gitspaceConfig
|
|
if err != nil {
|
|
return fmt.Errorf("failed to find gitspace config: %w", err)
|
|
}
|
|
space, err := c.spaceStore.Find(ctx, gitspaceConfigResult.SpaceID)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to find space: %w", err)
|
|
}
|
|
return c.setInstance(ctx, gitspaceConfigResult, space)
|
|
}, dbtx.TxDefaultReadOnly)
|
|
if txErr != nil {
|
|
return nil, txErr
|
|
}
|
|
return gitspaceConfigResult, nil
|
|
}
|
|
|
|
func (c *Service) FindAll(
|
|
ctx context.Context,
|
|
ids []int64,
|
|
) ([]*types.GitspaceConfig, error) {
|
|
var gitspaceConfigResult []*types.GitspaceConfig
|
|
txErr := c.tx.WithTx(ctx, func(ctx context.Context) error {
|
|
// TODO join and set gitspace instance, space from cache
|
|
gitspaceConfigs, err := c.gitspaceConfigStore.FindAll(ctx, ids)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to find gitspace config: %w", err)
|
|
}
|
|
for _, gitspaceConfig := range gitspaceConfigs {
|
|
// FindByRef method is backed by cache as opposed to Find()
|
|
space, err := c.spaceStore.FindByRef(ctx, strconv.FormatInt(gitspaceConfig.SpaceID, 10))
|
|
if err != nil {
|
|
return fmt.Errorf("failed to find space: %w", err)
|
|
}
|
|
gitspaceConfig.SpacePath = space.Path
|
|
gitspaceConfigResult = append(gitspaceConfigResult, gitspaceConfig)
|
|
}
|
|
return nil
|
|
}, dbtx.TxDefaultReadOnly)
|
|
if txErr != nil {
|
|
return nil, txErr
|
|
}
|
|
return gitspaceConfigResult, nil
|
|
}
|