2017-02-21 18:02:10 +03:00
// Copyright 2016 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 models
import (
"fmt"
"time"
2017-09-14 11:16:22 +03:00
"code.gitea.io/gitea/modules/base"
"code.gitea.io/gitea/modules/log"
2017-10-26 03:49:16 +03:00
"code.gitea.io/gitea/modules/setting"
2017-09-14 11:16:22 +03:00
"code.gitea.io/gitea/modules/util"
"github.com/Unknwon/com"
2017-02-21 18:02:10 +03:00
)
const (
2017-02-27 04:22:15 +03:00
// ProtectedBranchRepoID protected Repo ID
2017-02-21 18:02:10 +03:00
ProtectedBranchRepoID = "GITEA_REPO_ID"
)
// ProtectedBranch struct
type ProtectedBranch struct {
2017-09-14 11:16:22 +03:00
ID int64 ` xorm:"pk autoincr" `
RepoID int64 ` xorm:"UNIQUE(s)" `
BranchName string ` xorm:"UNIQUE(s)" `
2017-09-20 17:52:23 +03:00
CanPush bool ` xorm:"NOT NULL DEFAULT false" `
2017-09-14 11:16:22 +03:00
EnableWhitelist bool
2017-12-11 07:37:04 +03:00
WhitelistUserIDs [ ] int64 ` xorm:"JSON TEXT" `
WhitelistTeamIDs [ ] int64 ` xorm:"JSON TEXT" `
CreatedUnix util . TimeStamp ` xorm:"created" `
UpdatedUnix util . TimeStamp ` xorm:"updated" `
2017-09-14 11:16:22 +03:00
}
// IsProtected returns if the branch is protected
func ( protectBranch * ProtectedBranch ) IsProtected ( ) bool {
return protectBranch . ID > 0
}
// CanUserPush returns if some user could push to this protected branch
func ( protectBranch * ProtectedBranch ) CanUserPush ( userID int64 ) bool {
if ! protectBranch . EnableWhitelist {
return false
}
if base . Int64sContains ( protectBranch . WhitelistUserIDs , userID ) {
return true
}
if len ( protectBranch . WhitelistTeamIDs ) == 0 {
return false
}
in , err := IsUserInTeams ( userID , protectBranch . WhitelistTeamIDs )
if err != nil {
log . Error ( 1 , "IsUserInTeams:" , err )
return false
}
return in
2017-02-21 18:02:10 +03:00
}
// GetProtectedBranchByRepoID getting protected branch by repo ID
func GetProtectedBranchByRepoID ( RepoID int64 ) ( [ ] * ProtectedBranch , error ) {
protectedBranches := make ( [ ] * ProtectedBranch , 0 )
return protectedBranches , x . Where ( "repo_id = ?" , RepoID ) . Desc ( "updated_unix" ) . Find ( & protectedBranches )
}
// GetProtectedBranchBy getting protected branch by ID/Name
func GetProtectedBranchBy ( repoID int64 , BranchName string ) ( * ProtectedBranch , error ) {
2018-02-23 05:14:15 +03:00
rel := & ProtectedBranch { RepoID : repoID , BranchName : BranchName }
2017-02-21 18:02:10 +03:00
has , err := x . Get ( rel )
if err != nil {
return nil , err
}
if ! has {
return nil , nil
}
return rel , nil
}
2017-09-14 11:16:22 +03:00
// GetProtectedBranchByID getting protected branch by ID
func GetProtectedBranchByID ( id int64 ) ( * ProtectedBranch , error ) {
rel := & ProtectedBranch { ID : id }
has , err := x . Get ( rel )
if err != nil {
return nil , err
}
if ! has {
return nil , nil
}
return rel , nil
}
// UpdateProtectBranch saves branch protection options of repository.
// If ID is 0, it creates a new record. Otherwise, updates existing record.
// This function also performs check if whitelist user and team's IDs have been changed
// to avoid unnecessary whitelist delete and regenerate.
func UpdateProtectBranch ( repo * Repository , protectBranch * ProtectedBranch , whitelistUserIDs , whitelistTeamIDs [ ] int64 ) ( err error ) {
if err = repo . GetOwner ( ) ; err != nil {
return fmt . Errorf ( "GetOwner: %v" , err )
}
hasUsersChanged := ! util . IsSliceInt64Eq ( protectBranch . WhitelistUserIDs , whitelistUserIDs )
if hasUsersChanged {
protectBranch . WhitelistUserIDs = make ( [ ] int64 , 0 , len ( whitelistUserIDs ) )
for _ , userID := range whitelistUserIDs {
has , err := hasAccess ( x , userID , repo , AccessModeWrite )
if err != nil {
return fmt . Errorf ( "HasAccess [user_id: %d, repo_id: %d]: %v" , userID , protectBranch . RepoID , err )
} else if ! has {
continue // Drop invalid user ID
}
protectBranch . WhitelistUserIDs = append ( protectBranch . WhitelistUserIDs , userID )
}
}
// if the repo is in an orgniziation
hasTeamsChanged := ! util . IsSliceInt64Eq ( protectBranch . WhitelistTeamIDs , whitelistTeamIDs )
if hasTeamsChanged {
teams , err := GetTeamsWithAccessToRepo ( repo . OwnerID , repo . ID , AccessModeWrite )
if err != nil {
return fmt . Errorf ( "GetTeamsWithAccessToRepo [org_id: %d, repo_id: %d]: %v" , repo . OwnerID , repo . ID , err )
}
protectBranch . WhitelistTeamIDs = make ( [ ] int64 , 0 , len ( teams ) )
for i := range teams {
if teams [ i ] . HasWriteAccess ( ) && com . IsSliceContainsInt64 ( whitelistTeamIDs , teams [ i ] . ID ) {
protectBranch . WhitelistTeamIDs = append ( protectBranch . WhitelistTeamIDs , teams [ i ] . ID )
}
}
}
// Make sure protectBranch.ID is not 0 for whitelists
if protectBranch . ID == 0 {
if _ , err = x . Insert ( protectBranch ) ; err != nil {
return fmt . Errorf ( "Insert: %v" , err )
}
return nil
}
2017-10-05 07:43:04 +03:00
if _ , err = x . ID ( protectBranch . ID ) . AllCols ( ) . Update ( protectBranch ) ; err != nil {
2017-09-14 11:16:22 +03:00
return fmt . Errorf ( "Update: %v" , err )
}
return nil
}
2017-03-15 03:52:01 +03:00
// GetProtectedBranches get all protected branches
2017-02-21 18:02:10 +03:00
func ( repo * Repository ) GetProtectedBranches ( ) ( [ ] * ProtectedBranch , error ) {
protectedBranches := make ( [ ] * ProtectedBranch , 0 )
return protectedBranches , x . Find ( & protectedBranches , & ProtectedBranch { RepoID : repo . ID } )
}
2017-05-02 03:49:55 +03:00
// IsProtectedBranch checks if branch is protected
2017-09-14 11:16:22 +03:00
func ( repo * Repository ) IsProtectedBranch ( branchName string , doer * User ) ( bool , error ) {
2018-02-23 13:10:03 +03:00
if doer == nil {
return true , nil
}
2017-05-02 03:49:55 +03:00
protectedBranch := & ProtectedBranch {
RepoID : repo . ID ,
BranchName : branchName ,
}
has , err := x . Get ( protectedBranch )
if err != nil {
return true , err
} else if has {
2017-09-14 11:16:22 +03:00
return ! protectedBranch . CanUserPush ( doer . ID ) , nil
2017-05-02 03:49:55 +03:00
}
return false , nil
}
2017-02-21 18:02:10 +03:00
// DeleteProtectedBranch removes ProtectedBranch relation between the user and repository.
func ( repo * Repository ) DeleteProtectedBranch ( id int64 ) ( err error ) {
protectedBranch := & ProtectedBranch {
RepoID : repo . ID ,
ID : id ,
}
sess := x . NewSession ( )
2017-06-21 03:57:05 +03:00
defer sess . Close ( )
2017-02-21 18:02:10 +03:00
if err = sess . Begin ( ) ; err != nil {
return err
}
if affected , err := sess . Delete ( protectedBranch ) ; err != nil {
return err
} else if affected != 1 {
return fmt . Errorf ( "delete protected branch ID(%v) failed" , id )
}
return sess . Commit ( )
}
2017-10-26 03:49:16 +03:00
// DeletedBranch struct
type DeletedBranch struct {
2017-12-11 07:37:04 +03:00
ID int64 ` xorm:"pk autoincr" `
RepoID int64 ` xorm:"UNIQUE(s) INDEX NOT NULL" `
Name string ` xorm:"UNIQUE(s) NOT NULL" `
Commit string ` xorm:"UNIQUE(s) NOT NULL" `
DeletedByID int64 ` xorm:"INDEX" `
DeletedBy * User ` xorm:"-" `
DeletedUnix util . TimeStamp ` xorm:"INDEX created" `
2017-10-26 03:49:16 +03:00
}
// AddDeletedBranch adds a deleted branch to the database
func ( repo * Repository ) AddDeletedBranch ( branchName , commit string , deletedByID int64 ) error {
deletedBranch := & DeletedBranch {
RepoID : repo . ID ,
Name : branchName ,
Commit : commit ,
DeletedByID : deletedByID ,
}
sess := x . NewSession ( )
defer sess . Close ( )
if err := sess . Begin ( ) ; err != nil {
return err
}
if _ , err := sess . InsertOne ( deletedBranch ) ; err != nil {
return err
}
return sess . Commit ( )
}
// GetDeletedBranches returns all the deleted branches
func ( repo * Repository ) GetDeletedBranches ( ) ( [ ] * DeletedBranch , error ) {
deletedBranches := make ( [ ] * DeletedBranch , 0 )
return deletedBranches , x . Where ( "repo_id = ?" , repo . ID ) . Desc ( "deleted_unix" ) . Find ( & deletedBranches )
}
// GetDeletedBranchByID get a deleted branch by its ID
func ( repo * Repository ) GetDeletedBranchByID ( ID int64 ) ( * DeletedBranch , error ) {
deletedBranch := & DeletedBranch { ID : ID }
has , err := x . Get ( deletedBranch )
if err != nil {
return nil , err
}
if ! has {
return nil , nil
}
return deletedBranch , nil
}
// RemoveDeletedBranch removes a deleted branch from the database
func ( repo * Repository ) RemoveDeletedBranch ( id int64 ) ( err error ) {
deletedBranch := & DeletedBranch {
RepoID : repo . ID ,
ID : id ,
}
sess := x . NewSession ( )
defer sess . Close ( )
if err = sess . Begin ( ) ; err != nil {
return err
}
if affected , err := sess . Delete ( deletedBranch ) ; err != nil {
return err
} else if affected != 1 {
return fmt . Errorf ( "remove deleted branch ID(%v) failed" , id )
}
return sess . Commit ( )
}
// LoadUser loads the user that deleted the branch
// When there's no user found it returns a NewGhostUser
func ( deletedBranch * DeletedBranch ) LoadUser ( ) {
user , err := GetUserByID ( deletedBranch . DeletedByID )
if err != nil {
user = NewGhostUser ( )
}
deletedBranch . DeletedBy = user
}
// RemoveOldDeletedBranches removes old deleted branches
func RemoveOldDeletedBranches ( ) {
if ! taskStatusTable . StartIfNotRunning ( ` deleted_branches_cleanup ` ) {
return
}
defer taskStatusTable . Stop ( ` deleted_branches_cleanup ` )
log . Trace ( "Doing: DeletedBranchesCleanup" )
deleteBefore := time . Now ( ) . Add ( - setting . Cron . DeletedBranchesCleanup . OlderThan )
_ , err := x . Where ( "deleted_unix < ?" , deleteBefore . Unix ( ) ) . Delete ( new ( DeletedBranch ) )
if err != nil {
log . Error ( 4 , "DeletedBranchesCleanup: %v" , err )
}
}