summaryrefslogtreecommitdiffstats
path: root/models/repo.go
diff options
context:
space:
mode:
authorVitaliy Vasilenko <vvitalvas@yandex.ru>2015-03-21 14:55:00 +0200
committerVitaliy Vasilenko <vvitalvas@yandex.ru>2015-03-21 14:55:00 +0200
commit20a8d651f39eb138a8448257b0d8c5b4283ed6eb (patch)
treeb1dd0df9adc563f1b96c9b3cf0abfea43a6f5cf5 /models/repo.go
parentb6f8b486c79a46219dd1d2f3136c411594cc8f6d (diff)
downloadgitea-20a8d651f39eb138a8448257b0d8c5b4283ed6eb.tar.gz
gitea-20a8d651f39eb138a8448257b0d8c5b4283ed6eb.zip
add func to autofix couters in repository
Diffstat (limited to 'models/repo.go')
-rw-r--r--models/repo.go37
1 files changed, 37 insertions, 0 deletions
diff --git a/models/repo.go b/models/repo.go
index cfab329bab..bcd6c0e867 100644
--- a/models/repo.go
+++ b/models/repo.go
@@ -987,6 +987,7 @@ var (
// Prevent duplicate tasks.
isMirrorUpdating = false
isGitFscking = false
+ isCheckRepos = false
)
// MirrorUpdate checks and updates mirror repositories.
@@ -1078,6 +1079,42 @@ func GitGcRepos() error {
})
}
+func CheckRepoStats() {
+ if isCheckRepos {
+ return
+ }
+ isCheckRepos = true
+ defer func() { isCheckRepos = false }()
+
+ // Check count watchers
+ results_watch, err := x.Query("SELECT r.id FROM `repository` r WHERE r.num_watches!=(SELECT count(*) FROM `watch` WHERE repo_id=r.id)")
+ if err != nil {
+ log.Error(4, "select repository check 'watch': %v", err)
+ }
+ for _, repo_id := range results_watch {
+ log.Info("updating repository count 'watch'")
+ repoID := com.StrTo(repo_id["id"]).MustInt64()
+ _, err := x.Exec("UPDATE `repository` SET num_watches=(SELECT count(*) FROM `watch` WHERE repo_id=?) WHERE id=?", repoID, repoID)
+ if err != nil {
+ log.Error(4, "update repository check 'watch', repo %v: %v", repo_id, err)
+ }
+ }
+
+ // Check count stars
+ results_star, err := x.Query("SELECT s.id FROM `repository` s WHERE s.num_stars!=(SELECT count(*) FROM `star` WHERE repo_id=s.id)")
+ if err != nil {
+ log.Error(4, "select repository check 'star': %v", err)
+ }
+ for _, repo_id := range results_star {
+ log.Info("updating repository count 'star'")
+ repoID := com.StrTo(repo_id["id"]).MustInt64()
+ _, err := x.Exec("UPDATE `repository` SET .num_stars=(SELECT count(*) FROM `star` WHERE repo_id=?) WHERE id=?", repoID, repoID)
+ if err != nil {
+ log.Error(4, "update repository check 'star', repo %v: %v", repo_id, err)
+ }
+ }
+}
+
// _________ .__ .__ ___. __ .__
// \_ ___ \ ____ | | | | _____ \_ |__ ________________ _/ |_|__| ____ ____
// / \ \/ / _ \| | | | \__ \ | __ \ / _ \_ __ \__ \\ __\ |/ _ \ / \