2021-06-07 22:52:59 +08:00
// Copyright 2021 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 repository
import (
2021-12-08 19:08:16 +00:00
"context"
2021-06-07 22:52:59 +08:00
"errors"
2021-11-17 23:17:31 +08:00
"fmt"
2021-12-08 19:08:16 +00:00
"strings"
2021-06-07 22:52:59 +08:00
"code.gitea.io/gitea/models"
2021-12-10 09:27:50 +08:00
repo_model "code.gitea.io/gitea/models/repo"
2021-11-24 17:49:20 +08:00
user_model "code.gitea.io/gitea/models/user"
2021-06-07 22:52:59 +08:00
"code.gitea.io/gitea/modules/git"
"code.gitea.io/gitea/modules/log"
2021-10-09 01:03:04 +08:00
"code.gitea.io/gitea/modules/notification"
2021-06-07 22:52:59 +08:00
repo_module "code.gitea.io/gitea/modules/repository"
pull_service "code.gitea.io/gitea/services/pull"
)
2021-11-17 23:17:31 +08:00
// CreateNewBranch creates a new repository branch
2022-01-19 23:26:57 +00:00
func CreateNewBranch ( ctx context . Context , doer * user_model . User , repo * repo_model . Repository , oldBranchName , branchName string ) ( err error ) {
2021-11-17 23:17:31 +08:00
// Check if branch name can be used
2022-01-19 23:26:57 +00:00
if err := checkBranchName ( ctx , repo , branchName ) ; err != nil {
2021-11-17 23:17:31 +08:00
return err
}
2022-01-19 23:26:57 +00:00
if ! git . IsBranchExist ( ctx , repo . RepoPath ( ) , oldBranchName ) {
2021-11-17 23:17:31 +08:00
return models . ErrBranchDoesNotExist {
BranchName : oldBranchName ,
}
}
2022-01-19 23:26:57 +00:00
if err := git . Push ( ctx , repo . RepoPath ( ) , git . PushOptions {
2021-11-17 23:17:31 +08:00
Remote : repo . RepoPath ( ) ,
2022-05-01 03:09:59 +02:00
Branch : fmt . Sprintf ( "%s%s:%s%s" , git . BranchPrefix , oldBranchName , git . BranchPrefix , branchName ) ,
2021-11-17 23:17:31 +08:00
Env : models . PushingEnvironment ( doer , repo ) ,
} ) ; err != nil {
if git . IsErrPushOutOfDate ( err ) || git . IsErrPushRejected ( err ) {
return err
}
return fmt . Errorf ( "Push: %v" , err )
}
return nil
}
// GetBranches returns branches from the repository, skipping skip initial branches and
// returning at most limit branches, or all branches if limit is 0.
2022-01-19 23:26:57 +00:00
func GetBranches ( ctx context . Context , repo * repo_model . Repository , skip , limit int ) ( [ ] * git . Branch , int , error ) {
return git . GetBranchesByPath ( ctx , repo . RepoPath ( ) , skip , limit )
2021-11-17 23:17:31 +08:00
}
// checkBranchName validates branch name with existing repository branches
2021-12-10 09:27:50 +08:00
func checkBranchName ( ctx context . Context , repo * repo_model . Repository , name string ) error {
2022-03-29 18:12:33 +01:00
_ , err := git . WalkReferences ( ctx , repo . RepoPath ( ) , func ( _ , refName string ) error {
2021-12-08 19:08:16 +00:00
branchRefName := strings . TrimPrefix ( refName , git . BranchPrefix )
switch {
case branchRefName == name :
2021-11-17 23:17:31 +08:00
return models . ErrBranchAlreadyExists {
2021-12-08 19:08:16 +00:00
BranchName : name ,
2021-11-17 23:17:31 +08:00
}
2021-12-08 19:08:16 +00:00
// If branchRefName like a/b but we want to create a branch named a then we have a conflict
case strings . HasPrefix ( branchRefName , name + "/" ) :
2021-11-17 23:17:31 +08:00
return models . ErrBranchNameConflict {
2021-12-08 19:08:16 +00:00
BranchName : branchRefName ,
}
// Conversely if branchRefName like a but we want to create a branch named a/b then we also have a conflict
case strings . HasPrefix ( name , branchRefName + "/" ) :
return models . ErrBranchNameConflict {
BranchName : branchRefName ,
}
case refName == git . TagPrefix + name :
return models . ErrTagAlreadyExists {
TagName : name ,
2021-11-17 23:17:31 +08:00
}
}
2021-12-08 19:08:16 +00:00
return nil
} )
2021-11-17 23:17:31 +08:00
2021-12-08 19:08:16 +00:00
return err
2021-11-17 23:17:31 +08:00
}
// CreateNewBranchFromCommit creates a new repository branch
2022-01-19 23:26:57 +00:00
func CreateNewBranchFromCommit ( ctx context . Context , doer * user_model . User , repo * repo_model . Repository , commit , branchName string ) ( err error ) {
2021-11-17 23:17:31 +08:00
// Check if branch name can be used
2022-01-19 23:26:57 +00:00
if err := checkBranchName ( ctx , repo , branchName ) ; err != nil {
2021-11-17 23:17:31 +08:00
return err
}
2022-01-19 23:26:57 +00:00
if err := git . Push ( ctx , repo . RepoPath ( ) , git . PushOptions {
2021-11-17 23:17:31 +08:00
Remote : repo . RepoPath ( ) ,
Branch : fmt . Sprintf ( "%s:%s%s" , commit , git . BranchPrefix , branchName ) ,
Env : models . PushingEnvironment ( doer , repo ) ,
} ) ; err != nil {
if git . IsErrPushOutOfDate ( err ) || git . IsErrPushRejected ( err ) {
return err
}
return fmt . Errorf ( "Push: %v" , err )
}
return nil
}
2021-10-09 01:03:04 +08:00
// RenameBranch rename a branch
2021-12-10 09:27:50 +08:00
func RenameBranch ( repo * repo_model . Repository , doer * user_model . User , gitRepo * git . Repository , from , to string ) ( string , error ) {
2021-10-09 01:03:04 +08:00
if from == to {
return "target_exist" , nil
}
if gitRepo . IsBranchExist ( to ) {
return "target_exist" , nil
}
if ! gitRepo . IsBranchExist ( from ) {
return "from_not_exist" , nil
}
2021-12-10 09:27:50 +08:00
if err := models . RenameBranch ( repo , from , to , func ( isDefault bool ) error {
2021-10-09 01:03:04 +08:00
err2 := gitRepo . RenameBranch ( from , to )
if err2 != nil {
return err2
}
if isDefault {
err2 = gitRepo . SetDefaultBranch ( to )
if err2 != nil {
return err2
}
}
return nil
} ) ; err != nil {
return "" , err
}
2022-01-19 23:26:57 +00:00
refID , err := gitRepo . GetRefCommitID ( git . BranchPrefix + to )
if err != nil {
return "" , err
}
2021-10-09 01:03:04 +08:00
2021-12-02 08:28:08 +01:00
notification . NotifyDeleteRef ( doer , repo , "branch" , git . BranchPrefix + from )
2022-01-19 23:26:57 +00:00
notification . NotifyCreateRef ( doer , repo , "branch" , git . BranchPrefix + to , refID )
2021-10-09 01:03:04 +08:00
return "" , nil
}
2021-06-07 22:52:59 +08:00
// enmuerates all branch related errors
var (
ErrBranchIsDefault = errors . New ( "branch is default" )
ErrBranchIsProtected = errors . New ( "branch is protected" )
)
// DeleteBranch delete branch
2021-12-10 09:27:50 +08:00
func DeleteBranch ( doer * user_model . User , repo * repo_model . Repository , gitRepo * git . Repository , branchName string ) error {
2021-06-07 22:52:59 +08:00
if branchName == repo . DefaultBranch {
return ErrBranchIsDefault
}
2021-12-10 09:27:50 +08:00
isProtected , err := models . IsProtectedBranch ( repo . ID , branchName )
2021-06-07 22:52:59 +08:00
if err != nil {
return err
}
if isProtected {
return ErrBranchIsProtected
}
commit , err := gitRepo . GetBranchCommit ( branchName )
if err != nil {
return err
}
if err := gitRepo . DeleteBranch ( branchName , git . DeleteBranchOptions {
Force : true ,
} ) ; err != nil {
return err
}
if err := pull_service . CloseBranchPulls ( doer , repo . ID , branchName ) ; err != nil {
return err
}
// Don't return error below this
if err := PushUpdate (
& repo_module . PushUpdateOptions {
RefFullName : git . BranchPrefix + branchName ,
OldCommitID : commit . ID . String ( ) ,
NewCommitID : git . EmptySHA ,
PusherID : doer . ID ,
PusherName : doer . Name ,
RepoUserName : repo . OwnerName ,
RepoName : repo . Name ,
} ) ; err != nil {
log . Error ( "Update: %v" , err )
}
2021-12-10 09:27:50 +08:00
if err := models . AddDeletedBranch ( repo . ID , branchName , commit . ID . String ( ) , doer . ID ) ; err != nil {
2021-06-07 22:52:59 +08:00
log . Warn ( "AddDeletedBranch: %v" , err )
}
return nil
}