Skip to content

Commit 6e19484

Browse files
lunnywolfogre
andauthored
Sync branches into databases (#22743)
Related #14180 Related #25233 Related #22639 Close #19786 Related #12763 This PR will change all the branches retrieve method from reading git data to read database to reduce git read operations. - [x] Sync git branches information into database when push git data - [x] Create a new table `Branch`, merge some columns of `DeletedBranch` into `Branch` table and drop the table `DeletedBranch`. - [x] Read `Branch` table when visit `code` -> `branch` page - [x] Read `Branch` table when list branch names in `code` page dropdown - [x] Read `Branch` table when list git ref compare page - [x] Provide a button in admin page to manually sync all branches. - [x] Sync branches if repository is not empty but database branches are empty when visiting pages with branches list - [x] Use `commit_time desc` as the default FindBranch order by to keep consistent as before and deleted branches will be always at the end. --------- Co-authored-by: Jason Song <i@wolfogre.com>
1 parent 5a87193 commit 6e19484

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1414
-722
lines changed

models/error.go

-84
Original file line numberDiff line numberDiff line change
@@ -318,90 +318,6 @@ func (err ErrFilePathProtected) Unwrap() error {
318318
return util.ErrPermissionDenied
319319
}
320320

321-
// __________ .__
322-
// \______ \____________ ____ ____ | |__
323-
// | | _/\_ __ \__ \ / \_/ ___\| | \
324-
// | | \ | | \// __ \| | \ \___| Y \
325-
// |______ / |__| (____ /___| /\___ >___| /
326-
// \/ \/ \/ \/ \/
327-
328-
// ErrBranchDoesNotExist represents an error that branch with such name does not exist.
329-
type ErrBranchDoesNotExist struct {
330-
BranchName string
331-
}
332-
333-
// IsErrBranchDoesNotExist checks if an error is an ErrBranchDoesNotExist.
334-
func IsErrBranchDoesNotExist(err error) bool {
335-
_, ok := err.(ErrBranchDoesNotExist)
336-
return ok
337-
}
338-
339-
func (err ErrBranchDoesNotExist) Error() string {
340-
return fmt.Sprintf("branch does not exist [name: %s]", err.BranchName)
341-
}
342-
343-
func (err ErrBranchDoesNotExist) Unwrap() error {
344-
return util.ErrNotExist
345-
}
346-
347-
// ErrBranchAlreadyExists represents an error that branch with such name already exists.
348-
type ErrBranchAlreadyExists struct {
349-
BranchName string
350-
}
351-
352-
// IsErrBranchAlreadyExists checks if an error is an ErrBranchAlreadyExists.
353-
func IsErrBranchAlreadyExists(err error) bool {
354-
_, ok := err.(ErrBranchAlreadyExists)
355-
return ok
356-
}
357-
358-
func (err ErrBranchAlreadyExists) Error() string {
359-
return fmt.Sprintf("branch already exists [name: %s]", err.BranchName)
360-
}
361-
362-
func (err ErrBranchAlreadyExists) Unwrap() error {
363-
return util.ErrAlreadyExist
364-
}
365-
366-
// ErrBranchNameConflict represents an error that branch name conflicts with other branch.
367-
type ErrBranchNameConflict struct {
368-
BranchName string
369-
}
370-
371-
// IsErrBranchNameConflict checks if an error is an ErrBranchNameConflict.
372-
func IsErrBranchNameConflict(err error) bool {
373-
_, ok := err.(ErrBranchNameConflict)
374-
return ok
375-
}
376-
377-
func (err ErrBranchNameConflict) Error() string {
378-
return fmt.Sprintf("branch conflicts with existing branch [name: %s]", err.BranchName)
379-
}
380-
381-
func (err ErrBranchNameConflict) Unwrap() error {
382-
return util.ErrAlreadyExist
383-
}
384-
385-
// ErrBranchesEqual represents an error that branch name conflicts with other branch.
386-
type ErrBranchesEqual struct {
387-
BaseBranchName string
388-
HeadBranchName string
389-
}
390-
391-
// IsErrBranchesEqual checks if an error is an ErrBranchesEqual.
392-
func IsErrBranchesEqual(err error) bool {
393-
_, ok := err.(ErrBranchesEqual)
394-
return ok
395-
}
396-
397-
func (err ErrBranchesEqual) Error() string {
398-
return fmt.Sprintf("branches are equal [head: %sm base: %s]", err.HeadBranchName, err.BaseBranchName)
399-
}
400-
401-
func (err ErrBranchesEqual) Unwrap() error {
402-
return util.ErrInvalidArgument
403-
}
404-
405321
// ErrDisallowedToMerge represents an error that a branch is protected and the current user is not allowed to modify it.
406322
type ErrDisallowedToMerge struct {
407323
Reason string

models/fixtures/branch.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
-
2+
id: 1
3+
repo_id: 1
4+
name: 'foo'
5+
commit_id: '65f1bf27bc3bf70f64657658635e66094edbcb4d'
6+
commit_message: 'first commit'
7+
commit_time: 978307100
8+
pusher_id: 1
9+
is_deleted: true
10+
deleted_by_id: 1
11+
deleted_unix: 978307200
12+
13+
-
14+
id: 2
15+
repo_id: 1
16+
name: 'bar'
17+
commit_id: '62fb502a7172d4453f0322a2cc85bddffa57f07a'
18+
commit_message: 'second commit'
19+
commit_time: 978307100
20+
pusher_id: 1
21+
is_deleted: true
22+
deleted_by_id: 99
23+
deleted_unix: 978307200
24+
25+
-
26+
id: 3
27+
repo_id: 1
28+
name: 'branch2'
29+
commit_id: '985f0301dba5e7b34be866819cd15ad3d8f508ee'
30+
commit_message: 'make pull5 outdated'
31+
commit_time: 1579166279
32+
pusher_id: 1
33+
is_deleted: false
34+
deleted_by_id: 0
35+
deleted_unix: 0
36+
37+
-
38+
id: 4
39+
repo_id: 1
40+
name: 'master'
41+
commit_id: '65f1bf27bc3bf70f64657658635e66094edbcb4d'
42+
commit_message: 'Initial commit'
43+
commit_time: 1489927679
44+
pusher_id: 1
45+
is_deleted: false
46+
deleted_by_id: 0
47+
deleted_unix: 0

models/fixtures/deleted_branch.yml

-15
This file was deleted.

0 commit comments

Comments
 (0)