mirror of
https://github.com/harness/drone.git
synced 2025-05-03 14:10:05 +00:00
113 lines
3.1 KiB
Go
113 lines
3.1 KiB
Go
// Copyright 2022 Harness Inc. All rights reserved.
|
|
// Use of this source code is governed by the Polyform Free Trial License
|
|
// that can be found in the LICENSE.md file for this repository.
|
|
|
|
package pullreq
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/harness/gitness/gitrpc"
|
|
apiauth "github.com/harness/gitness/internal/api/auth"
|
|
"github.com/harness/gitness/internal/api/usererror"
|
|
"github.com/harness/gitness/internal/auth"
|
|
"github.com/harness/gitness/internal/auth/authz"
|
|
"github.com/harness/gitness/internal/store"
|
|
"github.com/harness/gitness/types"
|
|
"github.com/harness/gitness/types/enum"
|
|
|
|
"github.com/jmoiron/sqlx"
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
type Controller struct {
|
|
db *sqlx.DB
|
|
authorizer authz.Authorizer
|
|
pullreqStore store.PullReqStore
|
|
pullreqActivityStore store.PullReqActivityStore
|
|
repoStore store.RepoStore
|
|
saStore store.ServiceAccountStore
|
|
gitRPCClient gitrpc.Interface
|
|
}
|
|
|
|
func NewController(
|
|
db *sqlx.DB,
|
|
authorizer authz.Authorizer,
|
|
pullreqStore store.PullReqStore,
|
|
pullreqActivityStore store.PullReqActivityStore,
|
|
repoStore store.RepoStore,
|
|
saStore store.ServiceAccountStore,
|
|
gitRPCClient gitrpc.Interface,
|
|
) *Controller {
|
|
return &Controller{
|
|
db: db,
|
|
authorizer: authorizer,
|
|
pullreqStore: pullreqStore,
|
|
pullreqActivityStore: pullreqActivityStore,
|
|
repoStore: repoStore,
|
|
saStore: saStore,
|
|
gitRPCClient: gitRPCClient,
|
|
}
|
|
}
|
|
|
|
func (c *Controller) verifyBranchExistence(ctx context.Context, repo *types.Repository, branch string) error {
|
|
if branch == "" {
|
|
return usererror.BadRequest("branch name can't be empty")
|
|
}
|
|
|
|
_, err := c.gitRPCClient.GetRef(ctx,
|
|
&gitrpc.GetRefParams{RepoUID: repo.GitUID, Name: branch, Type: gitrpc.RefTypeBranch})
|
|
if errors.Is(err, gitrpc.ErrNotFound) {
|
|
return usererror.BadRequest(
|
|
fmt.Sprintf("branch %s does not exist in the repository %s", branch, repo.UID))
|
|
}
|
|
if err != nil {
|
|
return fmt.Errorf(
|
|
"failed to check existence of the branch %s in the repository %s: %w",
|
|
branch, repo.UID, err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *Controller) getRepoCheckAccess(ctx context.Context,
|
|
session *auth.Session, repoRef string, reqPermission enum.Permission) (*types.Repository, error) {
|
|
if repoRef == "" {
|
|
return nil, usererror.BadRequest("A valid repository reference must be provided.")
|
|
}
|
|
|
|
repo, err := c.repoStore.FindRepoFromRef(ctx, repoRef)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err = apiauth.CheckRepo(ctx, c.authorizer, session, repo, reqPermission, false); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return repo, nil
|
|
}
|
|
|
|
func (c *Controller) writeActivity(ctx context.Context,
|
|
pr *types.PullReq, act *types.PullReqActivity) (*types.PullReq, *types.PullReqActivity) {
|
|
prUpd, err := c.pullreqStore.UpdateActivitySeq(ctx, pr)
|
|
if err != nil {
|
|
// non-critical error
|
|
log.Err(err).Msg("failed to get pull request activity number")
|
|
return pr, nil
|
|
}
|
|
|
|
act.Order = prUpd.ActivitySeq
|
|
|
|
err = c.pullreqActivityStore.Create(ctx, act)
|
|
if err != nil {
|
|
// non-critical error
|
|
log.Err(err).Msg("failed to create pull request activity")
|
|
return prUpd, nil
|
|
}
|
|
|
|
return prUpd, act
|
|
}
|