2014-02-12 10:49:46 -07:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2018-06-19 23:06:01 -06:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2014-02-12 10:49:46 -07:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package models
|
2014-02-13 08:23:23 -07:00
|
|
|
|
2014-02-18 15:48:02 -07:00
|
|
|
import (
|
2014-10-18 23:35:24 -06:00
|
|
|
"database/sql"
|
2016-08-11 15:38:26 -06:00
|
|
|
"errors"
|
2014-02-18 15:48:02 -07:00
|
|
|
"fmt"
|
2015-08-28 22:08:37 -06:00
|
|
|
"net/url"
|
2014-02-18 15:48:02 -07:00
|
|
|
"os"
|
2014-03-20 23:09:22 -06:00
|
|
|
"path"
|
2019-02-27 09:55:08 -07:00
|
|
|
"path/filepath"
|
2014-04-14 00:49:50 -06:00
|
|
|
"strings"
|
2019-05-26 07:28:33 -06:00
|
|
|
"time"
|
2014-02-18 15:48:02 -07:00
|
|
|
|
2017-10-27 00:10:54 -06:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
|
2016-11-25 17:20:18 -07:00
|
|
|
// Needed for the MySQL driver
|
2014-02-18 15:48:02 -07:00
|
|
|
_ "github.com/go-sql-driver/mysql"
|
2014-04-18 07:35:09 -06:00
|
|
|
"github.com/go-xorm/xorm"
|
2019-06-23 09:22:43 -06:00
|
|
|
"xorm.io/core"
|
2016-11-25 17:20:18 -07:00
|
|
|
|
|
|
|
// Needed for the Postgresql driver
|
2014-03-17 12:03:58 -06:00
|
|
|
_ "github.com/lib/pq"
|
2014-02-18 15:48:02 -07:00
|
|
|
|
2016-12-23 18:37:35 -07:00
|
|
|
// Needed for the MSSSQL driver
|
|
|
|
_ "github.com/denisenkom/go-mssqldb"
|
2014-02-18 15:48:02 -07:00
|
|
|
)
|
2014-02-13 08:23:23 -07:00
|
|
|
|
2014-10-18 23:35:24 -06:00
|
|
|
// Engine represents a xorm engine or session.
|
|
|
|
type Engine interface {
|
2017-02-13 20:46:46 -07:00
|
|
|
Table(tableNameOrBean interface{}) *xorm.Session
|
2017-08-22 05:39:52 -06:00
|
|
|
Count(...interface{}) (int64, error)
|
2017-02-04 09:00:07 -07:00
|
|
|
Decr(column string, arg ...interface{}) *xorm.Session
|
2014-10-18 23:35:24 -06:00
|
|
|
Delete(interface{}) (int64, error)
|
2018-12-11 18:01:41 -07:00
|
|
|
Exec(...interface{}) (sql.Result, error)
|
2015-02-12 22:58:46 -07:00
|
|
|
Find(interface{}, ...interface{}) error
|
2015-02-10 21:44:16 -07:00
|
|
|
Get(interface{}) (bool, error)
|
2017-10-04 22:43:04 -06:00
|
|
|
ID(interface{}) *xorm.Session
|
2016-08-15 19:40:32 -06:00
|
|
|
In(string, ...interface{}) *xorm.Session
|
2017-02-04 09:00:07 -07:00
|
|
|
Incr(column string, arg ...interface{}) *xorm.Session
|
2014-10-18 23:35:24 -06:00
|
|
|
Insert(...interface{}) (int64, error)
|
2015-02-12 22:58:46 -07:00
|
|
|
InsertOne(interface{}) (int64, error)
|
2016-07-26 03:26:48 -06:00
|
|
|
Iterate(interface{}, xorm.IterFunc) error
|
2017-02-11 05:01:33 -07:00
|
|
|
Join(joinOperator string, tablename interface{}, condition string, args ...interface{}) *xorm.Session
|
2016-11-10 00:20:48 -07:00
|
|
|
SQL(interface{}, ...interface{}) *xorm.Session
|
2016-09-22 17:38:12 -06:00
|
|
|
Where(interface{}, ...interface{}) *xorm.Session
|
2019-06-12 13:41:28 -06:00
|
|
|
Asc(colNames ...string) *xorm.Session
|
2014-10-18 23:35:24 -06:00
|
|
|
}
|
|
|
|
|
2014-03-20 23:48:10 -06:00
|
|
|
var (
|
2019-03-20 19:38:54 -06:00
|
|
|
x *xorm.Engine
|
|
|
|
supportedDatabases = []string{"mysql", "postgres", "mssql"}
|
|
|
|
tables []interface{}
|
2016-11-25 17:20:18 -07:00
|
|
|
|
|
|
|
// HasEngine specifies if we have a xorm.Engine
|
2014-03-30 08:47:08 -06:00
|
|
|
HasEngine bool
|
2014-03-20 23:48:10 -06:00
|
|
|
|
2016-11-25 17:20:18 -07:00
|
|
|
// DbCfg holds the database settings
|
2014-03-21 01:27:59 -06:00
|
|
|
DbCfg struct {
|
2019-05-23 22:15:26 -06:00
|
|
|
Type, Host, Name, User, Passwd, Path, SSLMode, Charset string
|
|
|
|
Timeout int
|
2014-03-20 23:48:10 -06:00
|
|
|
}
|
2014-03-30 14:01:50 -06:00
|
|
|
|
2016-11-25 17:20:18 -07:00
|
|
|
// EnableSQLite3 use SQLite3
|
2014-04-12 14:24:09 -06:00
|
|
|
EnableSQLite3 bool
|
2016-11-25 17:20:18 -07:00
|
|
|
|
|
|
|
// EnableTiDB enable TiDB
|
|
|
|
EnableTiDB bool
|
2014-03-20 23:48:10 -06:00
|
|
|
)
|
|
|
|
|
2014-04-05 08:46:32 -06:00
|
|
|
func init() {
|
2014-11-12 04:48:50 -07:00
|
|
|
tables = append(tables,
|
2016-12-30 09:44:54 -07:00
|
|
|
new(User),
|
|
|
|
new(PublicKey),
|
|
|
|
new(AccessToken),
|
|
|
|
new(Repository),
|
|
|
|
new(DeployKey),
|
|
|
|
new(Collaboration),
|
|
|
|
new(Access),
|
|
|
|
new(Upload),
|
|
|
|
new(Watch),
|
|
|
|
new(Star),
|
|
|
|
new(Follow),
|
|
|
|
new(Action),
|
|
|
|
new(Issue),
|
|
|
|
new(PullRequest),
|
|
|
|
new(Comment),
|
|
|
|
new(Attachment),
|
|
|
|
new(Label),
|
|
|
|
new(IssueLabel),
|
|
|
|
new(Milestone),
|
|
|
|
new(Mirror),
|
|
|
|
new(Release),
|
|
|
|
new(LoginSource),
|
|
|
|
new(Webhook),
|
|
|
|
new(HookTask),
|
|
|
|
new(Team),
|
|
|
|
new(OrgUser),
|
|
|
|
new(TeamUser),
|
|
|
|
new(TeamRepo),
|
|
|
|
new(Notice),
|
|
|
|
new(EmailAddress),
|
|
|
|
new(Notification),
|
|
|
|
new(IssueUser),
|
|
|
|
new(LFSMetaObject),
|
2017-01-15 19:14:29 -07:00
|
|
|
new(TwoFactor),
|
2017-03-15 19:27:35 -06:00
|
|
|
new(GPGKey),
|
2019-04-14 10:43:56 -06:00
|
|
|
new(GPGKeyImport),
|
2017-02-04 08:53:46 -07:00
|
|
|
new(RepoUnit),
|
2017-02-05 07:35:03 -07:00
|
|
|
new(RepoRedirect),
|
2017-02-23 00:05:37 -07:00
|
|
|
new(ExternalLoginUser),
|
|
|
|
new(ProtectedBranch),
|
2017-03-17 08:16:08 -06:00
|
|
|
new(UserOpenID),
|
2017-03-19 13:54:12 -06:00
|
|
|
new(IssueWatch),
|
2017-04-21 05:32:31 -06:00
|
|
|
new(CommitStatus),
|
2017-09-12 00:48:13 -06:00
|
|
|
new(Stopwatch),
|
|
|
|
new(TrackedTime),
|
2017-10-25 18:49:16 -06:00
|
|
|
new(DeletedBranch),
|
2017-10-27 00:10:54 -06:00
|
|
|
new(RepoIndexerStatus),
|
2018-07-17 15:23:58 -06:00
|
|
|
new(IssueDependency),
|
2017-11-28 13:58:37 -07:00
|
|
|
new(LFSLock),
|
2017-12-03 16:14:26 -07:00
|
|
|
new(Reaction),
|
2018-05-09 10:29:04 -06:00
|
|
|
new(IssueAssignees),
|
2018-05-19 08:12:37 -06:00
|
|
|
new(U2FRegistration),
|
2018-06-21 10:00:13 -06:00
|
|
|
new(TeamUnit),
|
2018-08-05 22:43:22 -06:00
|
|
|
new(Review),
|
2019-03-08 09:42:50 -07:00
|
|
|
new(OAuth2Application),
|
|
|
|
new(OAuth2AuthorizationCode),
|
|
|
|
new(OAuth2Grant),
|
2016-12-30 09:44:54 -07:00
|
|
|
)
|
2015-08-27 09:06:14 -06:00
|
|
|
|
2016-11-25 17:20:18 -07:00
|
|
|
gonicNames := []string{"SSL", "UID"}
|
2015-08-27 09:06:14 -06:00
|
|
|
for _, name := range gonicNames {
|
|
|
|
core.LintGonicMapper[name] = true
|
|
|
|
}
|
2014-04-05 08:46:32 -06:00
|
|
|
}
|
|
|
|
|
2016-11-25 17:20:18 -07:00
|
|
|
// LoadConfigs loads the database settings
|
2015-09-16 21:08:46 -06:00
|
|
|
func LoadConfigs() {
|
2014-12-31 03:37:29 -07:00
|
|
|
sec := setting.Cfg.Section("database")
|
|
|
|
DbCfg.Type = sec.Key("DB_TYPE").String()
|
2015-02-11 19:58:37 -07:00
|
|
|
switch DbCfg.Type {
|
|
|
|
case "sqlite3":
|
|
|
|
setting.UseSQLite3 = true
|
|
|
|
case "mysql":
|
|
|
|
setting.UseMySQL = true
|
|
|
|
case "postgres":
|
|
|
|
setting.UsePostgreSQL = true
|
2015-09-12 13:31:36 -06:00
|
|
|
case "tidb":
|
|
|
|
setting.UseTiDB = true
|
2016-12-23 18:37:35 -07:00
|
|
|
case "mssql":
|
|
|
|
setting.UseMSSQL = true
|
2014-03-30 14:01:50 -06:00
|
|
|
}
|
2014-12-31 03:37:29 -07:00
|
|
|
DbCfg.Host = sec.Key("HOST").String()
|
|
|
|
DbCfg.Name = sec.Key("NAME").String()
|
|
|
|
DbCfg.User = sec.Key("USER").String()
|
2015-02-01 10:41:03 -07:00
|
|
|
if len(DbCfg.Passwd) == 0 {
|
|
|
|
DbCfg.Passwd = sec.Key("PASSWD").String()
|
2014-06-10 17:11:53 -06:00
|
|
|
}
|
2018-08-23 16:42:02 -06:00
|
|
|
DbCfg.SSLMode = sec.Key("SSL_MODE").MustString("disable")
|
2019-05-23 22:15:26 -06:00
|
|
|
DbCfg.Charset = sec.Key("CHARSET").In("utf8", []string{"utf8", "utf8mb4"})
|
2019-02-27 09:55:08 -07:00
|
|
|
DbCfg.Path = sec.Key("PATH").MustString(filepath.Join(setting.AppDataPath, "gitea.db"))
|
2017-06-14 20:51:17 -06:00
|
|
|
DbCfg.Timeout = sec.Key("SQLITE_TIMEOUT").MustInt(500)
|
2014-03-20 23:48:10 -06:00
|
|
|
}
|
2014-02-18 15:48:02 -07:00
|
|
|
|
2016-08-12 03:56:50 -06:00
|
|
|
// parsePostgreSQLHostPort parses given input in various forms defined in
|
|
|
|
// https://www.postgresql.org/docs/current/static/libpq-connect.html#LIBPQ-CONNSTRING
|
|
|
|
// and returns proper host and port number.
|
|
|
|
func parsePostgreSQLHostPort(info string) (string, string) {
|
|
|
|
host, port := "127.0.0.1", "5432"
|
|
|
|
if strings.Contains(info, ":") && !strings.HasSuffix(info, "]") {
|
|
|
|
idx := strings.LastIndex(info, ":")
|
|
|
|
host = info[:idx]
|
|
|
|
port = info[idx+1:]
|
|
|
|
} else if len(info) > 0 {
|
|
|
|
host = info
|
|
|
|
}
|
|
|
|
return host, port
|
|
|
|
}
|
|
|
|
|
2019-06-12 13:41:28 -06:00
|
|
|
func getPostgreSQLConnectionString(dbHost, dbUser, dbPasswd, dbName, dbParam, dbsslMode string) (connStr string) {
|
|
|
|
host, port := parsePostgreSQLHostPort(dbHost)
|
2018-06-19 23:06:01 -06:00
|
|
|
if host[0] == '/' { // looks like a unix socket
|
|
|
|
connStr = fmt.Sprintf("postgres://%s:%s@:%s/%s%ssslmode=%s&host=%s",
|
2019-06-12 13:41:28 -06:00
|
|
|
url.PathEscape(dbUser), url.PathEscape(dbPasswd), port, dbName, dbParam, dbsslMode, host)
|
2018-06-19 23:06:01 -06:00
|
|
|
} else {
|
|
|
|
connStr = fmt.Sprintf("postgres://%s:%s@%s:%s/%s%ssslmode=%s",
|
2019-06-12 13:41:28 -06:00
|
|
|
url.PathEscape(dbUser), url.PathEscape(dbPasswd), host, port, dbName, dbParam, dbsslMode)
|
2018-06-19 23:06:01 -06:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-12-11 18:01:41 -07:00
|
|
|
// ParseMSSQLHostPort splits the host into host and port
|
|
|
|
func ParseMSSQLHostPort(info string) (string, string) {
|
2016-12-23 18:37:35 -07:00
|
|
|
host, port := "127.0.0.1", "1433"
|
2016-12-30 00:26:05 -07:00
|
|
|
if strings.Contains(info, ":") {
|
|
|
|
host = strings.Split(info, ":")[0]
|
|
|
|
port = strings.Split(info, ":")[1]
|
|
|
|
} else if strings.Contains(info, ",") {
|
|
|
|
host = strings.Split(info, ",")[0]
|
|
|
|
port = strings.TrimSpace(strings.Split(info, ",")[1])
|
|
|
|
} else if len(info) > 0 {
|
|
|
|
host = info
|
|
|
|
}
|
2016-12-23 18:37:35 -07:00
|
|
|
return host, port
|
|
|
|
}
|
|
|
|
|
2014-09-04 09:19:26 -06:00
|
|
|
func getEngine() (*xorm.Engine, error) {
|
2016-08-11 15:38:26 -06:00
|
|
|
connStr := ""
|
2016-11-25 17:20:18 -07:00
|
|
|
var Param = "?"
|
2016-07-24 00:32:46 -06:00
|
|
|
if strings.Contains(DbCfg.Name, Param) {
|
|
|
|
Param = "&"
|
2016-07-02 08:39:39 -06:00
|
|
|
}
|
2014-03-30 08:47:08 -06:00
|
|
|
switch DbCfg.Type {
|
|
|
|
case "mysql":
|
2018-08-23 16:42:02 -06:00
|
|
|
connType := "tcp"
|
2015-03-13 12:21:47 -06:00
|
|
|
if DbCfg.Host[0] == '/' { // looks like a unix socket
|
2018-08-23 16:42:02 -06:00
|
|
|
connType = "unix"
|
2015-03-13 12:21:47 -06:00
|
|
|
}
|
2018-08-23 16:42:02 -06:00
|
|
|
tls := DbCfg.SSLMode
|
|
|
|
if tls == "disable" { // allow (Postgres-inspired) default value to work in MySQL
|
|
|
|
tls = "false"
|
|
|
|
}
|
2019-05-23 22:15:26 -06:00
|
|
|
connStr = fmt.Sprintf("%s:%s@%s(%s)/%s%scharset=%s&parseTime=true&tls=%s",
|
|
|
|
DbCfg.User, DbCfg.Passwd, connType, DbCfg.Host, DbCfg.Name, Param, DbCfg.Charset, tls)
|
2014-03-30 08:47:08 -06:00
|
|
|
case "postgres":
|
2018-06-19 23:06:01 -06:00
|
|
|
connStr = getPostgreSQLConnectionString(DbCfg.Host, DbCfg.User, DbCfg.Passwd, DbCfg.Name, Param, DbCfg.SSLMode)
|
2016-12-23 18:37:35 -07:00
|
|
|
case "mssql":
|
2018-12-11 18:01:41 -07:00
|
|
|
host, port := ParseMSSQLHostPort(DbCfg.Host)
|
2016-12-23 18:37:35 -07:00
|
|
|
connStr = fmt.Sprintf("server=%s; port=%s; database=%s; user id=%s; password=%s;", host, port, DbCfg.Name, DbCfg.User, DbCfg.Passwd)
|
2014-04-12 12:48:12 -06:00
|
|
|
case "sqlite3":
|
2014-04-12 14:24:09 -06:00
|
|
|
if !EnableSQLite3 {
|
2016-11-28 00:25:16 -07:00
|
|
|
return nil, errors.New("this binary version does not build support for SQLite3")
|
2014-04-12 14:24:09 -06:00
|
|
|
}
|
2015-08-24 07:01:23 -06:00
|
|
|
if err := os.MkdirAll(path.Dir(DbCfg.Path), os.ModePerm); err != nil {
|
2017-01-29 13:13:57 -07:00
|
|
|
return nil, fmt.Errorf("Failed to create directories: %v", err)
|
2015-08-24 07:01:23 -06:00
|
|
|
}
|
2017-06-14 20:51:17 -06:00
|
|
|
connStr = fmt.Sprintf("file:%s?cache=shared&mode=rwc&_busy_timeout=%d", DbCfg.Path, DbCfg.Timeout)
|
2015-09-06 14:31:22 -06:00
|
|
|
case "tidb":
|
2016-08-11 15:38:26 -06:00
|
|
|
if !EnableTiDB {
|
2016-11-28 00:25:16 -07:00
|
|
|
return nil, errors.New("this binary version does not build support for TiDB")
|
2015-09-06 14:31:22 -06:00
|
|
|
}
|
|
|
|
if err := os.MkdirAll(path.Dir(DbCfg.Path), os.ModePerm); err != nil {
|
2017-01-29 13:13:57 -07:00
|
|
|
return nil, fmt.Errorf("Failed to create directories: %v", err)
|
2015-09-06 14:31:22 -06:00
|
|
|
}
|
2016-08-11 15:38:26 -06:00
|
|
|
connStr = "goleveldb://" + DbCfg.Path
|
2014-03-30 08:47:08 -06:00
|
|
|
default:
|
2014-09-04 09:19:26 -06:00
|
|
|
return nil, fmt.Errorf("Unknown database type: %s", DbCfg.Type)
|
2014-03-30 08:47:08 -06:00
|
|
|
}
|
2017-02-20 01:11:13 -07:00
|
|
|
|
2016-08-11 15:38:26 -06:00
|
|
|
return xorm.NewEngine(DbCfg.Type, connStr)
|
2014-09-04 09:19:26 -06:00
|
|
|
}
|
|
|
|
|
2016-11-25 17:20:18 -07:00
|
|
|
// NewTestEngine sets a new test xorm.Engine
|
2014-09-04 09:19:26 -06:00
|
|
|
func NewTestEngine(x *xorm.Engine) (err error) {
|
|
|
|
x, err = getEngine()
|
2014-03-30 08:47:08 -06:00
|
|
|
if err != nil {
|
2015-08-01 22:36:35 -06:00
|
|
|
return fmt.Errorf("Connect to database: %v", err)
|
2014-03-30 08:47:08 -06:00
|
|
|
}
|
2014-09-04 09:19:26 -06:00
|
|
|
|
2015-01-23 00:54:16 -07:00
|
|
|
x.SetMapper(core.GonicMapper{})
|
2019-05-14 01:04:07 -06:00
|
|
|
x.SetLogger(NewXORMLogger(!setting.ProdMode))
|
2017-09-12 23:18:22 -06:00
|
|
|
x.ShowSQL(!setting.ProdMode)
|
2015-09-03 03:05:58 -06:00
|
|
|
return x.StoreEngine("InnoDB").Sync2(tables...)
|
2014-03-30 08:47:08 -06:00
|
|
|
}
|
|
|
|
|
2016-11-25 17:20:18 -07:00
|
|
|
// SetEngine sets the xorm.Engine
|
2014-03-29 15:50:51 -06:00
|
|
|
func SetEngine() (err error) {
|
2014-09-04 09:19:26 -06:00
|
|
|
x, err = getEngine()
|
2014-02-18 15:48:02 -07:00
|
|
|
if err != nil {
|
2017-01-29 13:13:57 -07:00
|
|
|
return fmt.Errorf("Failed to connect to database: %v", err)
|
2014-02-18 15:48:02 -07:00
|
|
|
}
|
|
|
|
|
2015-01-23 00:54:16 -07:00
|
|
|
x.SetMapper(core.GonicMapper{})
|
2014-12-06 18:22:48 -07:00
|
|
|
// WARNING: for serv command, MUST remove the output to os.stdout,
|
2014-03-20 14:04:56 -06:00
|
|
|
// so use log file to instead print to stdout.
|
2019-05-14 01:04:07 -06:00
|
|
|
x.SetLogger(NewXORMLogger(setting.LogSQL))
|
2018-03-30 08:49:46 -06:00
|
|
|
x.ShowSQL(setting.LogSQL)
|
2019-05-26 07:28:33 -06:00
|
|
|
if DbCfg.Type == "mysql" {
|
|
|
|
x.SetMaxIdleConns(0)
|
|
|
|
x.SetConnMaxLifetime(3 * time.Second)
|
|
|
|
}
|
|
|
|
|
2014-03-29 15:50:51 -06:00
|
|
|
return nil
|
2014-02-18 15:48:02 -07:00
|
|
|
}
|
|
|
|
|
2016-11-25 17:20:18 -07:00
|
|
|
// NewEngine initializes a new xorm.Engine
|
2017-07-02 07:50:57 -06:00
|
|
|
func NewEngine(migrateFunc func(*xorm.Engine) error) (err error) {
|
2014-03-29 15:50:51 -06:00
|
|
|
if err = SetEngine(); err != nil {
|
|
|
|
return err
|
2014-04-05 08:46:32 -06:00
|
|
|
}
|
2015-01-22 05:49:52 -07:00
|
|
|
|
2016-11-24 07:30:36 -07:00
|
|
|
if err = x.Ping(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-07-02 07:50:57 -06:00
|
|
|
if err = migrateFunc(x); err != nil {
|
2015-02-11 19:58:37 -07:00
|
|
|
return fmt.Errorf("migrate: %v", err)
|
2015-01-22 05:49:52 -07:00
|
|
|
}
|
|
|
|
|
2014-10-28 09:40:09 -06:00
|
|
|
if err = x.StoreEngine("InnoDB").Sync2(tables...); err != nil {
|
2016-11-28 00:25:16 -07:00
|
|
|
return fmt.Errorf("sync database struct error: %v", err)
|
2014-02-19 02:50:53 -07:00
|
|
|
}
|
2015-01-23 00:54:16 -07:00
|
|
|
|
2014-03-29 15:50:51 -06:00
|
|
|
return nil
|
2014-02-18 15:48:02 -07:00
|
|
|
}
|
2014-03-20 14:04:56 -06:00
|
|
|
|
2016-11-25 17:20:18 -07:00
|
|
|
// Statistic contains the database statistics
|
2014-03-20 14:04:56 -06:00
|
|
|
type Statistic struct {
|
|
|
|
Counter struct {
|
2014-08-28 08:29:00 -06:00
|
|
|
User, Org, PublicKey,
|
|
|
|
Repo, Watch, Star, Action, Access,
|
|
|
|
Issue, Comment, Oauth, Follow,
|
|
|
|
Mirror, Release, LoginSource, Webhook,
|
|
|
|
Milestone, Label, HookTask,
|
|
|
|
Team, UpdateTask, Attachment int64
|
2014-03-20 14:04:56 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-25 17:20:18 -07:00
|
|
|
// GetStatistic returns the database statistics
|
2014-03-20 14:04:56 -06:00
|
|
|
func GetStatistic() (stats Statistic) {
|
2014-07-07 02:15:08 -06:00
|
|
|
stats.Counter.User = CountUsers()
|
2014-08-28 08:29:00 -06:00
|
|
|
stats.Counter.Org = CountOrganizations()
|
2014-06-20 22:51:41 -06:00
|
|
|
stats.Counter.PublicKey, _ = x.Count(new(PublicKey))
|
2016-07-24 00:32:46 -06:00
|
|
|
stats.Counter.Repo = CountRepositories(true)
|
2014-06-20 22:51:41 -06:00
|
|
|
stats.Counter.Watch, _ = x.Count(new(Watch))
|
2014-08-28 08:29:00 -06:00
|
|
|
stats.Counter.Star, _ = x.Count(new(Star))
|
2014-06-20 22:51:41 -06:00
|
|
|
stats.Counter.Action, _ = x.Count(new(Action))
|
|
|
|
stats.Counter.Access, _ = x.Count(new(Access))
|
|
|
|
stats.Counter.Issue, _ = x.Count(new(Issue))
|
|
|
|
stats.Counter.Comment, _ = x.Count(new(Comment))
|
2015-09-17 14:11:44 -06:00
|
|
|
stats.Counter.Oauth = 0
|
2014-08-28 08:29:00 -06:00
|
|
|
stats.Counter.Follow, _ = x.Count(new(Follow))
|
|
|
|
stats.Counter.Mirror, _ = x.Count(new(Mirror))
|
2014-06-20 22:51:41 -06:00
|
|
|
stats.Counter.Release, _ = x.Count(new(Release))
|
2015-09-10 13:45:03 -06:00
|
|
|
stats.Counter.LoginSource = CountLoginSources()
|
2014-06-20 22:51:41 -06:00
|
|
|
stats.Counter.Webhook, _ = x.Count(new(Webhook))
|
|
|
|
stats.Counter.Milestone, _ = x.Count(new(Milestone))
|
2014-08-28 08:29:00 -06:00
|
|
|
stats.Counter.Label, _ = x.Count(new(Label))
|
|
|
|
stats.Counter.HookTask, _ = x.Count(new(HookTask))
|
|
|
|
stats.Counter.Team, _ = x.Count(new(Team))
|
|
|
|
stats.Counter.Attachment, _ = x.Count(new(Attachment))
|
2014-03-23 02:31:13 -06:00
|
|
|
return
|
2014-03-20 14:04:56 -06:00
|
|
|
}
|
2014-05-04 22:55:17 -06:00
|
|
|
|
2016-11-25 17:20:18 -07:00
|
|
|
// Ping tests if database is alive
|
2014-08-06 15:21:24 -06:00
|
|
|
func Ping() error {
|
2018-04-04 03:34:27 -06:00
|
|
|
if x != nil {
|
|
|
|
return x.Ping()
|
|
|
|
}
|
|
|
|
return errors.New("database not configured")
|
2014-08-06 15:21:24 -06:00
|
|
|
}
|
|
|
|
|
2017-01-03 01:20:28 -07:00
|
|
|
// DumpDatabase dumps all data from database according the special database SQL syntax to file system.
|
|
|
|
func DumpDatabase(filePath string, dbType string) error {
|
|
|
|
var tbs []*core.Table
|
|
|
|
for _, t := range tables {
|
2019-03-20 19:38:54 -06:00
|
|
|
t := x.TableInfo(t)
|
|
|
|
t.Table.Name = t.Name
|
|
|
|
tbs = append(tbs, t.Table)
|
2017-01-03 01:20:28 -07:00
|
|
|
}
|
|
|
|
if len(dbType) > 0 {
|
|
|
|
return x.DumpTablesToFile(tbs, filePath, core.DbType(dbType))
|
|
|
|
}
|
|
|
|
return x.DumpTablesToFile(tbs, filePath)
|
2014-05-04 22:55:17 -06:00
|
|
|
}
|
2019-07-06 13:24:50 -06:00
|
|
|
|
|
|
|
// MaxBatchInsertSize returns the table's max batch insert size
|
|
|
|
func MaxBatchInsertSize(bean interface{}) int {
|
|
|
|
t := x.TableInfo(bean)
|
|
|
|
return 999 / len(t.ColumnsSeq())
|
|
|
|
}
|