forgejo/routers/web/repo
Lunny Xiao 87db4a47c8
Also sync DB branches on push if necessary (#28361) (#28403)
Fix #28056
Backport #28361 

This PR will check whether the repo has zero branch when pushing a
branch. If that, it means this repository hasn't been synced.

The reason caused that is after user upgrade from v1.20 -> v1.21, he
just push branches without visit the repository user interface. Because
all repositories routers will check whether a branches sync is necessary
but push has not such check.

For every repository, it has two states, synced or not synced. If there
is zero branch for a repository, then it will be assumed as non-sync
state. Otherwise, it's synced state. So if we think it's synced, we just
need to update branch/insert new branch. Otherwise do a full sync. So
that, for every push, there will be almost no extra load added. It's
high performance than yours.

For the implementation, we in fact will try to update the branch first,
if updated success with affect records > 0, then all are done. Because
that means the branch has been in the database. If no record is
affected, that means the branch does not exist in database. So there are
two possibilities. One is this is a new branch, then we just need to
insert the record. Another is the branches haven't been synced, then we
need to sync all the branches into database.
2023-12-11 06:16:56 +00:00
..
actions Fix the runs will not be displayed bug when the main branch have no workflows but other branches have (#28359) (#28365) 2023-12-06 02:28:00 -05:00
setting Fix comment permissions (#28213) (#28216) 2023-11-25 23:43:23 +00:00
activity.go
attachment.go
blame.go Read previous info from git blame (#28306) (#28310) 2023-12-01 08:27:35 +01:00
branch.go Also sync DB branches on push if necessary (#28361) (#28403) 2023-12-11 06:16:56 +00:00
cherry_pick.go
commit.go
compare.go Replace ajax with fetch, improve image diff (#27267) (#27583) 2023-10-11 16:12:31 +02:00
download.go
editor.go Revert "Fix EOL handling in web editor" (#28101) (#28172) 2023-11-22 18:06:13 +08:00
editor_test.go
find.go
githttp.go Fix http protocol auth (#27875) (#27876) 2023-11-02 16:34:55 +01:00
githttp_test.go Fix http protocol auth (#27875) (#27876) 2023-11-02 16:34:55 +01:00
helper.go
helper_test.go
issue.go Fix issue will be detected as pull request when checking First-time contributor (#28237) (#28271) 2023-11-29 02:49:33 +00:00
issue_content_history.go Fix missing check (#28406) (#28411) 2023-12-11 09:10:48 +08:00
issue_dependency.go
issue_label.go
issue_label_test.go
issue_lock.go
issue_pin.go Fix missing check (#28406) (#28411) 2023-12-11 09:10:48 +08:00
issue_stopwatch.go
issue_test.go
issue_timetrack.go
issue_watch.go
main_test.go
middlewares.go Fix viewing wiki commit on empty repo (#28040) (#28044) 2023-11-14 14:49:12 +01:00
migrate.go
milestone.go Fix link-action redirect network error (#27734) (#27749) 2023-10-23 13:52:30 +00:00
packages.go
patch.go
projects.go Fix comment permissions (#28213) (#28216) 2023-11-25 23:43:23 +00:00
projects_test.go
pull.go
pull_review.go
release.go Fix comment permissions (#28213) (#28216) 2023-11-25 23:43:23 +00:00
release_test.go
render.go
repo.go
search.go
topic.go
treelist.go
view.go Fix object does not exist error when checking citation file (#28314) (#28369) 2023-12-06 22:06:51 +00:00
view_test.go
wiki.go
wiki_test.go