2019-06-22 23:05:34 +05:30
// Copyright 2019 The Gitea Authors.
// All rights reserved.
2022-11-27 23:50:29 +05:30
// SPDX-License-Identifier: MIT
2019-06-22 23:05:34 +05:30
package pull
import (
"bufio"
"bytes"
2022-01-20 04:56:57 +05:30
"context"
2019-06-22 23:05:34 +05:30
"fmt"
"os"
"path/filepath"
2019-11-01 06:00:02 +05:30
"regexp"
2022-05-08 18:02:45 +05:30
"strconv"
2019-06-22 23:05:34 +05:30
"strings"
2019-10-16 19:12:42 +05:30
"time"
2019-06-22 23:05:34 +05:30
"code.gitea.io/gitea/models"
2022-05-04 01:16:28 +05:30
"code.gitea.io/gitea/models/db"
2022-06-12 21:21:54 +05:30
git_model "code.gitea.io/gitea/models/git"
2022-06-13 15:07:59 +05:30
issues_model "code.gitea.io/gitea/models/issues"
2022-05-11 15:39:36 +05:30
access_model "code.gitea.io/gitea/models/perm/access"
2022-05-07 22:35:52 +05:30
pull_model "code.gitea.io/gitea/models/pull"
2021-12-10 06:57:50 +05:30
repo_model "code.gitea.io/gitea/models/repo"
2021-11-10 01:27:58 +05:30
"code.gitea.io/gitea/models/unit"
2021-11-24 15:19:20 +05:30
user_model "code.gitea.io/gitea/models/user"
2019-06-22 23:05:34 +05:30
"code.gitea.io/gitea/modules/cache"
"code.gitea.io/gitea/modules/git"
2022-10-11 21:56:22 +05:30
"code.gitea.io/gitea/modules/graceful"
2019-06-22 23:05:34 +05:30
"code.gitea.io/gitea/modules/log"
2019-11-05 16:34:08 +05:30
"code.gitea.io/gitea/modules/notification"
2019-11-18 18:43:07 +05:30
"code.gitea.io/gitea/modules/references"
2022-05-08 22:16:32 +05:30
repo_module "code.gitea.io/gitea/modules/repository"
2019-06-22 23:05:34 +05:30
"code.gitea.io/gitea/modules/setting"
2019-08-15 20:16:21 +05:30
"code.gitea.io/gitea/modules/timeutil"
2021-12-10 13:44:24 +05:30
asymkey_service "code.gitea.io/gitea/services/asymkey"
2019-11-18 18:43:07 +05:30
issue_service "code.gitea.io/gitea/services/issue"
2019-06-22 23:05:34 +05:30
)
2022-05-08 18:02:45 +05:30
// GetDefaultMergeMessage returns default message used when merging pull request
2022-11-19 13:42:33 +05:30
func GetDefaultMergeMessage ( ctx context . Context , baseGitRepo * git . Repository , pr * issues_model . PullRequest , mergeStyle repo_model . MergeStyle ) ( string , error ) {
if err := pr . LoadHeadRepo ( ctx ) ; err != nil {
2022-05-08 18:02:45 +05:30
return "" , err
}
2022-11-19 13:42:33 +05:30
if err := pr . LoadBaseRepo ( ctx ) ; err != nil {
2022-05-08 18:02:45 +05:30
return "" , err
}
if pr . BaseRepo == nil {
return "" , repo_model . ErrRepoNotExist { ID : pr . BaseRepoID }
}
2022-11-19 13:42:33 +05:30
if err := pr . LoadIssue ( ctx ) ; err != nil {
2022-05-08 18:02:45 +05:30
return "" , err
}
isExternalTracker := pr . BaseRepo . UnitEnabled ( unit . TypeExternalTracker )
issueReference := "#"
if isExternalTracker {
issueReference = "!"
}
if mergeStyle != "" {
templateFilepath := fmt . Sprintf ( ".gitea/default_merge_message/%s_TEMPLATE.md" , strings . ToUpper ( string ( mergeStyle ) ) )
commit , err := baseGitRepo . GetBranchCommit ( pr . BaseRepo . DefaultBranch )
if err != nil {
return "" , err
}
templateContent , err := commit . GetFileContent ( templateFilepath , setting . Repository . PullRequest . DefaultMergeMessageSize )
if err != nil {
if ! git . IsErrNotExist ( err ) {
return "" , err
}
} else {
vars := map [ string ] string {
"BaseRepoOwnerName" : pr . BaseRepo . OwnerName ,
"BaseRepoName" : pr . BaseRepo . Name ,
"BaseBranch" : pr . BaseBranch ,
"HeadRepoOwnerName" : "" ,
"HeadRepoName" : "" ,
"HeadBranch" : pr . HeadBranch ,
"PullRequestTitle" : pr . Issue . Title ,
"PullRequestDescription" : pr . Issue . Content ,
"PullRequestPosterName" : pr . Issue . Poster . Name ,
"PullRequestIndex" : strconv . FormatInt ( pr . Index , 10 ) ,
"PullRequestReference" : fmt . Sprintf ( "%s%d" , issueReference , pr . Index ) ,
}
if pr . HeadRepo != nil {
vars [ "HeadRepoOwnerName" ] = pr . HeadRepo . OwnerName
vars [ "HeadRepoName" ] = pr . HeadRepo . Name
}
2022-11-19 13:42:33 +05:30
refs , err := pr . ResolveCrossReferences ( ctx )
2022-05-08 18:02:45 +05:30
if err == nil {
closeIssueIndexes := make ( [ ] string , 0 , len ( refs ) )
closeWord := "close"
if len ( setting . Repository . PullRequest . CloseKeywords ) > 0 {
closeWord = setting . Repository . PullRequest . CloseKeywords [ 0 ]
}
for _ , ref := range refs {
if ref . RefAction == references . XRefActionCloses {
closeIssueIndexes = append ( closeIssueIndexes , fmt . Sprintf ( "%s %s%d" , closeWord , issueReference , ref . Issue . Index ) )
}
}
if len ( closeIssueIndexes ) > 0 {
vars [ "ClosingIssues" ] = strings . Join ( closeIssueIndexes , ", " )
} else {
vars [ "ClosingIssues" ] = ""
}
}
return os . Expand ( templateContent , func ( s string ) string {
return vars [ s ]
} ) , nil
}
}
// Squash merge has a different from other styles.
if mergeStyle == repo_model . MergeStyleSquash {
return fmt . Sprintf ( "%s (%s%d)" , pr . Issue . Title , issueReference , pr . Issue . Index ) , nil
}
if pr . BaseRepoID == pr . HeadRepoID {
return fmt . Sprintf ( "Merge pull request '%s' (%s%d) from %s into %s" , pr . Issue . Title , issueReference , pr . Issue . Index , pr . HeadBranch , pr . BaseBranch ) , nil
}
if pr . HeadRepo == nil {
return fmt . Sprintf ( "Merge pull request '%s' (%s%d) from <deleted>:%s into %s" , pr . Issue . Title , issueReference , pr . Issue . Index , pr . HeadBranch , pr . BaseBranch ) , nil
}
return fmt . Sprintf ( "Merge pull request '%s' (%s%d) from %s:%s into %s" , pr . Issue . Title , issueReference , pr . Issue . Index , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseBranch ) , nil
}
2019-06-22 23:05:34 +05:30
// Merge merges pull request to base repository.
2020-01-11 12:59:34 +05:30
// Caller should check PR is ready to be merged (review and status checks)
2022-11-03 21:19:00 +05:30
func Merge ( ctx context . Context , pr * issues_model . PullRequest , doer * user_model . User , baseGitRepo * git . Repository , mergeStyle repo_model . MergeStyle , expectedHeadCommitID , message string , wasAutoMerged bool ) error {
2022-11-19 13:42:33 +05:30
if err := pr . LoadHeadRepo ( ctx ) ; err != nil {
2020-03-03 04:01:55 +05:30
log . Error ( "LoadHeadRepo: %v" , err )
2022-10-25 00:59:17 +05:30
return fmt . Errorf ( "LoadHeadRepo: %w" , err )
2022-11-19 13:42:33 +05:30
} else if err := pr . LoadBaseRepo ( ctx ) ; err != nil {
2020-03-03 04:01:55 +05:30
log . Error ( "LoadBaseRepo: %v" , err )
2022-10-25 00:59:17 +05:30
return fmt . Errorf ( "LoadBaseRepo: %w" , err )
2019-06-22 23:05:34 +05:30
}
2022-05-04 21:36:23 +05:30
pullWorkingPool . CheckIn ( fmt . Sprint ( pr . ID ) )
defer pullWorkingPool . CheckOut ( fmt . Sprint ( pr . ID ) )
2022-05-07 22:35:52 +05:30
// Removing an auto merge pull and ignore if not exist
2022-05-08 19:16:34 +05:30
if err := pull_model . DeleteScheduledAutoMerge ( db . DefaultContext , pr . ID ) ; err != nil && ! db . IsErrNotExist ( err ) {
2022-05-07 22:35:52 +05:30
return err
}
2021-11-10 01:27:58 +05:30
prUnit , err := pr . BaseRepo . GetUnit ( unit . TypePullRequests )
2019-06-22 23:05:34 +05:30
if err != nil {
2021-11-10 01:27:58 +05:30
log . Error ( "pr.BaseRepo.GetUnit(unit.TypePullRequests): %v" , err )
2019-06-22 23:05:34 +05:30
return err
}
prConfig := prUnit . PullRequestsConfig ( )
// Check if merge style is correct and allowed
if ! prConfig . IsMergeStyleAllowed ( mergeStyle ) {
return models . ErrInvalidMergeStyle { ID : pr . BaseRepo . ID , Style : mergeStyle }
}
defer func ( ) {
2020-01-09 07:17:45 +05:30
go AddTestPullRequestTask ( doer , pr . BaseRepo . ID , pr . BaseBranch , false , "" , "" )
2019-06-22 23:05:34 +05:30
} ( )
2022-10-11 21:56:22 +05:30
// Run the merge in the hammer context to prevent cancellation
hammerCtx := graceful . GetManager ( ) . HammerContext ( )
pr . MergedCommitID , err = rawMerge ( hammerCtx , pr , doer , mergeStyle , expectedHeadCommitID , message )
2020-01-17 11:33:40 +05:30
if err != nil {
2020-02-10 04:39:31 +05:30
return err
2020-01-17 11:33:40 +05:30
}
pr . MergedUnix = timeutil . TimeStampNow ( )
pr . Merger = doer
pr . MergerID = doer . ID
2022-10-11 21:56:22 +05:30
if _ , err := pr . SetMerged ( hammerCtx ) ; err != nil {
2022-11-19 13:42:33 +05:30
log . Error ( "SetMerged [%d]: %v" , pr . ID , err )
2020-01-17 11:33:40 +05:30
}
2022-11-19 13:42:33 +05:30
if err := pr . LoadIssue ( hammerCtx ) ; err != nil {
log . Error ( "LoadIssue [%d]: %v" , pr . ID , err )
2020-02-10 04:39:31 +05:30
}
2022-10-11 21:56:22 +05:30
if err := pr . Issue . LoadRepo ( hammerCtx ) ; err != nil {
2022-11-19 13:42:33 +05:30
log . Error ( "LoadRepo for issue [%d]: %v" , pr . ID , err )
2020-02-10 04:39:31 +05:30
}
2022-10-11 21:56:22 +05:30
if err := pr . Issue . Repo . GetOwner ( hammerCtx ) ; err != nil {
2022-11-19 13:42:33 +05:30
log . Error ( "GetOwner for PR [%d]: %v" , pr . ID , err )
2020-02-10 04:39:31 +05:30
}
2022-11-03 21:19:00 +05:30
if wasAutoMerged {
2022-11-19 13:42:33 +05:30
notification . NotifyAutoMergePullRequest ( hammerCtx , doer , pr )
2022-11-03 21:19:00 +05:30
} else {
2022-11-19 13:42:33 +05:30
notification . NotifyMergePullRequest ( hammerCtx , doer , pr )
2022-11-03 21:19:00 +05:30
}
2020-01-17 11:33:40 +05:30
// Reset cached commit count
cache . Remove ( pr . Issue . Repo . GetCommitsCountCacheKey ( pr . BaseBranch , true ) )
// Resolve cross references
2022-10-11 21:56:22 +05:30
refs , err := pr . ResolveCrossReferences ( hammerCtx )
2020-01-17 11:33:40 +05:30
if err != nil {
log . Error ( "ResolveCrossReferences: %v" , err )
return nil
}
for _ , ref := range refs {
2022-11-19 13:42:33 +05:30
if err = ref . LoadIssue ( hammerCtx ) ; err != nil {
2020-01-17 11:33:40 +05:30
return err
}
2022-10-11 21:56:22 +05:30
if err = ref . Issue . LoadRepo ( hammerCtx ) ; err != nil {
2020-01-17 11:33:40 +05:30
return err
}
2021-04-09 13:10:34 +05:30
close := ref . RefAction == references . XRefActionCloses
2020-01-17 11:33:40 +05:30
if close != ref . Issue . IsClosed {
if err = issue_service . ChangeStatus ( ref . Issue , doer , close ) ; err != nil {
2022-01-19 04:56:42 +05:30
// Allow ErrDependenciesLeft
2022-06-13 15:07:59 +05:30
if ! issues_model . IsErrDependenciesLeft ( err ) {
2022-01-19 04:56:42 +05:30
return err
}
2020-01-17 11:33:40 +05:30
}
}
}
return nil
}
// rawMerge perform the merge operation without changing any pull information in database
2022-06-13 15:07:59 +05:30
func rawMerge ( ctx context . Context , pr * issues_model . PullRequest , doer * user_model . User , mergeStyle repo_model . MergeStyle , expectedHeadCommitID , message string ) ( string , error ) {
2019-06-22 23:05:34 +05:30
// Clone base repo.
2022-01-20 04:56:57 +05:30
tmpBasePath , err := createTemporaryRepo ( ctx , pr )
2019-06-22 23:05:34 +05:30
if err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "CreateTemporaryPath: %v" , err )
2020-02-10 04:39:31 +05:30
return "" , err
2019-06-22 23:05:34 +05:30
}
defer func ( ) {
2022-05-08 22:16:32 +05:30
if err := repo_module . RemoveTemporaryPath ( tmpBasePath ) ; err != nil {
2019-06-22 23:05:34 +05:30
log . Error ( "Merge: RemoveTemporaryPath: %s" , err )
}
} ( )
2019-10-12 05:43:27 +05:30
baseBranch := "base"
trackingBranch := "tracking"
stagingBranch := "staging"
2019-06-22 23:05:34 +05:30
2021-12-20 06:02:54 +05:30
if expectedHeadCommitID != "" {
2022-10-23 20:14:45 +05:30
trackingCommitID , _ , err := git . NewCommand ( ctx , "show-ref" , "--hash" ) . AddDynamicArguments ( git . BranchPrefix + trackingBranch ) . RunStdString ( & git . RunOpts { Dir : tmpBasePath } )
2021-12-20 06:02:54 +05:30
if err != nil {
log . Error ( "show-ref[%s] --hash refs/heads/trackingn: %v" , tmpBasePath , git . BranchPrefix + trackingBranch , err )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "getDiffTree: %w" , err )
2021-12-20 06:02:54 +05:30
}
if strings . TrimSpace ( trackingCommitID ) != expectedHeadCommitID {
return "" , models . ErrSHADoesNotMatch {
GivenSHA : expectedHeadCommitID ,
CurrentSHA : trackingCommitID ,
}
}
}
2019-12-14 03:51:06 +05:30
var outbuf , errbuf strings . Builder
2019-06-22 23:05:34 +05:30
// Enable sparse-checkout
2022-01-20 04:56:57 +05:30
sparseCheckoutList , err := getDiffTree ( ctx , tmpBasePath , baseBranch , trackingBranch )
2019-06-22 23:05:34 +05:30
if err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "getDiffTree(%s, %s, %s): %v" , tmpBasePath , baseBranch , trackingBranch , err )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "getDiffTree: %w" , err )
2019-06-22 23:05:34 +05:30
}
infoPath := filepath . Join ( tmpBasePath , ".git" , "info" )
2022-01-20 23:16:10 +05:30
if err := os . MkdirAll ( infoPath , 0 o700 ) ; err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "Unable to create .git/info in %s: %v" , tmpBasePath , err )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "Unable to create .git/info in tmpBasePath: %w" , err )
2019-06-22 23:05:34 +05:30
}
2019-11-10 14:12:51 +05:30
2019-06-22 23:05:34 +05:30
sparseCheckoutListPath := filepath . Join ( infoPath , "sparse-checkout" )
2022-01-20 23:16:10 +05:30
if err := os . WriteFile ( sparseCheckoutListPath , [ ] byte ( sparseCheckoutList ) , 0 o600 ) ; err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "Unable to write .git/info/sparse-checkout file in %s: %v" , tmpBasePath , err )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "Unable to write .git/info/sparse-checkout file in tmpBasePath: %w" , err )
2019-06-22 23:05:34 +05:30
}
2022-06-16 21:17:44 +05:30
gitConfigCommand := func ( ) * git . Command {
return git . NewCommand ( ctx , "config" , "--local" )
2019-11-10 14:12:51 +05:30
}
2019-10-12 05:43:27 +05:30
2019-06-22 23:05:34 +05:30
// Switch off LFS process (set required, clean and smudge here also)
2022-02-11 18:17:22 +05:30
if err := gitConfigCommand ( ) . AddArguments ( "filter.lfs.process" , "" ) .
2022-04-01 08:25:30 +05:30
Run ( & git . RunOpts {
Dir : tmpBasePath ,
Stdout : & outbuf ,
Stderr : & errbuf ,
2022-02-11 18:17:22 +05:30
} ) ; err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "git config [filter.lfs.process -> <> ]: %v\n%s\n%s" , err , outbuf . String ( ) , errbuf . String ( ) )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "git config [filter.lfs.process -> <> ]: %w\n%s\n%s" , err , outbuf . String ( ) , errbuf . String ( ) )
2019-06-22 23:05:34 +05:30
}
2019-11-10 14:12:51 +05:30
outbuf . Reset ( )
errbuf . Reset ( )
2022-02-11 18:17:22 +05:30
if err := gitConfigCommand ( ) . AddArguments ( "filter.lfs.required" , "false" ) .
2022-04-01 08:25:30 +05:30
Run ( & git . RunOpts {
Dir : tmpBasePath ,
Stdout : & outbuf ,
Stderr : & errbuf ,
2022-02-11 18:17:22 +05:30
} ) ; err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "git config [filter.lfs.required -> <false> ]: %v\n%s\n%s" , err , outbuf . String ( ) , errbuf . String ( ) )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "git config [filter.lfs.required -> <false> ]: %w\n%s\n%s" , err , outbuf . String ( ) , errbuf . String ( ) )
2019-06-22 23:05:34 +05:30
}
2019-11-10 14:12:51 +05:30
outbuf . Reset ( )
errbuf . Reset ( )
2022-02-11 18:17:22 +05:30
if err := gitConfigCommand ( ) . AddArguments ( "filter.lfs.clean" , "" ) .
2022-04-01 08:25:30 +05:30
Run ( & git . RunOpts {
Dir : tmpBasePath ,
Stdout : & outbuf ,
Stderr : & errbuf ,
2022-02-11 18:17:22 +05:30
} ) ; err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "git config [filter.lfs.clean -> <> ]: %v\n%s\n%s" , err , outbuf . String ( ) , errbuf . String ( ) )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "git config [filter.lfs.clean -> <> ]: %w\n%s\n%s" , err , outbuf . String ( ) , errbuf . String ( ) )
2019-06-22 23:05:34 +05:30
}
2019-11-10 14:12:51 +05:30
outbuf . Reset ( )
errbuf . Reset ( )
2022-02-11 18:17:22 +05:30
if err := gitConfigCommand ( ) . AddArguments ( "filter.lfs.smudge" , "" ) .
2022-04-01 08:25:30 +05:30
Run ( & git . RunOpts {
Dir : tmpBasePath ,
Stdout : & outbuf ,
Stderr : & errbuf ,
2022-02-11 18:17:22 +05:30
} ) ; err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "git config [filter.lfs.smudge -> <> ]: %v\n%s\n%s" , err , outbuf . String ( ) , errbuf . String ( ) )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "git config [filter.lfs.smudge -> <> ]: %w\n%s\n%s" , err , outbuf . String ( ) , errbuf . String ( ) )
2019-06-22 23:05:34 +05:30
}
2019-11-10 14:12:51 +05:30
outbuf . Reset ( )
errbuf . Reset ( )
2019-06-22 23:05:34 +05:30
2022-02-11 18:17:22 +05:30
if err := gitConfigCommand ( ) . AddArguments ( "core.sparseCheckout" , "true" ) .
2022-04-01 08:25:30 +05:30
Run ( & git . RunOpts {
Dir : tmpBasePath ,
Stdout : & outbuf ,
Stderr : & errbuf ,
2022-02-11 18:17:22 +05:30
} ) ; err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "git config [core.sparseCheckout -> true ]: %v\n%s\n%s" , err , outbuf . String ( ) , errbuf . String ( ) )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "git config [core.sparsecheckout -> true]: %w\n%s\n%s" , err , outbuf . String ( ) , errbuf . String ( ) )
2019-06-22 23:05:34 +05:30
}
2019-11-10 14:12:51 +05:30
outbuf . Reset ( )
errbuf . Reset ( )
2019-06-22 23:05:34 +05:30
// Read base branch index
2022-02-11 18:17:22 +05:30
if err := git . NewCommand ( ctx , "read-tree" , "HEAD" ) .
2022-04-01 08:25:30 +05:30
Run ( & git . RunOpts {
Dir : tmpBasePath ,
Stdout : & outbuf ,
Stderr : & errbuf ,
2022-02-11 18:17:22 +05:30
} ) ; err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "git read-tree HEAD: %v\n%s\n%s" , err , outbuf . String ( ) , errbuf . String ( ) )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "Unable to read base branch in to the index: %w\n%s\n%s" , err , outbuf . String ( ) , errbuf . String ( ) )
2019-06-22 23:05:34 +05:30
}
2019-11-10 14:12:51 +05:30
outbuf . Reset ( )
errbuf . Reset ( )
2019-06-22 23:05:34 +05:30
2020-09-19 22:14:55 +05:30
sig := doer . NewGitSig ( )
committer := sig
2019-10-16 19:12:42 +05:30
// Determine if we should sign
2022-10-23 20:14:45 +05:30
var signArg git . CmdArg
2022-06-16 21:17:44 +05:30
sign , keyID , signer , _ := asymkey_service . SignMerge ( ctx , pr , doer , tmpBasePath , "HEAD" , trackingBranch )
if sign {
2022-10-23 20:14:45 +05:30
signArg = git . CmdArg ( "-S" + keyID )
2022-06-16 21:17:44 +05:30
if pr . BaseRepo . GetTrustModel ( ) == repo_model . CommitterTrustModel || pr . BaseRepo . GetTrustModel ( ) == repo_model . CollaboratorCommitterTrustModel {
committer = signer
2019-10-16 19:12:42 +05:30
}
2022-06-16 21:17:44 +05:30
} else {
2022-10-23 20:14:45 +05:30
signArg = git . CmdArg ( "--no-gpg-sign" )
2019-10-16 19:12:42 +05:30
}
commitTimeStr := time . Now ( ) . Format ( time . RFC3339 )
// Because this may call hooks we should pass in the environment
env := append ( os . Environ ( ) ,
"GIT_AUTHOR_NAME=" + sig . Name ,
"GIT_AUTHOR_EMAIL=" + sig . Email ,
"GIT_AUTHOR_DATE=" + commitTimeStr ,
2020-09-19 22:14:55 +05:30
"GIT_COMMITTER_NAME=" + committer . Name ,
"GIT_COMMITTER_EMAIL=" + committer . Email ,
2019-10-16 19:12:42 +05:30
"GIT_COMMITTER_DATE=" + commitTimeStr ,
)
2019-06-22 23:05:34 +05:30
// Merge commits.
switch mergeStyle {
2021-12-10 06:57:50 +05:30
case repo_model . MergeStyleMerge :
2022-10-23 20:14:45 +05:30
cmd := git . NewCommand ( ctx , "merge" , "--no-ff" , "--no-commit" ) . AddDynamicArguments ( trackingBranch )
2019-11-10 14:12:51 +05:30
if err := runMergeCommand ( pr , mergeStyle , cmd , tmpBasePath ) ; err != nil {
log . Error ( "Unable to merge tracking into base: %v" , err )
2020-02-10 04:39:31 +05:30
return "" , err
2019-06-22 23:05:34 +05:30
}
2022-01-20 04:56:57 +05:30
if err := commitAndSignNoAuthor ( ctx , pr , message , signArg , tmpBasePath , env ) ; err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "Unable to make final commit: %v" , err )
2020-02-10 04:39:31 +05:30
return "" , err
2019-06-22 23:05:34 +05:30
}
2021-12-10 06:57:50 +05:30
case repo_model . MergeStyleRebase :
2019-11-10 14:12:51 +05:30
fallthrough
2021-12-10 06:57:50 +05:30
case repo_model . MergeStyleRebaseUpdate :
2021-08-31 19:33:45 +05:30
fallthrough
2021-12-10 06:57:50 +05:30
case repo_model . MergeStyleRebaseMerge :
2019-06-22 23:05:34 +05:30
// Checkout head branch
2022-10-23 20:14:45 +05:30
if err := git . NewCommand ( ctx , "checkout" , "-b" ) . AddDynamicArguments ( stagingBranch , trackingBranch ) .
2022-04-01 08:25:30 +05:30
Run ( & git . RunOpts {
Dir : tmpBasePath ,
Stdout : & outbuf ,
Stderr : & errbuf ,
2022-02-11 18:17:22 +05:30
} ) ; err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "git checkout base prior to merge post staging rebase [%s:%s -> %s:%s]: %v\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "git checkout base prior to merge post staging rebase [%s:%s -> %s:%s]: %w\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2019-06-22 23:05:34 +05:30
}
2019-11-10 14:12:51 +05:30
outbuf . Reset ( )
errbuf . Reset ( )
2019-06-22 23:05:34 +05:30
// Rebase before merging
2022-10-23 20:14:45 +05:30
if err := git . NewCommand ( ctx , "rebase" ) . AddDynamicArguments ( baseBranch ) .
2022-04-01 08:25:30 +05:30
Run ( & git . RunOpts {
Dir : tmpBasePath ,
Stdout : & outbuf ,
Stderr : & errbuf ,
2022-02-11 18:17:22 +05:30
} ) ; err != nil {
2019-11-10 14:12:51 +05:30
// Rebase will leave a REBASE_HEAD file in .git if there is a conflict
if _ , statErr := os . Stat ( filepath . Join ( tmpBasePath , ".git" , "REBASE_HEAD" ) ) ; statErr == nil {
2020-04-03 21:30:41 +05:30
var commitSha string
ok := false
failingCommitPaths := [ ] string {
filepath . Join ( tmpBasePath , ".git" , "rebase-apply" , "original-commit" ) , // Git < 2.26
filepath . Join ( tmpBasePath , ".git" , "rebase-merge" , "stopped-sha" ) , // Git >= 2.26
}
for _ , failingCommitPath := range failingCommitPaths {
2021-11-15 11:32:53 +05:30
if _ , statErr := os . Stat ( failingCommitPath ) ; statErr == nil {
commitShaBytes , readErr := os . ReadFile ( failingCommitPath )
2020-04-03 21:30:41 +05:30
if readErr != nil {
// Abandon this attempt to handle the error
log . Error ( "git rebase staging on to base [%s:%s -> %s:%s]: %v\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "git rebase staging on to base [%s:%s -> %s:%s]: %w\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2020-04-03 21:30:41 +05:30
}
commitSha = strings . TrimSpace ( string ( commitShaBytes ) )
ok = true
break
}
}
if ! ok {
log . Error ( "Unable to determine failing commit sha for this rebase message. Cannot cast as models.ErrRebaseConflicts." )
2019-11-10 14:12:51 +05:30
log . Error ( "git rebase staging on to base [%s:%s -> %s:%s]: %v\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "git rebase staging on to base [%s:%s -> %s:%s]: %w\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2019-11-10 14:12:51 +05:30
}
2020-04-03 21:30:41 +05:30
log . Debug ( "RebaseConflict at %s [%s:%s -> %s:%s]: %v\n%s\n%s" , commitSha , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2020-02-10 04:39:31 +05:30
return "" , models . ErrRebaseConflicts {
2019-11-10 14:12:51 +05:30
Style : mergeStyle ,
2020-04-03 21:30:41 +05:30
CommitSHA : commitSha ,
2019-11-10 14:12:51 +05:30
StdOut : outbuf . String ( ) ,
StdErr : errbuf . String ( ) ,
Err : err ,
}
}
log . Error ( "git rebase staging on to base [%s:%s -> %s:%s]: %v\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "git rebase staging on to base [%s:%s -> %s:%s]: %w\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2019-06-22 23:05:34 +05:30
}
2019-11-10 14:12:51 +05:30
outbuf . Reset ( )
errbuf . Reset ( )
2021-08-31 19:33:45 +05:30
// not need merge, just update by rebase. so skip
2021-12-10 06:57:50 +05:30
if mergeStyle == repo_model . MergeStyleRebaseUpdate {
2021-08-31 19:33:45 +05:30
break
}
2019-06-22 23:05:34 +05:30
// Checkout base branch again
2022-10-23 20:14:45 +05:30
if err := git . NewCommand ( ctx , "checkout" ) . AddDynamicArguments ( baseBranch ) .
2022-04-01 08:25:30 +05:30
Run ( & git . RunOpts {
Dir : tmpBasePath ,
Stdout : & outbuf ,
Stderr : & errbuf ,
2022-02-11 18:17:22 +05:30
} ) ; err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "git checkout base prior to merge post staging rebase [%s:%s -> %s:%s]: %v\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "git checkout base prior to merge post staging rebase [%s:%s -> %s:%s]: %w\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2019-06-22 23:05:34 +05:30
}
2019-11-10 14:12:51 +05:30
outbuf . Reset ( )
errbuf . Reset ( )
2019-06-22 23:05:34 +05:30
2022-02-07 00:31:47 +05:30
cmd := git . NewCommand ( ctx , "merge" )
2021-12-10 06:57:50 +05:30
if mergeStyle == repo_model . MergeStyleRebase {
2019-11-10 14:12:51 +05:30
cmd . AddArguments ( "--ff-only" )
2019-10-16 19:12:42 +05:30
} else {
2019-11-10 14:12:51 +05:30
cmd . AddArguments ( "--no-ff" , "--no-commit" )
2019-06-22 23:05:34 +05:30
}
2022-10-23 20:14:45 +05:30
cmd . AddDynamicArguments ( stagingBranch )
2019-06-22 23:05:34 +05:30
2019-11-10 14:12:51 +05:30
// Prepare merge with commit
if err := runMergeCommand ( pr , mergeStyle , cmd , tmpBasePath ) ; err != nil {
log . Error ( "Unable to merge staging into base: %v" , err )
2020-02-10 04:39:31 +05:30
return "" , err
2019-11-10 14:12:51 +05:30
}
2021-12-10 06:57:50 +05:30
if mergeStyle == repo_model . MergeStyleRebaseMerge {
2022-01-20 04:56:57 +05:30
if err := commitAndSignNoAuthor ( ctx , pr , message , signArg , tmpBasePath , env ) ; err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "Unable to make final commit: %v" , err )
2020-02-10 04:39:31 +05:30
return "" , err
2019-11-10 14:12:51 +05:30
}
}
2021-12-10 06:57:50 +05:30
case repo_model . MergeStyleSquash :
2019-06-22 23:05:34 +05:30
// Merge with squash
2022-10-23 20:14:45 +05:30
cmd := git . NewCommand ( ctx , "merge" , "--squash" ) . AddDynamicArguments ( trackingBranch )
2019-11-10 14:12:51 +05:30
if err := runMergeCommand ( pr , mergeStyle , cmd , tmpBasePath ) ; err != nil {
log . Error ( "Unable to merge --squash tracking into base: %v" , err )
2020-02-10 04:39:31 +05:30
return "" , err
2019-06-22 23:05:34 +05:30
}
2019-11-10 14:12:51 +05:30
2022-11-19 13:42:33 +05:30
if err = pr . Issue . LoadPoster ( ctx ) ; err != nil {
2020-04-10 16:10:36 +05:30
log . Error ( "LoadPoster: %v" , err )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "LoadPoster: %w" , err )
2020-04-10 16:10:36 +05:30
}
2019-06-22 23:05:34 +05:30
sig := pr . Issue . Poster . NewGitSig ( )
2019-10-16 19:12:42 +05:30
if signArg == "" {
2022-10-23 20:14:45 +05:30
if err := git . NewCommand ( ctx , "commit" , git . CmdArg ( fmt . Sprintf ( "--author='%s <%s>'" , sig . Name , sig . Email ) ) , "-m" ) . AddDynamicArguments ( message ) .
2022-04-01 08:25:30 +05:30
Run ( & git . RunOpts {
Env : env ,
Dir : tmpBasePath ,
Stdout : & outbuf ,
Stderr : & errbuf ,
2022-02-11 18:17:22 +05:30
} ) ; err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "git commit [%s:%s -> %s:%s]: %v\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "git commit [%s:%s -> %s:%s]: %w\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2019-10-16 19:12:42 +05:30
}
} else {
2021-11-29 12:39:55 +05:30
if setting . Repository . PullRequest . AddCoCommitterTrailers && committer . String ( ) != sig . String ( ) {
2020-09-19 22:14:55 +05:30
// add trailer
2020-12-22 07:49:33 +05:30
message += fmt . Sprintf ( "\nCo-authored-by: %s\nCo-committed-by: %s\n" , sig . String ( ) , sig . String ( ) )
2020-09-19 22:14:55 +05:30
}
2022-10-23 20:14:45 +05:30
if err := git . NewCommand ( ctx , "commit" ) .
AddArguments ( signArg ) .
AddArguments ( git . CmdArg ( fmt . Sprintf ( "--author='%s <%s>'" , sig . Name , sig . Email ) ) ) .
AddArguments ( "-m" ) . AddDynamicArguments ( message ) .
2022-04-01 08:25:30 +05:30
Run ( & git . RunOpts {
Env : env ,
Dir : tmpBasePath ,
Stdout : & outbuf ,
Stderr : & errbuf ,
2022-02-11 18:17:22 +05:30
} ) ; err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "git commit [%s:%s -> %s:%s]: %v\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "git commit [%s:%s -> %s:%s]: %w\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2019-10-16 19:12:42 +05:30
}
2019-06-22 23:05:34 +05:30
}
2019-11-10 14:12:51 +05:30
outbuf . Reset ( )
errbuf . Reset ( )
2019-06-22 23:05:34 +05:30
default :
2020-02-10 04:39:31 +05:30
return "" , models . ErrInvalidMergeStyle { ID : pr . BaseRepo . ID , Style : mergeStyle }
2019-06-22 23:05:34 +05:30
}
// OK we should cache our current head and origin/headbranch
2022-01-20 04:56:57 +05:30
mergeHeadSHA , err := git . GetFullCommitID ( ctx , tmpBasePath , "HEAD" )
2019-06-22 23:05:34 +05:30
if err != nil {
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "Failed to get full commit id for HEAD: %w" , err )
2019-06-22 23:05:34 +05:30
}
2022-01-20 04:56:57 +05:30
mergeBaseSHA , err := git . GetFullCommitID ( ctx , tmpBasePath , "original_" + baseBranch )
2019-06-22 23:05:34 +05:30
if err != nil {
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "Failed to get full commit id for origin/%s: %w" , pr . BaseBranch , err )
2020-02-10 04:39:31 +05:30
}
2022-01-20 04:56:57 +05:30
mergeCommitID , err := git . GetFullCommitID ( ctx , tmpBasePath , baseBranch )
2020-02-10 04:39:31 +05:30
if err != nil {
2022-10-25 00:59:17 +05:30
return "" , fmt . Errorf ( "Failed to get full commit id for the new merge: %w" , err )
2019-06-22 23:05:34 +05:30
}
// Now it's questionable about where this should go - either after or before the push
// I think in the interests of data safety - failures to push to the lfs should prevent
// the merge as you can always remerge.
if setting . LFS . StartServer {
2022-01-20 04:56:57 +05:30
if err := LFSPush ( ctx , tmpBasePath , mergeHeadSHA , mergeBaseSHA , pr ) ; err != nil {
2020-02-10 04:39:31 +05:30
return "" , err
2019-06-22 23:05:34 +05:30
}
}
2021-11-24 15:19:20 +05:30
var headUser * user_model . User
2022-03-22 20:52:54 +05:30
err = pr . HeadRepo . GetOwner ( ctx )
2019-07-01 06:48:13 +05:30
if err != nil {
2021-11-24 15:19:20 +05:30
if ! user_model . IsErrUserNotExist ( err ) {
2019-10-18 16:43:31 +05:30
log . Error ( "Can't find user: %d for head repository - %v" , pr . HeadRepo . OwnerID , err )
2020-02-10 04:39:31 +05:30
return "" , err
2019-07-01 06:48:13 +05:30
}
2019-10-18 16:43:31 +05:30
log . Error ( "Can't find user: %d for head repository - defaulting to doer: %s - %v" , pr . HeadRepo . OwnerID , doer . Name , err )
2019-07-01 06:48:13 +05:30
headUser = doer
2019-10-18 16:43:31 +05:30
} else {
headUser = pr . HeadRepo . Owner
2019-07-01 06:48:13 +05:30
}
2022-05-08 22:16:32 +05:30
env = repo_module . FullPushingEnvironment (
2019-07-26 03:20:20 +05:30
headUser ,
doer ,
pr . BaseRepo ,
pr . BaseRepo . Name ,
pr . ID ,
)
2019-06-22 23:05:34 +05:30
2021-08-31 19:33:45 +05:30
var pushCmd * git . Command
2021-12-10 06:57:50 +05:30
if mergeStyle == repo_model . MergeStyleRebaseUpdate {
2022-01-10 15:02:37 +05:30
// force push the rebase result to head branch
2022-10-23 20:14:45 +05:30
pushCmd = git . NewCommand ( ctx , "push" , "-f" , "head_repo" ) . AddDynamicArguments ( stagingBranch + ":" + git . BranchPrefix + pr . HeadBranch )
2021-08-31 19:33:45 +05:30
} else {
2022-10-23 20:14:45 +05:30
pushCmd = git . NewCommand ( ctx , "push" , "origin" ) . AddDynamicArguments ( baseBranch + ":" + git . BranchPrefix + pr . BaseBranch )
2021-08-31 19:33:45 +05:30
}
2019-06-22 23:05:34 +05:30
// Push back to upstream.
2022-05-04 01:16:28 +05:30
// TODO: this cause an api call to "/api/internal/hook/post-receive/...",
// that prevents us from doint the whole merge in one db transaction
2022-04-01 08:25:30 +05:30
if err := pushCmd . Run ( & git . RunOpts {
Env : env ,
Dir : tmpBasePath ,
Stdout : & outbuf ,
Stderr : & errbuf ,
2022-02-11 18:17:22 +05:30
} ) ; err != nil {
2019-11-10 14:12:51 +05:30
if strings . Contains ( errbuf . String ( ) , "non-fast-forward" ) {
2020-03-28 09:43:18 +05:30
return "" , & git . ErrPushOutOfDate {
2019-11-10 14:12:51 +05:30
StdOut : outbuf . String ( ) ,
StdErr : errbuf . String ( ) ,
Err : err ,
}
2020-02-22 18:38:48 +05:30
} else if strings . Contains ( errbuf . String ( ) , "! [remote rejected]" ) {
2020-03-28 09:43:18 +05:30
err := & git . ErrPushRejected {
2020-02-22 18:38:48 +05:30
StdOut : outbuf . String ( ) ,
StdErr : errbuf . String ( ) ,
Err : err ,
}
err . GenerateMessage ( )
return "" , err
2019-11-10 14:12:51 +05:30
}
2020-02-10 04:39:31 +05:30
return "" , fmt . Errorf ( "git push: %s" , errbuf . String ( ) )
2019-06-22 23:05:34 +05:30
}
2019-11-10 14:12:51 +05:30
outbuf . Reset ( )
errbuf . Reset ( )
2019-06-22 23:05:34 +05:30
2020-02-10 04:39:31 +05:30
return mergeCommitID , nil
2019-06-22 23:05:34 +05:30
}
2022-10-23 20:14:45 +05:30
func commitAndSignNoAuthor ( ctx context . Context , pr * issues_model . PullRequest , message string , signArg git . CmdArg , tmpBasePath string , env [ ] string ) error {
2019-11-10 14:12:51 +05:30
var outbuf , errbuf strings . Builder
if signArg == "" {
2022-10-23 20:14:45 +05:30
if err := git . NewCommand ( ctx , "commit" , "-m" ) . AddDynamicArguments ( message ) .
2022-04-01 08:25:30 +05:30
Run ( & git . RunOpts {
Env : env ,
Dir : tmpBasePath ,
Stdout : & outbuf ,
Stderr : & errbuf ,
2022-02-11 18:17:22 +05:30
} ) ; err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "git commit [%s:%s -> %s:%s]: %v\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2022-10-25 00:59:17 +05:30
return fmt . Errorf ( "git commit [%s:%s -> %s:%s]: %w\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2019-11-10 14:12:51 +05:30
}
} else {
2022-10-23 20:14:45 +05:30
if err := git . NewCommand ( ctx , "commit" ) . AddArguments ( signArg ) . AddArguments ( "-m" ) . AddDynamicArguments ( message ) .
2022-04-01 08:25:30 +05:30
Run ( & git . RunOpts {
Env : env ,
Dir : tmpBasePath ,
Stdout : & outbuf ,
Stderr : & errbuf ,
2022-02-11 18:17:22 +05:30
} ) ; err != nil {
2019-11-10 14:12:51 +05:30
log . Error ( "git commit [%s:%s -> %s:%s]: %v\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2022-10-25 00:59:17 +05:30
return fmt . Errorf ( "git commit [%s:%s -> %s:%s]: %w\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2019-11-10 14:12:51 +05:30
}
}
return nil
}
2022-06-13 15:07:59 +05:30
func runMergeCommand ( pr * issues_model . PullRequest , mergeStyle repo_model . MergeStyle , cmd * git . Command , tmpBasePath string ) error {
2019-11-10 14:12:51 +05:30
var outbuf , errbuf strings . Builder
2022-04-01 08:25:30 +05:30
if err := cmd . Run ( & git . RunOpts {
Dir : tmpBasePath ,
Stdout : & outbuf ,
Stderr : & errbuf ,
2022-02-11 18:17:22 +05:30
} ) ; err != nil {
2019-11-10 14:12:51 +05:30
// Merge will leave a MERGE_HEAD file in the .git folder if there is a conflict
if _ , statErr := os . Stat ( filepath . Join ( tmpBasePath , ".git" , "MERGE_HEAD" ) ) ; statErr == nil {
// We have a merge conflict error
log . Debug ( "MergeConflict [%s:%s -> %s:%s]: %v\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
return models . ErrMergeConflicts {
Style : mergeStyle ,
StdOut : outbuf . String ( ) ,
StdErr : errbuf . String ( ) ,
Err : err ,
}
} else if strings . Contains ( errbuf . String ( ) , "refusing to merge unrelated histories" ) {
log . Debug ( "MergeUnrelatedHistories [%s:%s -> %s:%s]: %v\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
return models . ErrMergeUnrelatedHistories {
Style : mergeStyle ,
StdOut : outbuf . String ( ) ,
StdErr : errbuf . String ( ) ,
Err : err ,
}
}
log . Error ( "git merge [%s:%s -> %s:%s]: %v\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2022-10-25 00:59:17 +05:30
return fmt . Errorf ( "git merge [%s:%s -> %s:%s]: %w\n%s\n%s" , pr . HeadRepo . FullName ( ) , pr . HeadBranch , pr . BaseRepo . FullName ( ) , pr . BaseBranch , err , outbuf . String ( ) , errbuf . String ( ) )
2019-11-10 14:12:51 +05:30
}
return nil
}
2019-11-01 06:00:02 +05:30
var escapedSymbols = regexp . MustCompile ( ` ([*[?! \\]) ` )
2022-01-20 04:56:57 +05:30
func getDiffTree ( ctx context . Context , repoPath , baseBranch , headBranch string ) ( string , error ) {
2019-06-22 23:05:34 +05:30
getDiffTreeFromBranch := func ( repoPath , baseBranch , headBranch string ) ( string , error ) {
var outbuf , errbuf strings . Builder
// Compute the diff-tree for sparse-checkout
2022-10-23 20:14:45 +05:30
if err := git . NewCommand ( ctx , "diff-tree" , "--no-commit-id" , "--name-only" , "-r" , "-z" , "--root" ) . AddDynamicArguments ( baseBranch , headBranch ) .
2022-04-01 08:25:30 +05:30
Run ( & git . RunOpts {
Dir : repoPath ,
Stdout : & outbuf ,
Stderr : & errbuf ,
2022-02-11 18:17:22 +05:30
} ) ; err != nil {
2019-06-22 23:05:34 +05:30
return "" , fmt . Errorf ( "git diff-tree [%s base:%s head:%s]: %s" , repoPath , baseBranch , headBranch , errbuf . String ( ) )
}
return outbuf . String ( ) , nil
}
2019-11-01 06:00:02 +05:30
scanNullTerminatedStrings := func ( data [ ] byte , atEOF bool ) ( advance int , token [ ] byte , err error ) {
if atEOF && len ( data ) == 0 {
return 0 , nil , nil
}
if i := bytes . IndexByte ( data , '\x00' ) ; i >= 0 {
return i + 1 , data [ 0 : i ] , nil
}
if atEOF {
return len ( data ) , data , nil
}
return 0 , nil , nil
}
2019-06-22 23:05:34 +05:30
list , err := getDiffTreeFromBranch ( repoPath , baseBranch , headBranch )
if err != nil {
return "" , err
}
// Prefixing '/' for each entry, otherwise all files with the same name in subdirectories would be matched.
out := bytes . Buffer { }
scanner := bufio . NewScanner ( strings . NewReader ( list ) )
2019-11-01 06:00:02 +05:30
scanner . Split ( scanNullTerminatedStrings )
2019-06-22 23:05:34 +05:30
for scanner . Scan ( ) {
2019-11-01 06:00:02 +05:30
filepath := scanner . Text ( )
// escape '*', '?', '[', spaces and '!' prefix
filepath = escapedSymbols . ReplaceAllString ( filepath , ` \$1 ` )
// no necessary to escape the first '#' symbol because the first symbol is '/'
fmt . Fprintf ( & out , "/%s\n" , filepath )
2019-06-22 23:05:34 +05:30
}
2019-11-01 06:00:02 +05:30
2019-06-22 23:05:34 +05:30
return out . String ( ) , nil
}
2020-01-11 12:59:34 +05:30
// IsUserAllowedToMerge check if user is allowed to merge PR with given permissions and branch protections
2022-06-13 15:07:59 +05:30
func IsUserAllowedToMerge ( ctx context . Context , pr * issues_model . PullRequest , p access_model . Permission , user * user_model . User ) ( bool , error ) {
2020-04-14 21:59:31 +05:30
if user == nil {
return false , nil
}
2020-01-11 12:59:34 +05:30
2022-12-03 08:18:26 +05:30
err := pr . LoadProtectedBranch ( ctx )
2020-01-11 12:59:34 +05:30
if err != nil {
return false , err
}
2022-06-12 21:21:54 +05:30
if ( p . CanWrite ( unit . TypeCode ) && pr . ProtectedBranch == nil ) || ( pr . ProtectedBranch != nil && git_model . IsUserMergeWhitelisted ( ctx , pr . ProtectedBranch , user . ID , p ) ) {
2020-01-11 12:59:34 +05:30
return true , nil
}
return false , nil
}
2022-05-02 05:24:44 +05:30
// CheckPullBranchProtections checks whether the PR is ready to be merged (reviews and status checks)
2022-06-13 15:07:59 +05:30
func CheckPullBranchProtections ( ctx context . Context , pr * issues_model . PullRequest , skipProtectedFilesCheck bool ) ( err error ) {
2022-11-19 13:42:33 +05:30
if err = pr . LoadBaseRepo ( ctx ) ; err != nil {
2022-10-25 00:59:17 +05:30
return fmt . Errorf ( "LoadBaseRepo: %w" , err )
2020-03-03 04:01:55 +05:30
}
2022-12-03 08:18:26 +05:30
if err = pr . LoadProtectedBranch ( ctx ) ; err != nil {
2022-10-25 00:59:17 +05:30
return fmt . Errorf ( "LoadProtectedBranch: %w" , err )
2020-01-11 12:59:34 +05:30
}
if pr . ProtectedBranch == nil {
2020-03-03 04:01:55 +05:30
return nil
2020-01-11 12:59:34 +05:30
}
2022-01-20 04:56:57 +05:30
isPass , err := IsPullCommitStatusPass ( ctx , pr )
2020-01-11 12:59:34 +05:30
if err != nil {
return err
}
if ! isPass {
2022-03-31 20:23:08 +05:30
return models . ErrDisallowedToMerge {
2020-01-11 12:59:34 +05:30
Reason : "Not all required status checks successful" ,
}
}
2022-06-13 15:07:59 +05:30
if ! issues_model . HasEnoughApprovals ( ctx , pr . ProtectedBranch , pr ) {
2022-03-31 20:23:08 +05:30
return models . ErrDisallowedToMerge {
2020-01-11 12:59:34 +05:30
Reason : "Does not have enough approvals" ,
}
}
2022-06-13 15:07:59 +05:30
if issues_model . MergeBlockedByRejectedReview ( ctx , pr . ProtectedBranch , pr ) {
2022-03-31 20:23:08 +05:30
return models . ErrDisallowedToMerge {
2020-01-11 12:59:34 +05:30
Reason : "There are requested changes" ,
}
}
2022-06-13 15:07:59 +05:30
if issues_model . MergeBlockedByOfficialReviewRequests ( ctx , pr . ProtectedBranch , pr ) {
2022-03-31 20:23:08 +05:30
return models . ErrDisallowedToMerge {
2020-11-29 01:00:46 +05:30
Reason : "There are official review requests" ,
}
}
2020-01-11 12:59:34 +05:30
2022-06-13 15:07:59 +05:30
if issues_model . MergeBlockedByOutdatedBranch ( pr . ProtectedBranch , pr ) {
2022-03-31 20:23:08 +05:30
return models . ErrDisallowedToMerge {
2020-04-17 06:30:36 +05:30
Reason : "The head branch is behind the base branch" ,
}
}
2020-10-14 00:20:57 +05:30
if skipProtectedFilesCheck {
return nil
}
2022-06-12 21:21:54 +05:30
if pr . ProtectedBranch . MergeBlockedByProtectedFiles ( pr . ChangedProtectedFiles ) {
2022-03-31 20:23:08 +05:30
return models . ErrDisallowedToMerge {
2020-10-14 00:20:57 +05:30
Reason : "Changed protected files" ,
}
}
2020-01-11 12:59:34 +05:30
return nil
}
2021-03-04 09:11:23 +05:30
// MergedManually mark pr as merged manually
2022-06-13 15:07:59 +05:30
func MergedManually ( pr * issues_model . PullRequest , doer * user_model . User , baseGitRepo * git . Repository , commitID string ) error {
2022-05-04 21:36:23 +05:30
pullWorkingPool . CheckIn ( fmt . Sprint ( pr . ID ) )
defer pullWorkingPool . CheckOut ( fmt . Sprint ( pr . ID ) )
2022-11-13 01:48:50 +05:30
if err := db . WithTx ( db . DefaultContext , func ( ctx context . Context ) error {
2022-05-04 01:16:28 +05:30
prUnit , err := pr . BaseRepo . GetUnitCtx ( ctx , unit . TypePullRequests )
if err != nil {
return err
}
prConfig := prUnit . PullRequestsConfig ( )
2021-03-04 09:11:23 +05:30
2022-05-04 01:16:28 +05:30
// Check if merge style is correct and allowed
if ! prConfig . IsMergeStyleAllowed ( repo_model . MergeStyleManuallyMerged ) {
return models . ErrInvalidMergeStyle { ID : pr . BaseRepo . ID , Style : repo_model . MergeStyleManuallyMerged }
}
2021-03-04 09:11:23 +05:30
2022-05-04 01:16:28 +05:30
if len ( commitID ) < 40 {
2021-03-04 09:11:23 +05:30
return fmt . Errorf ( "Wrong commit ID" )
}
2022-05-04 01:16:28 +05:30
commit , err := baseGitRepo . GetCommit ( commitID )
if err != nil {
if git . IsErrNotExist ( err ) {
return fmt . Errorf ( "Wrong commit ID" )
}
return err
}
commitID = commit . ID . String ( )
2021-03-04 09:11:23 +05:30
2022-05-04 01:16:28 +05:30
ok , err := baseGitRepo . IsCommitInBranch ( commitID , pr . BaseBranch )
if err != nil {
return err
}
if ! ok {
return fmt . Errorf ( "Wrong commit ID" )
}
2021-03-04 09:11:23 +05:30
2022-05-04 01:16:28 +05:30
pr . MergedCommitID = commitID
pr . MergedUnix = timeutil . TimeStamp ( commit . Author . When . Unix ( ) )
2022-06-13 15:07:59 +05:30
pr . Status = issues_model . PullRequestStatusManuallyMerged
2022-05-04 01:16:28 +05:30
pr . Merger = doer
pr . MergerID = doer . ID
2022-06-20 15:32:49 +05:30
var merged bool
2022-05-04 01:16:28 +05:30
if merged , err = pr . SetMerged ( ctx ) ; err != nil {
return err
} else if ! merged {
return fmt . Errorf ( "SetMerged failed" )
}
return nil
} ) ; err != nil {
return err
2021-03-04 09:11:23 +05:30
}
2022-11-19 13:42:33 +05:30
notification . NotifyMergePullRequest ( baseGitRepo . Ctx , doer , pr )
2022-05-04 01:16:28 +05:30
log . Info ( "manuallyMerged[%d]: Marked as manually merged into %s/%s by commit id: %s" , pr . ID , pr . BaseRepo . Name , pr . BaseBranch , commitID )
2021-03-04 09:11:23 +05:30
return nil
}