mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Remove GetByBean method because sometimes it's danger when query condition parameter is zero and also introduce new generic methods (#28220)
The function `GetByBean` has an obvious defect that when the fields are
empty values, it will be ignored. Then users will get a wrong result
which is possibly used to make a security problem.
To avoid the possibility, this PR removed function `GetByBean` and all
references.
And some new generic functions have been introduced to be used.
The recommand usage like below.
```go
// if query an object according id
obj, err := db.GetByID[Object](ctx, id)
// query with other conditions
obj, err := db.Get[Object](ctx, builder.Eq{"a": a, "b":b})
```
			
			
This commit is contained in:
		@@ -24,6 +24,7 @@ import (
 | 
			
		||||
 | 
			
		||||
	"github.com/gobwas/glob"
 | 
			
		||||
	"github.com/gobwas/glob/syntax"
 | 
			
		||||
	"xorm.io/builder"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
var ErrBranchIsProtected = errors.New("branch is protected")
 | 
			
		||||
@@ -274,12 +275,11 @@ func (protectBranch *ProtectedBranch) IsUnprotectedFile(patterns []glob.Glob, pa
 | 
			
		||||
 | 
			
		||||
// GetProtectedBranchRuleByName getting protected branch rule by name
 | 
			
		||||
func GetProtectedBranchRuleByName(ctx context.Context, repoID int64, ruleName string) (*ProtectedBranch, error) {
 | 
			
		||||
	rel := &ProtectedBranch{RepoID: repoID, RuleName: ruleName}
 | 
			
		||||
	has, err := db.GetByBean(ctx, rel)
 | 
			
		||||
	// branch_name is legacy name, it actually is rule name
 | 
			
		||||
	rel, exist, err := db.Get[ProtectedBranch](ctx, builder.Eq{"repo_id": repoID, "branch_name": ruleName})
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	if !has {
 | 
			
		||||
	} else if !exist {
 | 
			
		||||
		return nil, nil
 | 
			
		||||
	}
 | 
			
		||||
	return rel, nil
 | 
			
		||||
@@ -287,12 +287,10 @@ func GetProtectedBranchRuleByName(ctx context.Context, repoID int64, ruleName st
 | 
			
		||||
 | 
			
		||||
// GetProtectedBranchRuleByID getting protected branch rule by rule ID
 | 
			
		||||
func GetProtectedBranchRuleByID(ctx context.Context, repoID, ruleID int64) (*ProtectedBranch, error) {
 | 
			
		||||
	rel := &ProtectedBranch{ID: ruleID, RepoID: repoID}
 | 
			
		||||
	has, err := db.GetByBean(ctx, rel)
 | 
			
		||||
	rel, exist, err := db.Get[ProtectedBranch](ctx, builder.Eq{"repo_id": repoID, "id": ruleID})
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	if !has {
 | 
			
		||||
	} else if !exist {
 | 
			
		||||
		return nil, nil
 | 
			
		||||
	}
 | 
			
		||||
	return rel, nil
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user