2019-12-13 23:21:06 +01:00
// Copyright 2019 The Gitea Authors.
// All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package pull
import (
"bufio"
"context"
"fmt"
"io"
"os"
2021-12-19 05:19:25 +01:00
"path/filepath"
2019-12-13 23:21:06 +01:00
"strings"
"code.gitea.io/gitea/models"
2022-06-13 11:37:59 +02:00
issues_model "code.gitea.io/gitea/models/issues"
2021-11-09 20:57:58 +01:00
"code.gitea.io/gitea/models/unit"
2022-10-12 07:18:26 +02:00
"code.gitea.io/gitea/modules/container"
2019-12-13 23:21:06 +01:00
"code.gitea.io/gitea/modules/git"
2021-12-19 05:19:25 +01:00
"code.gitea.io/gitea/modules/graceful"
2019-12-13 23:21:06 +01:00
"code.gitea.io/gitea/modules/log"
2021-12-19 05:19:25 +01:00
"code.gitea.io/gitea/modules/process"
2022-05-08 18:46:32 +02:00
repo_module "code.gitea.io/gitea/modules/repository"
2022-12-22 11:59:10 +01:00
"code.gitea.io/gitea/modules/setting"
2020-08-11 22:05:34 +02:00
"code.gitea.io/gitea/modules/util"
2020-10-13 20:50:57 +02:00
"github.com/gobwas/glob"
2019-12-13 23:21:06 +01:00
)
// DownloadDiffOrPatch will write the patch for the pr to the writer
2022-06-13 11:37:59 +02:00
func DownloadDiffOrPatch ( ctx context . Context , pr * issues_model . PullRequest , w io . Writer , patch , binary bool ) error {
2022-04-28 13:48:48 +02:00
if err := pr . LoadBaseRepoCtx ( ctx ) ; err != nil {
2020-04-03 15:21:41 +02:00
log . Error ( "Unable to load base repository ID %d for pr #%d [%d]" , pr . BaseRepoID , pr . Index , pr . ID )
2019-12-13 23:21:06 +01:00
return err
}
2022-01-20 00:26:57 +01:00
gitRepo , closer , err := git . RepositoryFromContextOrOpen ( ctx , pr . BaseRepo . RepoPath ( ) )
2019-12-13 23:21:06 +01:00
if err != nil {
2022-10-24 21:29:17 +02:00
return fmt . Errorf ( "OpenRepository: %w" , err )
2019-12-13 23:21:06 +01:00
}
2022-01-20 00:26:57 +01:00
defer closer . Close ( )
2021-09-27 23:09:49 +02:00
if err := gitRepo . GetDiffOrPatch ( pr . MergeBase , pr . GetGitRefName ( ) , w , patch , binary ) ; err != nil {
2020-01-12 10:36:21 +01:00
log . Error ( "Unable to get patch file from %s to %s in %s Error: %v" , pr . MergeBase , pr . HeadBranch , pr . BaseRepo . FullName ( ) , err )
2022-10-24 21:29:17 +02:00
return fmt . Errorf ( "Unable to get patch file from %s to %s in %s Error: %w" , pr . MergeBase , pr . HeadBranch , pr . BaseRepo . FullName ( ) , err )
2019-12-13 23:21:06 +01:00
}
return nil
}
var patchErrorSuffices = [ ] string {
": already exists in index" ,
": patch does not apply" ,
": already exists in working directory" ,
"unrecognized input" ,
2022-12-15 01:59:16 +01:00
": No such file or directory" ,
": does not exist in index" ,
2019-12-13 23:21:06 +01:00
}
// TestPatch will test whether a simple patch will apply
2022-06-13 11:37:59 +02:00
func TestPatch ( pr * issues_model . PullRequest ) error {
2022-01-20 00:26:57 +01:00
ctx , _ , finished := process . GetManager ( ) . AddContext ( graceful . GetManager ( ) . HammerContext ( ) , fmt . Sprintf ( "TestPatch: Repo[%d]#%d" , pr . BaseRepoID , pr . Index ) )
defer finished ( )
2019-12-13 23:21:06 +01:00
// Clone base repo.
2022-01-20 00:26:57 +01:00
tmpBasePath , err := createTemporaryRepo ( ctx , pr )
2019-12-13 23:21:06 +01:00
if err != nil {
log . Error ( "CreateTemporaryPath: %v" , err )
return err
}
defer func ( ) {
2022-05-08 18:46:32 +02:00
if err := repo_module . RemoveTemporaryPath ( tmpBasePath ) ; err != nil {
2019-12-13 23:21:06 +01:00
log . Error ( "Merge: RemoveTemporaryPath: %s" , err )
}
} ( )
2022-03-29 21:13:41 +02:00
gitRepo , err := git . OpenRepository ( ctx , tmpBasePath )
2019-12-13 23:21:06 +01:00
if err != nil {
2022-10-24 21:29:17 +02:00
return fmt . Errorf ( "OpenRepository: %w" , err )
2019-12-13 23:21:06 +01:00
}
defer gitRepo . Close ( )
2020-10-13 20:50:57 +02:00
// 1. update merge base
2022-04-01 04:55:30 +02:00
pr . MergeBase , _ , err = git . NewCommand ( ctx , "merge-base" , "--" , "base" , "tracking" ) . RunStdString ( & git . RunOpts { Dir : tmpBasePath } )
2019-12-13 23:21:06 +01:00
if err != nil {
var err2 error
pr . MergeBase , err2 = gitRepo . GetRefCommitID ( git . BranchPrefix + "base" )
if err2 != nil {
2022-10-24 21:29:17 +02:00
return fmt . Errorf ( "GetMergeBase: %v and can't find commit ID for base: %w" , err , err2 )
2019-12-13 23:21:06 +01:00
}
}
pr . MergeBase = strings . TrimSpace ( pr . MergeBase )
2022-07-13 10:22:51 +02:00
if pr . HeadCommitID , err = gitRepo . GetRefCommitID ( git . BranchPrefix + "tracking" ) ; err != nil {
return fmt . Errorf ( "GetBranchCommitID: can't find commit ID for head: %w" , err )
}
if pr . HeadCommitID == pr . MergeBase {
pr . Status = issues_model . PullRequestStatusAncestor
return nil
}
2020-10-13 20:50:57 +02:00
// 2. Check for conflicts
2022-06-13 11:37:59 +02:00
if conflicts , err := checkConflicts ( ctx , pr , gitRepo , tmpBasePath ) ; err != nil || conflicts || pr . Status == issues_model . PullRequestStatusEmpty {
2020-10-13 20:50:57 +02:00
return err
}
// 3. Check for protected files changes
if err = checkPullFilesProtection ( pr , gitRepo ) ; err != nil {
2022-10-24 21:29:17 +02:00
return fmt . Errorf ( "pr.CheckPullFilesProtection(): %w" , err )
2020-10-13 20:50:57 +02:00
}
if len ( pr . ChangedProtectedFiles ) > 0 {
log . Trace ( "Found %d protected files changed" , len ( pr . ChangedProtectedFiles ) )
}
2022-06-13 11:37:59 +02:00
pr . Status = issues_model . PullRequestStatusMergeable
2020-10-13 20:50:57 +02:00
return nil
}
2021-12-19 05:19:25 +01:00
type errMergeConflict struct {
filename string
}
func ( e * errMergeConflict ) Error ( ) string {
return fmt . Sprintf ( "conflict detected at: %s" , e . filename )
}
func attemptMerge ( ctx context . Context , file * unmergedFile , tmpBasePath string , gitRepo * git . Repository ) error {
2022-07-29 01:19:55 +02:00
log . Trace ( "Attempt to merge:\n%v" , file )
2021-12-19 05:19:25 +01:00
switch {
case file . stage1 != nil && ( file . stage2 == nil || file . stage3 == nil ) :
// 1. Deleted in one or both:
//
// Conflict <==> the stage1 !SameAs to the undeleted one
if ( file . stage2 != nil && ! file . stage1 . SameAs ( file . stage2 ) ) || ( file . stage3 != nil && ! file . stage1 . SameAs ( file . stage3 ) ) {
// Conflict!
return & errMergeConflict { file . stage1 . path }
}
// Not a genuine conflict and we can simply remove the file from the index
return gitRepo . RemoveFilesFromIndex ( file . stage1 . path )
case file . stage1 == nil && file . stage2 != nil && ( file . stage3 == nil || file . stage2 . SameAs ( file . stage3 ) ) :
// 2. Added in ours but not in theirs or identical in both
//
// Not a genuine conflict just add to the index
if err := gitRepo . AddObjectToIndex ( file . stage2 . mode , git . MustIDFromString ( file . stage2 . sha ) , file . stage2 . path ) ; err != nil {
return err
}
return nil
case file . stage1 == nil && file . stage2 != nil && file . stage3 != nil && file . stage2 . sha == file . stage3 . sha && file . stage2 . mode != file . stage3 . mode :
// 3. Added in both with the same sha but the modes are different
//
// Conflict! (Not sure that this can actually happen but we should handle)
return & errMergeConflict { file . stage2 . path }
case file . stage1 == nil && file . stage2 == nil && file . stage3 != nil :
// 4. Added in theirs but not ours:
//
// Not a genuine conflict just add to the index
return gitRepo . AddObjectToIndex ( file . stage3 . mode , git . MustIDFromString ( file . stage3 . sha ) , file . stage3 . path )
case file . stage1 == nil :
// 5. Created by new in both
//
// Conflict!
return & errMergeConflict { file . stage2 . path }
case file . stage2 != nil && file . stage3 != nil :
// 5. Modified in both - we should try to merge in the changes but first:
//
if file . stage2 . mode == "120000" || file . stage3 . mode == "120000" {
// 5a. Conflicting symbolic link change
return & errMergeConflict { file . stage2 . path }
}
if file . stage2 . mode == "160000" || file . stage3 . mode == "160000" {
// 5b. Conflicting submodule change
return & errMergeConflict { file . stage2 . path }
}
if file . stage2 . mode != file . stage3 . mode {
// 5c. Conflicting mode change
return & errMergeConflict { file . stage2 . path }
}
// Need to get the objects from the object db to attempt to merge
2022-10-23 16:44:45 +02:00
root , _ , err := git . NewCommand ( ctx , "unpack-file" ) . AddDynamicArguments ( file . stage1 . sha ) . RunStdString ( & git . RunOpts { Dir : tmpBasePath } )
2021-12-19 05:19:25 +01:00
if err != nil {
return fmt . Errorf ( "unable to get root object: %s at path: %s for merging. Error: %w" , file . stage1 . sha , file . stage1 . path , err )
}
root = strings . TrimSpace ( root )
defer func ( ) {
_ = util . Remove ( filepath . Join ( tmpBasePath , root ) )
} ( )
2022-10-23 16:44:45 +02:00
base , _ , err := git . NewCommand ( ctx , "unpack-file" ) . AddDynamicArguments ( file . stage2 . sha ) . RunStdString ( & git . RunOpts { Dir : tmpBasePath } )
2021-12-19 05:19:25 +01:00
if err != nil {
return fmt . Errorf ( "unable to get base object: %s at path: %s for merging. Error: %w" , file . stage2 . sha , file . stage2 . path , err )
}
base = strings . TrimSpace ( filepath . Join ( tmpBasePath , base ) )
defer func ( ) {
_ = util . Remove ( base )
} ( )
2022-10-23 16:44:45 +02:00
head , _ , err := git . NewCommand ( ctx , "unpack-file" ) . AddDynamicArguments ( file . stage3 . sha ) . RunStdString ( & git . RunOpts { Dir : tmpBasePath } )
2021-12-19 05:19:25 +01:00
if err != nil {
return fmt . Errorf ( "unable to get head object:%s at path: %s for merging. Error: %w" , file . stage3 . sha , file . stage3 . path , err )
}
head = strings . TrimSpace ( head )
defer func ( ) {
_ = util . Remove ( filepath . Join ( tmpBasePath , head ) )
} ( )
// now git merge-file annoyingly takes a different order to the merge-tree ...
2022-10-23 16:44:45 +02:00
_ , _ , conflictErr := git . NewCommand ( ctx , "merge-file" ) . AddDynamicArguments ( base , root , head ) . RunStdString ( & git . RunOpts { Dir : tmpBasePath } )
2021-12-19 05:19:25 +01:00
if conflictErr != nil {
return & errMergeConflict { file . stage2 . path }
}
// base now contains the merged data
2022-10-23 16:44:45 +02:00
hash , _ , err := git . NewCommand ( ctx , "hash-object" , "-w" , "--path" ) . AddDynamicArguments ( file . stage2 . path , base ) . RunStdString ( & git . RunOpts { Dir : tmpBasePath } )
2021-12-19 05:19:25 +01:00
if err != nil {
return err
}
hash = strings . TrimSpace ( hash )
return gitRepo . AddObjectToIndex ( file . stage2 . mode , git . MustIDFromString ( hash ) , file . stage2 . path )
default :
if file . stage1 != nil {
return & errMergeConflict { file . stage1 . path }
} else if file . stage2 != nil {
return & errMergeConflict { file . stage2 . path }
} else if file . stage3 != nil {
return & errMergeConflict { file . stage3 . path }
}
}
return nil
}
2022-02-09 21:28:55 +01:00
// AttemptThreeWayMerge will attempt to three way merge using git read-tree and then follow the git merge-one-file algorithm to attempt to resolve basic conflicts
func AttemptThreeWayMerge ( ctx context . Context , gitPath string , gitRepo * git . Repository , base , ours , theirs , description string ) ( bool , [ ] string , error ) {
ctx , cancel := context . WithCancel ( ctx )
defer cancel ( )
2021-12-19 05:19:25 +01:00
// First we use read-tree to do a simple three-way merge
2022-10-23 16:44:45 +02:00
if _ , _ , err := git . NewCommand ( ctx , "read-tree" , "-m" ) . AddDynamicArguments ( base , ours , theirs ) . RunStdString ( & git . RunOpts { Dir : gitPath } ) ; err != nil {
2021-12-19 05:19:25 +01:00
log . Error ( "Unable to run read-tree -m! Error: %v" , err )
2022-10-24 21:29:17 +02:00
return false , nil , fmt . Errorf ( "unable to run read-tree -m! Error: %w" , err )
2021-12-19 05:19:25 +01:00
}
// Then we use git ls-files -u to list the unmerged files and collate the triples in unmergedfiles
unmerged := make ( chan * unmergedFile )
2022-02-09 21:28:55 +01:00
go unmergedFiles ( ctx , gitPath , unmerged )
2021-12-19 05:19:25 +01:00
defer func ( ) {
cancel ( )
for range unmerged {
// empty the unmerged channel
}
} ( )
numberOfConflicts := 0
conflict := false
2022-02-09 21:28:55 +01:00
conflictedFiles := make ( [ ] string , 0 , 5 )
2021-12-19 05:19:25 +01:00
for file := range unmerged {
if file == nil {
break
}
if file . err != nil {
cancel ( )
2022-02-09 21:28:55 +01:00
return false , nil , file . err
2021-12-19 05:19:25 +01:00
}
// OK now we have the unmerged file triplet attempt to merge it
2022-02-09 21:28:55 +01:00
if err := attemptMerge ( ctx , file , gitPath , gitRepo ) ; err != nil {
2021-12-19 05:19:25 +01:00
if conflictErr , ok := err . ( * errMergeConflict ) ; ok {
2022-02-09 21:28:55 +01:00
log . Trace ( "Conflict: %s in %s" , conflictErr . filename , description )
2021-12-19 05:19:25 +01:00
conflict = true
if numberOfConflicts < 10 {
2022-02-09 21:28:55 +01:00
conflictedFiles = append ( conflictedFiles , conflictErr . filename )
2021-12-19 05:19:25 +01:00
}
numberOfConflicts ++
continue
}
2022-02-09 21:28:55 +01:00
return false , nil , err
2021-12-19 05:19:25 +01:00
}
}
2022-02-09 21:28:55 +01:00
return conflict , conflictedFiles , nil
}
2022-06-13 11:37:59 +02:00
func checkConflicts ( ctx context . Context , pr * issues_model . PullRequest , gitRepo * git . Repository , tmpBasePath string ) ( bool , error ) {
2022-03-29 18:42:34 +02:00
// 1. checkConflicts resets the conflict status - therefore - reset the conflict status
pr . ConflictedFiles = nil
// 2. AttemptThreeWayMerge first - this is much quicker than plain patch to base
2022-02-09 21:28:55 +01:00
description := fmt . Sprintf ( "PR[%d] %s/%s#%d" , pr . ID , pr . BaseRepo . OwnerName , pr . BaseRepo . Name , pr . Index )
2022-12-22 11:59:10 +01:00
conflict , conflictFiles , err := AttemptThreeWayMerge ( ctx ,
2022-02-09 21:28:55 +01:00
tmpBasePath , gitRepo , pr . MergeBase , "base" , "tracking" , description )
if err != nil {
return false , err
}
2021-12-19 05:19:25 +01:00
if ! conflict {
2022-12-22 11:59:10 +01:00
// No conflicts detected so we need to check if the patch is empty...
// a. Write the newly merged tree and check the new tree-hash
2022-04-01 04:55:30 +02:00
var treeHash string
treeHash , _ , err = git . NewCommand ( ctx , "write-tree" ) . RunStdString ( & git . RunOpts { Dir : tmpBasePath } )
2021-12-19 05:19:25 +01:00
if err != nil {
2022-07-29 01:19:55 +02:00
lsfiles , _ , _ := git . NewCommand ( ctx , "ls-files" , "-u" ) . RunStdString ( & git . RunOpts { Dir : tmpBasePath } )
return false , fmt . Errorf ( "unable to write unconflicted tree: %w\n`git ls-files -u`:\n%s" , err , lsfiles )
2021-12-19 05:19:25 +01:00
}
treeHash = strings . TrimSpace ( treeHash )
baseTree , err := gitRepo . GetTree ( "base" )
if err != nil {
return false , err
}
2022-12-22 11:59:10 +01:00
// b. compare the new tree-hash with the base tree hash
2021-12-19 05:19:25 +01:00
if treeHash == baseTree . ID . String ( ) {
log . Debug ( "PullRequest[%d]: Patch is empty - ignoring" , pr . ID )
2022-06-13 11:37:59 +02:00
pr . Status = issues_model . PullRequestStatusEmpty
2021-12-19 05:19:25 +01:00
}
return false , nil
}
2022-12-22 11:59:10 +01:00
// 3. OK the three-way merge method has detected conflicts
// 3a. Are still testing with GitApply? If not set the conflict status and move on
if ! setting . Repository . PullRequest . TestConflictingPatchesWithGitApply {
pr . Status = issues_model . PullRequestStatusConflict
pr . ConflictedFiles = conflictFiles
log . Trace ( "Found %d files conflicted: %v" , len ( pr . ConflictedFiles ) , pr . ConflictedFiles )
return true , nil
}
2021-12-19 05:19:25 +01:00
2022-12-22 11:59:10 +01:00
// 3b. Create a plain patch from head to base
2021-09-22 07:38:34 +02:00
tmpPatchFile , err := os . CreateTemp ( "" , "patch" )
2019-12-13 23:21:06 +01:00
if err != nil {
log . Error ( "Unable to create temporary patch file! Error: %v" , err )
2022-10-24 21:29:17 +02:00
return false , fmt . Errorf ( "unable to create temporary patch file! Error: %w" , err )
2019-12-13 23:21:06 +01:00
}
defer func ( ) {
2020-08-11 22:05:34 +02:00
_ = util . Remove ( tmpPatchFile . Name ( ) )
2019-12-13 23:21:06 +01:00
} ( )
2021-09-27 23:09:49 +02:00
if err := gitRepo . GetDiffBinary ( pr . MergeBase , "tracking" , tmpPatchFile ) ; err != nil {
2019-12-13 23:21:06 +01:00
tmpPatchFile . Close ( )
2020-01-12 10:36:21 +01:00
log . Error ( "Unable to get patch file from %s to %s in %s Error: %v" , pr . MergeBase , pr . HeadBranch , pr . BaseRepo . FullName ( ) , err )
2022-10-24 21:29:17 +02:00
return false , fmt . Errorf ( "unable to get patch file from %s to %s in %s Error: %w" , pr . MergeBase , pr . HeadBranch , pr . BaseRepo . FullName ( ) , err )
2019-12-13 23:21:06 +01:00
}
stat , err := tmpPatchFile . Stat ( )
if err != nil {
tmpPatchFile . Close ( )
2022-10-24 21:29:17 +02:00
return false , fmt . Errorf ( "unable to stat patch file: %w" , err )
2019-12-13 23:21:06 +01:00
}
patchPath := tmpPatchFile . Name ( )
tmpPatchFile . Close ( )
2022-12-22 11:59:10 +01:00
// 3c. if the size of that patch is 0 - there can be no conflicts!
2019-12-13 23:21:06 +01:00
if stat . Size ( ) == 0 {
2022-12-22 11:59:10 +01:00
log . Critical ( "git-apply--check patch checker found empty PR when read-tree found conflicts in PR#%d[%d] in %#-v" , pr . Index , pr . ID , pr . BaseRepo )
2019-12-13 23:21:06 +01:00
log . Debug ( "PullRequest[%d]: Patch is empty - ignoring" , pr . ID )
2022-06-13 11:37:59 +02:00
pr . Status = issues_model . PullRequestStatusEmpty
2020-10-13 20:50:57 +02:00
return false , nil
2019-12-13 23:21:06 +01:00
}
log . Trace ( "PullRequest[%d].testPatch (patchPath): %s" , pr . ID , patchPath )
2022-03-29 18:42:34 +02:00
// 4. Read the base branch in to the index of the temporary repository
2022-04-01 04:55:30 +02:00
_ , _ , err = git . NewCommand ( gitRepo . Ctx , "read-tree" , "base" ) . RunStdString ( & git . RunOpts { Dir : tmpBasePath } )
2019-12-13 23:21:06 +01:00
if err != nil {
2022-10-24 21:29:17 +02:00
return false , fmt . Errorf ( "git read-tree %s: %w" , pr . BaseBranch , err )
2019-12-13 23:21:06 +01:00
}
2022-03-29 18:42:34 +02:00
// 5. Now get the pull request configuration to check if we need to ignore whitespace
2021-11-09 20:57:58 +01:00
prUnit , err := pr . BaseRepo . GetUnit ( unit . TypePullRequests )
2019-12-13 23:21:06 +01:00
if err != nil {
2020-10-13 20:50:57 +02:00
return false , err
2019-12-13 23:21:06 +01:00
}
prConfig := prUnit . PullRequestsConfig ( )
2022-03-29 18:42:34 +02:00
// 6. Prepare the arguments to apply the patch against the index
2022-10-23 16:44:45 +02:00
args := [ ] git . CmdArg { "apply" , "--check" , "--cached" }
2019-12-13 23:21:06 +01:00
if prConfig . IgnoreWhitespaceConflicts {
args = append ( args , "--ignore-whitespace" )
}
2022-02-02 05:46:10 +01:00
is3way := false
2021-12-19 05:19:25 +01:00
if git . CheckGitVersionAtLeast ( "2.32.0" ) == nil {
args = append ( args , "--3way" )
2022-02-02 05:46:10 +01:00
is3way = true
2021-12-19 05:19:25 +01:00
}
2022-10-23 16:44:45 +02:00
args = append ( args , git . CmdArgCheck ( patchPath ) )
2019-12-13 23:21:06 +01:00
2022-03-29 18:42:34 +02:00
// 7. Prep the pipe:
2020-10-13 20:50:57 +02:00
// - Here we could do the equivalent of:
// `git apply --check --cached patch_file > conflicts`
// Then iterate through the conflicts. However, that means storing all the conflicts
// in memory - which is very wasteful.
// - alternatively we can do the equivalent of:
// `git apply --check ... | grep ...`
// meaning we don't store all of the conflicts unnecessarily.
2019-12-13 23:21:06 +01:00
stderrReader , stderrWriter , err := os . Pipe ( )
if err != nil {
log . Error ( "Unable to open stderr pipe: %v" , err )
2022-10-24 21:29:17 +02:00
return false , fmt . Errorf ( "unable to open stderr pipe: %w" , err )
2019-12-13 23:21:06 +01:00
}
defer func ( ) {
_ = stderrReader . Close ( )
_ = stderrWriter . Close ( )
} ( )
2020-10-13 20:50:57 +02:00
2022-03-29 18:42:34 +02:00
// 8. Run the check command
2021-12-19 05:19:25 +01:00
conflict = false
2022-02-06 20:01:47 +01:00
err = git . NewCommand ( gitRepo . Ctx , args ... ) .
2022-04-01 04:55:30 +02:00
Run ( & git . RunOpts {
Dir : tmpBasePath ,
Stderr : stderrWriter ,
2022-02-11 13:47:22 +01:00
PipelineFunc : func ( ctx context . Context , cancel context . CancelFunc ) error {
2020-10-13 20:50:57 +02:00
// Close the writer end of the pipe to begin processing
2019-12-13 23:21:06 +01:00
_ = stderrWriter . Close ( )
2020-10-13 20:50:57 +02:00
defer func ( ) {
// Close the reader on return to terminate the git command if necessary
_ = stderrReader . Close ( )
} ( )
2019-12-13 23:21:06 +01:00
const prefix = "error: patch failed:"
const errorPrefix = "error: "
2022-02-02 05:46:10 +01:00
const threewayFailed = "Failed to perform three-way merge..."
const appliedPatchPrefix = "Applied patch to '"
const withConflicts = "' with conflicts."
2020-10-13 20:50:57 +02:00
2022-10-12 07:18:26 +02:00
conflicts := make ( container . Set [ string ] )
2019-12-13 23:21:06 +01:00
2020-10-13 20:50:57 +02:00
// Now scan the output from the command
2019-12-13 23:21:06 +01:00
scanner := bufio . NewScanner ( stderrReader )
for scanner . Scan ( ) {
line := scanner . Text ( )
2022-12-15 01:59:16 +01:00
log . Trace ( "PullRequest[%d].testPatch: stderr: %s" , pr . ID , line )
2019-12-13 23:21:06 +01:00
if strings . HasPrefix ( line , prefix ) {
conflict = true
filepath := strings . TrimSpace ( strings . Split ( line [ len ( prefix ) : ] , ":" ) [ 0 ] )
2022-10-12 07:18:26 +02:00
conflicts . Add ( filepath )
2022-02-02 05:46:10 +01:00
} else if is3way && line == threewayFailed {
conflict = true
2019-12-13 23:21:06 +01:00
} else if strings . HasPrefix ( line , errorPrefix ) {
conflict = true
for _ , suffix := range patchErrorSuffices {
if strings . HasSuffix ( line , suffix ) {
filepath := strings . TrimSpace ( strings . TrimSuffix ( line [ len ( errorPrefix ) : ] , suffix ) )
if filepath != "" {
2022-10-12 07:18:26 +02:00
conflicts . Add ( filepath )
2019-12-13 23:21:06 +01:00
}
break
}
}
2022-02-02 05:46:10 +01:00
} else if is3way && strings . HasPrefix ( line , appliedPatchPrefix ) && strings . HasSuffix ( line , withConflicts ) {
conflict = true
filepath := strings . TrimPrefix ( strings . TrimSuffix ( line , withConflicts ) , appliedPatchPrefix )
if filepath != "" {
2022-10-12 07:18:26 +02:00
conflicts . Add ( filepath )
2022-02-02 05:46:10 +01:00
}
2019-12-13 23:21:06 +01:00
}
// only list 10 conflicted files
2022-10-12 07:18:26 +02:00
if len ( conflicts ) >= 10 {
2019-12-13 23:21:06 +01:00
break
}
}
2020-10-13 20:50:57 +02:00
2022-10-12 07:18:26 +02:00
if len ( conflicts ) > 0 {
pr . ConflictedFiles = make ( [ ] string , 0 , len ( conflicts ) )
for key := range conflicts {
2019-12-13 23:21:06 +01:00
pr . ConflictedFiles = append ( pr . ConflictedFiles , key )
}
}
2020-10-13 20:50:57 +02:00
2020-01-15 09:32:57 +01:00
return nil
2022-02-11 13:47:22 +01:00
} ,
} )
2019-12-13 23:21:06 +01:00
2022-04-21 23:55:45 +02:00
// 9. Check if the found conflictedfiles is non-zero, "err" could be non-nil, so we should ignore it if we found conflicts.
// Note: `"err" could be non-nil` is due that if enable 3-way merge, it doesn't return any error on found conflicts.
if len ( pr . ConflictedFiles ) > 0 {
2019-12-13 23:21:06 +01:00
if conflict {
2022-06-13 11:37:59 +02:00
pr . Status = issues_model . PullRequestStatusConflict
2019-12-13 23:21:06 +01:00
log . Trace ( "Found %d files conflicted: %v" , len ( pr . ConflictedFiles ) , pr . ConflictedFiles )
2020-10-13 20:50:57 +02:00
return true , nil
2019-12-13 23:21:06 +01:00
}
2022-04-21 23:55:45 +02:00
} else if err != nil {
2022-10-24 21:29:17 +02:00
return false , fmt . Errorf ( "git apply --check: %w" , err )
2019-12-13 23:21:06 +01:00
}
2022-12-22 11:59:10 +01:00
log . Critical ( "git-apply--check patch checker found no conflicts when read-tree found conflicts in PR#%d[%d] in %#-v" , pr . Index , pr . ID , pr . BaseRepo )
2020-10-13 20:50:57 +02:00
return false , nil
}
// CheckFileProtection check file Protection
2022-01-20 00:26:57 +01:00
func CheckFileProtection ( repo * git . Repository , oldCommitID , newCommitID string , patterns [ ] glob . Glob , limit int , env [ ] string ) ( [ ] string , error ) {
2020-10-13 20:50:57 +02:00
if len ( patterns ) == 0 {
return nil , nil
}
2022-01-20 00:26:57 +01:00
affectedFiles , err := git . GetAffectedFiles ( repo , oldCommitID , newCommitID , env )
2020-10-13 20:50:57 +02:00
if err != nil {
return nil , err
}
changedProtectedFiles := make ( [ ] string , 0 , limit )
2021-09-11 16:21:17 +02:00
for _ , affectedFile := range affectedFiles {
lpath := strings . ToLower ( affectedFile )
for _ , pat := range patterns {
if pat . Match ( lpath ) {
changedProtectedFiles = append ( changedProtectedFiles , lpath )
break
}
}
if len ( changedProtectedFiles ) >= limit {
break
}
}
if len ( changedProtectedFiles ) > 0 {
err = models . ErrFilePathProtected {
Path : changedProtectedFiles [ 0 ] ,
}
2020-10-13 20:50:57 +02:00
}
return changedProtectedFiles , err
}
2021-09-11 16:21:17 +02:00
// CheckUnprotectedFiles check if the commit only touches unprotected files
2022-01-20 00:26:57 +01:00
func CheckUnprotectedFiles ( repo * git . Repository , oldCommitID , newCommitID string , patterns [ ] glob . Glob , env [ ] string ) ( bool , error ) {
2021-09-11 16:21:17 +02:00
if len ( patterns ) == 0 {
return false , nil
}
2022-01-20 00:26:57 +01:00
affectedFiles , err := git . GetAffectedFiles ( repo , oldCommitID , newCommitID , env )
2021-09-11 16:21:17 +02:00
if err != nil {
return false , err
}
for _ , affectedFile := range affectedFiles {
lpath := strings . ToLower ( affectedFile )
unprotected := false
for _ , pat := range patterns {
if pat . Match ( lpath ) {
unprotected = true
break
}
}
if ! unprotected {
return false , nil
}
}
return true , nil
}
2020-10-13 20:50:57 +02:00
// checkPullFilesProtection check if pr changed protected files and save results
2022-06-13 11:37:59 +02:00
func checkPullFilesProtection ( pr * issues_model . PullRequest , gitRepo * git . Repository ) error {
if pr . Status == issues_model . PullRequestStatusEmpty {
2022-03-29 18:42:34 +02:00
pr . ChangedProtectedFiles = nil
return nil
}
2020-10-13 20:50:57 +02:00
if err := pr . LoadProtectedBranch ( ) ; err != nil {
return err
}
if pr . ProtectedBranch == nil {
pr . ChangedProtectedFiles = nil
return nil
}
var err error
2022-01-20 00:26:57 +01:00
pr . ChangedProtectedFiles , err = CheckFileProtection ( gitRepo , pr . MergeBase , "tracking" , pr . ProtectedBranch . GetProtectedFilePatterns ( ) , 10 , os . Environ ( ) )
2020-10-13 20:50:57 +02:00
if err != nil && ! models . IsErrFilePathProtected ( err ) {
return err
}
2019-12-13 23:21:06 +01:00
return nil
}