mirror of https://github.com/harness/drone.git
682 lines
19 KiB
Go
682 lines
19 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 database
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/harness/gitness/app/store"
|
|
gitness_store "github.com/harness/gitness/store"
|
|
"github.com/harness/gitness/store/database"
|
|
"github.com/harness/gitness/store/database/dbtx"
|
|
"github.com/harness/gitness/types"
|
|
"github.com/harness/gitness/types/enum"
|
|
|
|
"github.com/Masterminds/squirrel"
|
|
"github.com/guregu/null"
|
|
"github.com/jmoiron/sqlx"
|
|
"github.com/pkg/errors"
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
var _ store.PullReqStore = (*PullReqStore)(nil)
|
|
|
|
// NewPullReqStore returns a new PullReqStore.
|
|
func NewPullReqStore(db *sqlx.DB,
|
|
pCache store.PrincipalInfoCache) *PullReqStore {
|
|
return &PullReqStore{
|
|
db: db,
|
|
pCache: pCache,
|
|
}
|
|
}
|
|
|
|
// PullReqStore implements store.PullReqStore backed by a relational database.
|
|
type PullReqStore struct {
|
|
db *sqlx.DB
|
|
pCache store.PrincipalInfoCache
|
|
}
|
|
|
|
// pullReq is used to fetch pull request data from the database.
|
|
// The object should be later re-packed into a different struct to return it as an API response.
|
|
type pullReq struct {
|
|
ID int64 `db:"pullreq_id"`
|
|
Version int64 `db:"pullreq_version"`
|
|
Number int64 `db:"pullreq_number"`
|
|
|
|
CreatedBy int64 `db:"pullreq_created_by"`
|
|
Created int64 `db:"pullreq_created"`
|
|
Updated int64 `db:"pullreq_updated"`
|
|
Edited int64 `db:"pullreq_edited"`
|
|
Closed null.Int `db:"pullreq_closed"`
|
|
|
|
State enum.PullReqState `db:"pullreq_state"`
|
|
IsDraft bool `db:"pullreq_is_draft"`
|
|
|
|
CommentCount int `db:"pullreq_comment_count"`
|
|
UnresolvedCount int `db:"pullreq_unresolved_count"`
|
|
|
|
Title string `db:"pullreq_title"`
|
|
Description string `db:"pullreq_description"`
|
|
|
|
SourceRepoID int64 `db:"pullreq_source_repo_id"`
|
|
SourceBranch string `db:"pullreq_source_branch"`
|
|
SourceSHA string `db:"pullreq_source_sha"`
|
|
TargetRepoID int64 `db:"pullreq_target_repo_id"`
|
|
TargetBranch string `db:"pullreq_target_branch"`
|
|
|
|
ActivitySeq int64 `db:"pullreq_activity_seq"`
|
|
|
|
MergedBy null.Int `db:"pullreq_merged_by"`
|
|
Merged null.Int `db:"pullreq_merged"`
|
|
MergeMethod null.String `db:"pullreq_merge_method"`
|
|
|
|
MergeCheckStatus enum.MergeCheckStatus `db:"pullreq_merge_check_status"`
|
|
MergeTargetSHA null.String `db:"pullreq_merge_target_sha"`
|
|
MergeBaseSHA string `db:"pullreq_merge_base_sha"`
|
|
MergeSHA null.String `db:"pullreq_merge_sha"`
|
|
MergeConflicts null.String `db:"pullreq_merge_conflicts"`
|
|
|
|
CommitCount null.Int `db:"pullreq_commit_count"`
|
|
FileCount null.Int `db:"pullreq_file_count"`
|
|
}
|
|
|
|
const (
|
|
pullReqColumns = `
|
|
pullreq_id
|
|
,pullreq_version
|
|
,pullreq_number
|
|
,pullreq_created_by
|
|
,pullreq_created
|
|
,pullreq_updated
|
|
,pullreq_edited
|
|
,pullreq_closed
|
|
,pullreq_state
|
|
,pullreq_is_draft
|
|
,pullreq_comment_count
|
|
,pullreq_unresolved_count
|
|
,pullreq_title
|
|
,pullreq_description
|
|
,pullreq_source_repo_id
|
|
,pullreq_source_branch
|
|
,pullreq_source_sha
|
|
,pullreq_target_repo_id
|
|
,pullreq_target_branch
|
|
,pullreq_activity_seq
|
|
,pullreq_merged_by
|
|
,pullreq_merged
|
|
,pullreq_merge_method
|
|
,pullreq_merge_check_status
|
|
,pullreq_merge_target_sha
|
|
,pullreq_merge_base_sha
|
|
,pullreq_merge_sha
|
|
,pullreq_merge_conflicts
|
|
,pullreq_commit_count
|
|
,pullreq_file_count`
|
|
|
|
pullReqSelectBase = `
|
|
SELECT` + pullReqColumns + `
|
|
FROM pullreqs`
|
|
)
|
|
|
|
// Find finds the pull request by id.
|
|
func (s *PullReqStore) Find(ctx context.Context, id int64) (*types.PullReq, error) {
|
|
const sqlQuery = pullReqSelectBase + `
|
|
WHERE pullreq_id = $1`
|
|
|
|
db := dbtx.GetAccessor(ctx, s.db)
|
|
|
|
dst := &pullReq{}
|
|
if err := db.GetContext(ctx, dst, sqlQuery, id); err != nil {
|
|
return nil, database.ProcessSQLErrorf(ctx, err, "Failed to find pull request")
|
|
}
|
|
|
|
return s.mapPullReq(ctx, dst), nil
|
|
}
|
|
|
|
func (s *PullReqStore) findByNumberInternal(
|
|
ctx context.Context,
|
|
repoID,
|
|
number int64,
|
|
lock bool,
|
|
) (*types.PullReq, error) {
|
|
sqlQuery := pullReqSelectBase + `
|
|
WHERE pullreq_target_repo_id = $1 AND pullreq_number = $2`
|
|
|
|
if lock && !strings.HasPrefix(s.db.DriverName(), "sqlite") {
|
|
sqlQuery += "\n" + database.SQLForUpdate
|
|
}
|
|
|
|
db := dbtx.GetAccessor(ctx, s.db)
|
|
|
|
dst := &pullReq{}
|
|
if err := db.GetContext(ctx, dst, sqlQuery, repoID, number); err != nil {
|
|
return nil, database.ProcessSQLErrorf(ctx, err, "Failed to find pull request by number")
|
|
}
|
|
|
|
return s.mapPullReq(ctx, dst), nil
|
|
}
|
|
|
|
// FindByNumberWithLock finds the pull request by repo ID and pull request number
|
|
// and locks the pull request for the duration of the transaction.
|
|
func (s *PullReqStore) FindByNumberWithLock(
|
|
ctx context.Context,
|
|
repoID,
|
|
number int64,
|
|
) (*types.PullReq, error) {
|
|
return s.findByNumberInternal(ctx, repoID, number, true)
|
|
}
|
|
|
|
// FindByNumber finds the pull request by repo ID and pull request number.
|
|
func (s *PullReqStore) FindByNumber(ctx context.Context, repoID, number int64) (*types.PullReq, error) {
|
|
return s.findByNumberInternal(ctx, repoID, number, false)
|
|
}
|
|
|
|
// Create creates a new pull request.
|
|
func (s *PullReqStore) Create(ctx context.Context, pr *types.PullReq) error {
|
|
const sqlQuery = `
|
|
INSERT INTO pullreqs (
|
|
pullreq_version
|
|
,pullreq_number
|
|
,pullreq_created_by
|
|
,pullreq_created
|
|
,pullreq_updated
|
|
,pullreq_edited
|
|
,pullreq_closed
|
|
,pullreq_state
|
|
,pullreq_is_draft
|
|
,pullreq_comment_count
|
|
,pullreq_unresolved_count
|
|
,pullreq_title
|
|
,pullreq_description
|
|
,pullreq_source_repo_id
|
|
,pullreq_source_branch
|
|
,pullreq_source_sha
|
|
,pullreq_target_repo_id
|
|
,pullreq_target_branch
|
|
,pullreq_activity_seq
|
|
,pullreq_merged_by
|
|
,pullreq_merged
|
|
,pullreq_merge_method
|
|
,pullreq_merge_check_status
|
|
,pullreq_merge_target_sha
|
|
,pullreq_merge_base_sha
|
|
,pullreq_merge_sha
|
|
,pullreq_merge_conflicts
|
|
,pullreq_commit_count
|
|
,pullreq_file_count
|
|
) values (
|
|
:pullreq_version
|
|
,:pullreq_number
|
|
,:pullreq_created_by
|
|
,:pullreq_created
|
|
,:pullreq_updated
|
|
,:pullreq_edited
|
|
,:pullreq_closed
|
|
,:pullreq_state
|
|
,:pullreq_is_draft
|
|
,:pullreq_comment_count
|
|
,:pullreq_unresolved_count
|
|
,:pullreq_title
|
|
,:pullreq_description
|
|
,:pullreq_source_repo_id
|
|
,:pullreq_source_branch
|
|
,:pullreq_source_sha
|
|
,:pullreq_target_repo_id
|
|
,:pullreq_target_branch
|
|
,:pullreq_activity_seq
|
|
,:pullreq_merged_by
|
|
,:pullreq_merged
|
|
,:pullreq_merge_method
|
|
,:pullreq_merge_check_status
|
|
,:pullreq_merge_target_sha
|
|
,:pullreq_merge_base_sha
|
|
,:pullreq_merge_sha
|
|
,:pullreq_merge_conflicts
|
|
,:pullreq_commit_count
|
|
,:pullreq_file_count
|
|
) RETURNING pullreq_id`
|
|
|
|
db := dbtx.GetAccessor(ctx, s.db)
|
|
|
|
query, arg, err := db.BindNamed(sqlQuery, mapInternalPullReq(pr))
|
|
if err != nil {
|
|
return database.ProcessSQLErrorf(ctx, err, "Failed to bind pullReq object")
|
|
}
|
|
|
|
if err = db.QueryRowContext(ctx, query, arg...).Scan(&pr.ID); err != nil {
|
|
return database.ProcessSQLErrorf(ctx, err, "Insert query failed")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Update updates the pull request.
|
|
func (s *PullReqStore) Update(ctx context.Context, pr *types.PullReq) error {
|
|
const sqlQuery = `
|
|
UPDATE pullreqs
|
|
SET
|
|
pullreq_version = :pullreq_version
|
|
,pullreq_updated = :pullreq_updated
|
|
,pullreq_edited = :pullreq_edited
|
|
,pullreq_closed = :pullreq_closed
|
|
,pullreq_state = :pullreq_state
|
|
,pullreq_is_draft = :pullreq_is_draft
|
|
,pullreq_comment_count = :pullreq_comment_count
|
|
,pullreq_unresolved_count = :pullreq_unresolved_count
|
|
,pullreq_title = :pullreq_title
|
|
,pullreq_description = :pullreq_description
|
|
,pullreq_activity_seq = :pullreq_activity_seq
|
|
,pullreq_source_sha = :pullreq_source_sha
|
|
,pullreq_merged_by = :pullreq_merged_by
|
|
,pullreq_merged = :pullreq_merged
|
|
,pullreq_merge_method = :pullreq_merge_method
|
|
,pullreq_merge_check_status = :pullreq_merge_check_status
|
|
,pullreq_merge_target_sha = :pullreq_merge_target_sha
|
|
,pullreq_merge_base_sha = :pullreq_merge_base_sha
|
|
,pullreq_merge_sha = :pullreq_merge_sha
|
|
,pullreq_merge_conflicts = :pullreq_merge_conflicts
|
|
,pullreq_commit_count = :pullreq_commit_count
|
|
,pullreq_file_count = :pullreq_file_count
|
|
WHERE pullreq_id = :pullreq_id AND pullreq_version = :pullreq_version - 1`
|
|
|
|
db := dbtx.GetAccessor(ctx, s.db)
|
|
|
|
updatedAt := time.Now()
|
|
|
|
dbPR := mapInternalPullReq(pr)
|
|
dbPR.Version++
|
|
dbPR.Updated = updatedAt.UnixMilli()
|
|
|
|
query, arg, err := db.BindNamed(sqlQuery, dbPR)
|
|
if err != nil {
|
|
return database.ProcessSQLErrorf(ctx, err, "Failed to bind pull request object")
|
|
}
|
|
|
|
result, err := db.ExecContext(ctx, query, arg...)
|
|
if err != nil {
|
|
return database.ProcessSQLErrorf(ctx, err, "Failed to update pull request")
|
|
}
|
|
|
|
count, err := result.RowsAffected()
|
|
if err != nil {
|
|
return database.ProcessSQLErrorf(ctx, err, "Failed to get number of updated rows")
|
|
}
|
|
|
|
if count == 0 {
|
|
return gitness_store.ErrVersionConflict
|
|
}
|
|
|
|
*pr = *s.mapPullReq(ctx, dbPR)
|
|
|
|
return nil
|
|
}
|
|
|
|
// UpdateOptLock the pull request details using the optimistic locking mechanism.
|
|
func (s *PullReqStore) UpdateOptLock(ctx context.Context, pr *types.PullReq,
|
|
mutateFn func(pr *types.PullReq) error,
|
|
) (*types.PullReq, error) {
|
|
for {
|
|
dup := *pr
|
|
|
|
err := mutateFn(&dup)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = s.Update(ctx, &dup)
|
|
if err == nil {
|
|
return &dup, nil
|
|
}
|
|
if !errors.Is(err, gitness_store.ErrVersionConflict) {
|
|
return nil, err
|
|
}
|
|
|
|
pr, err = s.Find(ctx, pr.ID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
}
|
|
|
|
// UpdateActivitySeq updates the pull request's activity sequence.
|
|
func (s *PullReqStore) UpdateActivitySeq(ctx context.Context, pr *types.PullReq) (*types.PullReq, error) {
|
|
return s.UpdateOptLock(ctx, pr, func(pr *types.PullReq) error {
|
|
pr.ActivitySeq++
|
|
return nil
|
|
})
|
|
}
|
|
|
|
// ResetMergeCheckStatus resets the pull request's mergeability status to unchecked
|
|
// for all pr which target branch points to targetBranch.
|
|
func (s *PullReqStore) ResetMergeCheckStatus(
|
|
ctx context.Context,
|
|
targetRepo int64,
|
|
targetBranch string,
|
|
) error {
|
|
// NOTE: keep pullreq_merge_base_sha on old value as it's a required field.
|
|
const query = `
|
|
UPDATE pullreqs
|
|
SET
|
|
pullreq_updated = $1
|
|
,pullreq_version = pullreq_version + 1
|
|
,pullreq_merge_check_status = $2
|
|
,pullreq_merge_target_sha = NULL
|
|
,pullreq_merge_sha = NULL
|
|
,pullreq_merge_conflicts = NULL
|
|
,pullreq_commit_count = NULL
|
|
,pullreq_file_count = NULL
|
|
WHERE pullreq_target_repo_id = $3 AND
|
|
pullreq_target_branch = $4 AND
|
|
pullreq_state not in ($5, $6)`
|
|
|
|
db := dbtx.GetAccessor(ctx, s.db)
|
|
|
|
now := time.Now().UnixMilli()
|
|
|
|
_, err := db.ExecContext(ctx, query, now, enum.MergeCheckStatusUnchecked, targetRepo, targetBranch,
|
|
enum.PullReqStateClosed, enum.PullReqStateMerged)
|
|
if err != nil {
|
|
return database.ProcessSQLErrorf(ctx, err, "Failed to reset mergeable status check in pull requests")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Delete the pull request.
|
|
func (s *PullReqStore) Delete(ctx context.Context, id int64) error {
|
|
const pullReqDelete = `DELETE FROM pullreqs WHERE pullreq_id = $1`
|
|
|
|
db := dbtx.GetAccessor(ctx, s.db)
|
|
|
|
if _, err := db.ExecContext(ctx, pullReqDelete, id); err != nil {
|
|
return database.ProcessSQLErrorf(ctx, err, "the delete query failed")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Count of pull requests for a repo.
|
|
func (s *PullReqStore) Count(ctx context.Context, opts *types.PullReqFilter) (int64, error) {
|
|
stmt := database.Builder.
|
|
Select("count(*)").
|
|
From("pullreqs")
|
|
|
|
if len(opts.States) == 1 {
|
|
stmt = stmt.Where("pullreq_state = ?", opts.States[0])
|
|
} else if len(opts.States) > 1 {
|
|
stmt = stmt.Where(squirrel.Eq{"pullreq_state": opts.States})
|
|
}
|
|
|
|
if opts.SourceRepoID != 0 {
|
|
stmt = stmt.Where("pullreq_source_repo_id = ?", opts.SourceRepoID)
|
|
}
|
|
|
|
if opts.SourceBranch != "" {
|
|
stmt = stmt.Where("pullreq_source_branch = ?", opts.SourceBranch)
|
|
}
|
|
|
|
if opts.TargetRepoID != 0 {
|
|
stmt = stmt.Where("pullreq_target_repo_id = ?", opts.TargetRepoID)
|
|
}
|
|
|
|
if opts.TargetBranch != "" {
|
|
stmt = stmt.Where("pullreq_target_branch = ?", opts.TargetBranch)
|
|
}
|
|
|
|
if opts.Query != "" {
|
|
stmt = stmt.Where("LOWER(pullreq_title) LIKE ?", fmt.Sprintf("%%%s%%", strings.ToLower(opts.Query)))
|
|
}
|
|
|
|
if len(opts.CreatedBy) > 0 {
|
|
stmt = stmt.Where(squirrel.Eq{"pullreq_created_by": opts.CreatedBy})
|
|
}
|
|
|
|
sql, args, err := stmt.ToSql()
|
|
if err != nil {
|
|
return 0, errors.Wrap(err, "Failed to convert query to sql")
|
|
}
|
|
|
|
db := dbtx.GetAccessor(ctx, s.db)
|
|
|
|
var count int64
|
|
err = db.QueryRowContext(ctx, sql, args...).Scan(&count)
|
|
if err != nil {
|
|
return 0, database.ProcessSQLErrorf(ctx, err, "Failed executing count query")
|
|
}
|
|
|
|
return count, nil
|
|
}
|
|
|
|
// List returns a list of pull requests for a repo.
|
|
func (s *PullReqStore) List(ctx context.Context, opts *types.PullReqFilter) ([]*types.PullReq, error) {
|
|
stmt := database.Builder.
|
|
Select(pullReqColumns).
|
|
From("pullreqs")
|
|
|
|
if len(opts.States) == 1 {
|
|
stmt = stmt.Where("pullreq_state = ?", opts.States[0])
|
|
} else if len(opts.States) > 1 {
|
|
stmt = stmt.Where(squirrel.Eq{"pullreq_state": opts.States})
|
|
}
|
|
|
|
if opts.SourceRepoID != 0 {
|
|
stmt = stmt.Where("pullreq_source_repo_id = ?", opts.SourceRepoID)
|
|
}
|
|
|
|
if opts.SourceBranch != "" {
|
|
stmt = stmt.Where("pullreq_source_branch = ?", opts.SourceBranch)
|
|
}
|
|
|
|
if opts.TargetRepoID != 0 {
|
|
stmt = stmt.Where("pullreq_target_repo_id = ?", opts.TargetRepoID)
|
|
}
|
|
|
|
if opts.TargetBranch != "" {
|
|
stmt = stmt.Where("pullreq_target_branch = ?", opts.TargetBranch)
|
|
}
|
|
|
|
if opts.Query != "" {
|
|
stmt = stmt.Where("LOWER(pullreq_title) LIKE ?", fmt.Sprintf("%%%s%%", strings.ToLower(opts.Query)))
|
|
}
|
|
|
|
if len(opts.CreatedBy) > 0 {
|
|
stmt = stmt.Where(squirrel.Eq{"pullreq_created_by": opts.CreatedBy})
|
|
}
|
|
|
|
if opts.CreatedLt > 0 {
|
|
stmt = stmt.Where("pullreq_created < ?", opts.CreatedLt)
|
|
}
|
|
|
|
if opts.CreatedGt > 0 {
|
|
stmt = stmt.Where("pullreq_created > ?", opts.CreatedGt)
|
|
}
|
|
|
|
stmt = stmt.Limit(database.Limit(opts.Size))
|
|
stmt = stmt.Offset(database.Offset(opts.Page, opts.Size))
|
|
|
|
// NOTE: string concatenation is safe because the
|
|
// order attribute is an enum and is not user-defined,
|
|
// and is therefore not subject to injection attacks.
|
|
opts.Sort, _ = opts.Sort.Sanitize()
|
|
stmt = stmt.OrderBy("pullreq_" + string(opts.Sort) + " " + opts.Order.String())
|
|
|
|
sql, args, err := stmt.ToSql()
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "Failed to convert query to sql")
|
|
}
|
|
|
|
dst := make([]*pullReq, 0)
|
|
|
|
db := dbtx.GetAccessor(ctx, s.db)
|
|
|
|
if err = db.SelectContext(ctx, &dst, sql, args...); err != nil {
|
|
return nil, database.ProcessSQLErrorf(ctx, err, "Failed executing custom list query")
|
|
}
|
|
|
|
result, err := s.mapSlicePullReq(ctx, dst)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return result, nil
|
|
}
|
|
|
|
func mapPullReq(pr *pullReq) *types.PullReq {
|
|
var mergeConflicts []string
|
|
if pr.MergeConflicts.Valid {
|
|
mergeConflicts = strings.Split(pr.MergeConflicts.String, "\n")
|
|
}
|
|
|
|
return &types.PullReq{
|
|
ID: pr.ID,
|
|
Version: pr.Version,
|
|
Number: pr.Number,
|
|
CreatedBy: pr.CreatedBy,
|
|
Created: pr.Created,
|
|
Updated: pr.Updated,
|
|
Edited: pr.Edited,
|
|
Closed: pr.Closed.Ptr(),
|
|
State: pr.State,
|
|
IsDraft: pr.IsDraft,
|
|
CommentCount: pr.CommentCount,
|
|
UnresolvedCount: pr.UnresolvedCount,
|
|
Title: pr.Title,
|
|
Description: pr.Description,
|
|
SourceRepoID: pr.SourceRepoID,
|
|
SourceBranch: pr.SourceBranch,
|
|
SourceSHA: pr.SourceSHA,
|
|
TargetRepoID: pr.TargetRepoID,
|
|
TargetBranch: pr.TargetBranch,
|
|
ActivitySeq: pr.ActivitySeq,
|
|
MergedBy: pr.MergedBy.Ptr(),
|
|
Merged: pr.Merged.Ptr(),
|
|
MergeMethod: (*enum.MergeMethod)(pr.MergeMethod.Ptr()),
|
|
MergeCheckStatus: pr.MergeCheckStatus,
|
|
MergeTargetSHA: pr.MergeTargetSHA.Ptr(),
|
|
MergeBaseSHA: pr.MergeBaseSHA,
|
|
MergeSHA: pr.MergeSHA.Ptr(),
|
|
MergeConflicts: mergeConflicts,
|
|
Author: types.PrincipalInfo{},
|
|
Merger: nil,
|
|
Stats: types.PullReqStats{
|
|
Conversations: pr.CommentCount,
|
|
UnresolvedCount: pr.UnresolvedCount,
|
|
DiffStats: types.DiffStats{
|
|
Commits: pr.CommitCount.Ptr(),
|
|
FilesChanged: pr.FileCount.Ptr(),
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func mapInternalPullReq(pr *types.PullReq) *pullReq {
|
|
mergeConflicts := strings.Join(pr.MergeConflicts, "\n")
|
|
m := &pullReq{
|
|
ID: pr.ID,
|
|
Version: pr.Version,
|
|
Number: pr.Number,
|
|
CreatedBy: pr.CreatedBy,
|
|
Created: pr.Created,
|
|
Updated: pr.Updated,
|
|
Edited: pr.Edited,
|
|
Closed: null.IntFromPtr(pr.Closed),
|
|
State: pr.State,
|
|
IsDraft: pr.IsDraft,
|
|
CommentCount: pr.CommentCount,
|
|
UnresolvedCount: pr.UnresolvedCount,
|
|
Title: pr.Title,
|
|
Description: pr.Description,
|
|
SourceRepoID: pr.SourceRepoID,
|
|
SourceBranch: pr.SourceBranch,
|
|
SourceSHA: pr.SourceSHA,
|
|
TargetRepoID: pr.TargetRepoID,
|
|
TargetBranch: pr.TargetBranch,
|
|
ActivitySeq: pr.ActivitySeq,
|
|
MergedBy: null.IntFromPtr(pr.MergedBy),
|
|
Merged: null.IntFromPtr(pr.Merged),
|
|
MergeMethod: null.StringFromPtr((*string)(pr.MergeMethod)),
|
|
MergeCheckStatus: pr.MergeCheckStatus,
|
|
MergeTargetSHA: null.StringFromPtr(pr.MergeTargetSHA),
|
|
MergeBaseSHA: pr.MergeBaseSHA,
|
|
MergeSHA: null.StringFromPtr(pr.MergeSHA),
|
|
MergeConflicts: null.NewString(mergeConflicts, mergeConflicts != ""),
|
|
CommitCount: null.IntFromPtr(pr.Stats.Commits),
|
|
FileCount: null.IntFromPtr(pr.Stats.FilesChanged),
|
|
}
|
|
|
|
return m
|
|
}
|
|
|
|
func (s *PullReqStore) mapPullReq(ctx context.Context, pr *pullReq) *types.PullReq {
|
|
m := mapPullReq(pr)
|
|
|
|
var author, merger *types.PrincipalInfo
|
|
var err error
|
|
|
|
author, err = s.pCache.Get(ctx, pr.CreatedBy)
|
|
if err != nil {
|
|
log.Ctx(ctx).Err(err).Msg("failed to load PR author")
|
|
}
|
|
if author != nil {
|
|
m.Author = *author
|
|
}
|
|
|
|
if pr.MergedBy.Valid {
|
|
merger, err = s.pCache.Get(ctx, pr.MergedBy.Int64)
|
|
if err != nil {
|
|
log.Ctx(ctx).Err(err).Msg("failed to load PR merger")
|
|
}
|
|
m.Merger = merger
|
|
}
|
|
|
|
return m
|
|
}
|
|
|
|
func (s *PullReqStore) mapSlicePullReq(ctx context.Context, prs []*pullReq) ([]*types.PullReq, error) {
|
|
// collect all principal IDs
|
|
ids := make([]int64, 0, 2*len(prs))
|
|
for _, pr := range prs {
|
|
ids = append(ids, pr.CreatedBy)
|
|
if pr.MergedBy.Valid {
|
|
ids = append(ids, pr.MergedBy.Int64)
|
|
}
|
|
}
|
|
|
|
// pull principal infos from cache
|
|
infoMap, err := s.pCache.Map(ctx, ids)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to load PR principal infos: %w", err)
|
|
}
|
|
|
|
// attach the principal infos back to the slice items
|
|
m := make([]*types.PullReq, len(prs))
|
|
for i, pr := range prs {
|
|
m[i] = mapPullReq(pr)
|
|
if author, ok := infoMap[pr.CreatedBy]; ok {
|
|
m[i].Author = *author
|
|
}
|
|
if pr.MergedBy.Valid {
|
|
if merger, ok := infoMap[pr.MergedBy.Int64]; ok {
|
|
m[i].Merger = merger
|
|
}
|
|
}
|
|
}
|
|
|
|
return m, nil
|
|
}
|