mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Make migrations SKIP_TLS_VERIFY apply to git too (#19132)
Make SKIP_TLS_VERIFY apply to git data migrations too through adding the `-c http.sslVerify=false` option to the git clone command. Fix #18998 Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
		@@ -107,6 +107,7 @@ type CloneRepoOptions struct {
 | 
				
			|||||||
	NoCheckout    bool
 | 
						NoCheckout    bool
 | 
				
			||||||
	Depth         int
 | 
						Depth         int
 | 
				
			||||||
	Filter        string
 | 
						Filter        string
 | 
				
			||||||
 | 
						SkipTLSVerify bool
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Clone clones original repository to target path.
 | 
					// Clone clones original repository to target path.
 | 
				
			||||||
@@ -124,6 +125,9 @@ func CloneWithArgs(ctx context.Context, from, to string, args []string, opts Clo
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	cmd := NewCommandContextNoGlobals(ctx, args...).AddArguments("clone")
 | 
						cmd := NewCommandContextNoGlobals(ctx, args...).AddArguments("clone")
 | 
				
			||||||
 | 
						if opts.SkipTLSVerify {
 | 
				
			||||||
 | 
							cmd.AddArguments("-c", "http.sslVerify=false")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
	if opts.Mirror {
 | 
						if opts.Mirror {
 | 
				
			||||||
		cmd.AddArguments("--mirror")
 | 
							cmd.AddArguments("--mirror")
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -75,6 +75,7 @@ func MigrateRepositoryGitData(ctx context.Context, u *user_model.User,
 | 
				
			|||||||
		Mirror:        true,
 | 
							Mirror:        true,
 | 
				
			||||||
		Quiet:         true,
 | 
							Quiet:         true,
 | 
				
			||||||
		Timeout:       migrateTimeout,
 | 
							Timeout:       migrateTimeout,
 | 
				
			||||||
 | 
							SkipTLSVerify: setting.Migrations.SkipTLSVerify,
 | 
				
			||||||
	}); err != nil {
 | 
						}); err != nil {
 | 
				
			||||||
		return repo, fmt.Errorf("Clone: %v", err)
 | 
							return repo, fmt.Errorf("Clone: %v", err)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
@@ -92,6 +93,7 @@ func MigrateRepositoryGitData(ctx context.Context, u *user_model.User,
 | 
				
			|||||||
				Quiet:         true,
 | 
									Quiet:         true,
 | 
				
			||||||
				Timeout:       migrateTimeout,
 | 
									Timeout:       migrateTimeout,
 | 
				
			||||||
				Branch:        "master",
 | 
									Branch:        "master",
 | 
				
			||||||
 | 
									SkipTLSVerify: setting.Migrations.SkipTLSVerify,
 | 
				
			||||||
			}); err != nil {
 | 
								}); err != nil {
 | 
				
			||||||
				log.Warn("Clone wiki: %v", err)
 | 
									log.Warn("Clone wiki: %v", err)
 | 
				
			||||||
				if err := util.RemoveAll(wikiPath); err != nil {
 | 
									if err := util.RemoveAll(wikiPath); err != nil {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -22,6 +22,7 @@ import (
 | 
				
			|||||||
	"code.gitea.io/gitea/modules/log"
 | 
						"code.gitea.io/gitea/modules/log"
 | 
				
			||||||
	base "code.gitea.io/gitea/modules/migration"
 | 
						base "code.gitea.io/gitea/modules/migration"
 | 
				
			||||||
	"code.gitea.io/gitea/modules/repository"
 | 
						"code.gitea.io/gitea/modules/repository"
 | 
				
			||||||
 | 
						"code.gitea.io/gitea/modules/setting"
 | 
				
			||||||
	"code.gitea.io/gitea/modules/structs"
 | 
						"code.gitea.io/gitea/modules/structs"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	"gopkg.in/yaml.v2"
 | 
						"gopkg.in/yaml.v2"
 | 
				
			||||||
@@ -152,6 +153,7 @@ func (g *RepositoryDumper) CreateRepo(repo *base.Repository, opts base.MigrateOp
 | 
				
			|||||||
		Mirror:        true,
 | 
							Mirror:        true,
 | 
				
			||||||
		Quiet:         true,
 | 
							Quiet:         true,
 | 
				
			||||||
		Timeout:       migrateTimeout,
 | 
							Timeout:       migrateTimeout,
 | 
				
			||||||
 | 
							SkipTLSVerify: setting.Migrations.SkipTLSVerify,
 | 
				
			||||||
	})
 | 
						})
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return fmt.Errorf("Clone: %v", err)
 | 
							return fmt.Errorf("Clone: %v", err)
 | 
				
			||||||
@@ -170,6 +172,7 @@ func (g *RepositoryDumper) CreateRepo(repo *base.Repository, opts base.MigrateOp
 | 
				
			|||||||
				Quiet:         true,
 | 
									Quiet:         true,
 | 
				
			||||||
				Timeout:       migrateTimeout,
 | 
									Timeout:       migrateTimeout,
 | 
				
			||||||
				Branch:        "master",
 | 
									Branch:        "master",
 | 
				
			||||||
 | 
									SkipTLSVerify: setting.Migrations.SkipTLSVerify,
 | 
				
			||||||
			}); err != nil {
 | 
								}); err != nil {
 | 
				
			||||||
				log.Warn("Clone wiki: %v", err)
 | 
									log.Warn("Clone wiki: %v", err)
 | 
				
			||||||
				if err := os.RemoveAll(wikiPath); err != nil {
 | 
									if err := os.RemoveAll(wikiPath); err != nil {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user