Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.4 KiB
63 lines
2.4 KiB
// Copyright 2021 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 "code.gitea.io/gitea/models/db" |
|
|
|
// Statistic contains the database statistics |
|
type Statistic struct { |
|
Counter struct { |
|
User, Org, PublicKey, |
|
Repo, Watch, Star, Action, Access, |
|
Issue, IssueClosed, IssueOpen, |
|
Comment, Oauth, Follow, |
|
Mirror, Release, LoginSource, Webhook, |
|
Milestone, Label, HookTask, |
|
Team, UpdateTask, Attachment int64 |
|
} |
|
} |
|
|
|
// GetStatistic returns the database statistics |
|
func GetStatistic() (stats Statistic) { |
|
stats.Counter.User = CountUsers() |
|
stats.Counter.Org = CountOrganizations() |
|
stats.Counter.PublicKey, _ = db.DefaultContext().Engine().Count(new(PublicKey)) |
|
stats.Counter.Repo = CountRepositories(true) |
|
stats.Counter.Watch, _ = db.DefaultContext().Engine().Count(new(Watch)) |
|
stats.Counter.Star, _ = db.DefaultContext().Engine().Count(new(Star)) |
|
stats.Counter.Action, _ = db.DefaultContext().Engine().Count(new(Action)) |
|
stats.Counter.Access, _ = db.DefaultContext().Engine().Count(new(Access)) |
|
|
|
type IssueCount struct { |
|
Count int64 |
|
IsClosed bool |
|
} |
|
issueCounts := []IssueCount{} |
|
|
|
_ = db.DefaultContext().Engine().Select("COUNT(*) AS count, is_closed").Table("issue").GroupBy("is_closed").Find(&issueCounts) |
|
for _, c := range issueCounts { |
|
if c.IsClosed { |
|
stats.Counter.IssueClosed = c.Count |
|
} else { |
|
stats.Counter.IssueOpen = c.Count |
|
} |
|
} |
|
|
|
stats.Counter.Issue = stats.Counter.IssueClosed + stats.Counter.IssueOpen |
|
|
|
stats.Counter.Comment, _ = db.DefaultContext().Engine().Count(new(Comment)) |
|
stats.Counter.Oauth = 0 |
|
stats.Counter.Follow, _ = db.DefaultContext().Engine().Count(new(Follow)) |
|
stats.Counter.Mirror, _ = db.DefaultContext().Engine().Count(new(Mirror)) |
|
stats.Counter.Release, _ = db.DefaultContext().Engine().Count(new(Release)) |
|
stats.Counter.LoginSource = CountLoginSources() |
|
stats.Counter.Webhook, _ = db.DefaultContext().Engine().Count(new(Webhook)) |
|
stats.Counter.Milestone, _ = db.DefaultContext().Engine().Count(new(Milestone)) |
|
stats.Counter.Label, _ = db.DefaultContext().Engine().Count(new(Label)) |
|
stats.Counter.HookTask, _ = db.DefaultContext().Engine().Count(new(HookTask)) |
|
stats.Counter.Team, _ = db.DefaultContext().Engine().Count(new(Team)) |
|
stats.Counter.Attachment, _ = db.DefaultContext().Engine().Count(new(Attachment)) |
|
return |
|
}
|
|
|