bench-forgejo/models/models.go

255 lines
7.3 KiB
Go
Raw Normal View History

2014-02-12 23:19:46 +05:30
// Copyright 2014 The Gogs 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
2014-02-19 04:18:02 +05:30
import (
2014-10-19 11:05:24 +05:30
"database/sql"
"errors"
2014-02-19 04:18:02 +05:30
"fmt"
"net/url"
2014-02-19 04:18:02 +05:30
"os"
2014-03-21 10:39:22 +05:30
"path"
2014-04-14 12:19:50 +05:30
"strings"
2014-02-19 04:18:02 +05:30
_ "github.com/go-sql-driver/mysql"
2015-01-23 13:24:16 +05:30
"github.com/go-xorm/core"
2014-04-18 19:05:09 +05:30
"github.com/go-xorm/xorm"
_ "github.com/lib/pq"
2014-02-19 04:18:02 +05:30
"code.gitea.io/gitea/models/migrations"
"code.gitea.io/gitea/modules/setting"
2014-02-19 04:18:02 +05:30
)
2014-10-19 11:05:24 +05:30
// Engine represents a xorm engine or session.
type Engine interface {
Delete(interface{}) (int64, error)
Exec(string, ...interface{}) (sql.Result, error)
2015-02-13 11:28:46 +05:30
Find(interface{}, ...interface{}) error
Get(interface{}) (bool, error)
Id(interface{}) *xorm.Session
In(string, ...interface{}) *xorm.Session
2014-10-19 11:05:24 +05:30
Insert(...interface{}) (int64, error)
2015-02-13 11:28:46 +05:30
InsertOne(interface{}) (int64, error)
Iterate(interface{}, xorm.IterFunc) error
2016-11-10 12:50:48 +05:30
SQL(interface{}, ...interface{}) *xorm.Session
2016-09-23 05:08:12 +05:30
Where(interface{}, ...interface{}) *xorm.Session
2014-10-19 11:05:24 +05:30
}
2015-02-13 11:28:46 +05:30
func sessionRelease(sess *xorm.Session) {
if !sess.IsCommitedOrRollbacked {
sess.Rollback()
}
sess.Close()
}
2014-03-21 11:18:10 +05:30
var (
2014-10-19 11:05:24 +05:30
x *xorm.Engine
tables []interface{}
2014-03-30 20:17:08 +05:30
HasEngine bool
2014-03-21 11:18:10 +05:30
2014-03-21 12:57:59 +05:30
DbCfg struct {
Type, Host, Name, User, Passwd, Path, SSLMode string
2014-03-21 11:18:10 +05:30
}
2014-03-31 01:31:50 +05:30
2014-04-13 01:54:09 +05:30
EnableSQLite3 bool
EnableTiDB bool
2014-03-21 11:18:10 +05:30
)
2014-04-05 20:16:32 +05:30
func init() {
2014-11-12 17:18:50 +05:30
tables = append(tables,
2015-09-18 01:41:44 +05:30
new(User), new(PublicKey), new(AccessToken),
2016-08-30 17:37:50 +05:30
new(Repository), new(DeployKey), new(Collaboration), new(Access), new(Upload),
2015-09-02 04:37:02 +05:30
new(Watch), new(Star), new(Follow), new(Action),
new(Issue), new(PullRequest), new(Comment), new(Attachment), new(IssueUser),
new(Label), new(IssueLabel), new(Milestone),
2014-10-09 03:59:18 +05:30
new(Mirror), new(Release), new(LoginSource), new(Webhook),
new(UpdateTask), new(HookTask),
new(Team), new(OrgUser), new(TeamUser), new(TeamRepo),
2015-02-12 08:28:37 +05:30
new(Notice), new(EmailAddress))
2015-08-27 20:36:14 +05:30
2015-11-07 11:09:45 +05:30
gonicNames := []string{"SSL"}
2015-08-27 20:36:14 +05:30
for _, name := range gonicNames {
core.LintGonicMapper[name] = true
}
2014-04-05 20:16:32 +05:30
}
2015-09-17 08:38:46 +05:30
func LoadConfigs() {
2014-12-31 16:07:29 +05:30
sec := setting.Cfg.Section("database")
DbCfg.Type = sec.Key("DB_TYPE").String()
2015-02-12 08:28:37 +05:30
switch DbCfg.Type {
case "sqlite3":
setting.UseSQLite3 = true
case "mysql":
setting.UseMySQL = true
case "postgres":
setting.UsePostgreSQL = true
2015-09-13 01:01:36 +05:30
case "tidb":
setting.UseTiDB = true
2014-03-31 01:31:50 +05:30
}
2014-12-31 16:07:29 +05:30
DbCfg.Host = sec.Key("HOST").String()
DbCfg.Name = sec.Key("NAME").String()
DbCfg.User = sec.Key("USER").String()
if len(DbCfg.Passwd) == 0 {
DbCfg.Passwd = sec.Key("PASSWD").String()
2014-06-11 04:41:53 +05:30
}
DbCfg.SSLMode = sec.Key("SSL_MODE").String()
DbCfg.Path = sec.Key("PATH").MustString("data/gitea.db")
2014-03-21 11:18:10 +05:30
}
2014-02-19 04:18:02 +05:30
2016-08-12 15:26:50 +05:30
// 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
}
func getEngine() (*xorm.Engine, error) {
connStr := ""
var Param string = "?"
2016-07-24 12:02:46 +05:30
if strings.Contains(DbCfg.Name, Param) {
Param = "&"
}
2014-03-30 20:17:08 +05:30
switch DbCfg.Type {
case "mysql":
if DbCfg.Host[0] == '/' { // looks like a unix socket
connStr = fmt.Sprintf("%s:%s@unix(%s)/%s%scharset=utf8&parseTime=true",
DbCfg.User, DbCfg.Passwd, DbCfg.Host, DbCfg.Name, Param)
} else {
connStr = fmt.Sprintf("%s:%s@tcp(%s)/%s%scharset=utf8&parseTime=true",
DbCfg.User, DbCfg.Passwd, DbCfg.Host, DbCfg.Name, Param)
}
2014-03-30 20:17:08 +05:30
case "postgres":
2016-08-12 15:34:50 +05:30
host, port := parsePostgreSQLHostPort(DbCfg.Host)
if host[0] == '/' { // looks like a unix socket
connStr = fmt.Sprintf("postgres://%s:%s@:%s/%s%ssslmode=%s&host=%s",
url.QueryEscape(DbCfg.User), url.QueryEscape(DbCfg.Passwd), port, DbCfg.Name, Param, DbCfg.SSLMode, host)
} else {
connStr = fmt.Sprintf("postgres://%s:%s@%s:%s/%s%ssslmode=%s",
url.QueryEscape(DbCfg.User), url.QueryEscape(DbCfg.Passwd), host, port, DbCfg.Name, Param, DbCfg.SSLMode)
}
case "sqlite3":
2014-04-13 01:54:09 +05:30
if !EnableSQLite3 {
return nil, errors.New("This binary version does not build support for SQLite3.")
2014-04-13 01:54:09 +05:30
}
2015-08-24 18:31:23 +05:30
if err := os.MkdirAll(path.Dir(DbCfg.Path), os.ModePerm); err != nil {
return nil, fmt.Errorf("Fail to create directories: %v", err)
}
connStr = "file:" + DbCfg.Path + "?cache=shared&mode=rwc"
case "tidb":
if !EnableTiDB {
return nil, errors.New("This binary version does not build support for TiDB.")
}
if err := os.MkdirAll(path.Dir(DbCfg.Path), os.ModePerm); err != nil {
return nil, fmt.Errorf("Fail to create directories: %v", err)
}
connStr = "goleveldb://" + DbCfg.Path
2014-03-30 20:17:08 +05:30
default:
return nil, fmt.Errorf("Unknown database type: %s", DbCfg.Type)
2014-03-30 20:17:08 +05:30
}
return xorm.NewEngine(DbCfg.Type, connStr)
}
func NewTestEngine(x *xorm.Engine) (err error) {
x, err = getEngine()
2014-03-30 20:17:08 +05:30
if err != nil {
2015-08-02 10:06:35 +05:30
return fmt.Errorf("Connect to database: %v", err)
2014-03-30 20:17:08 +05:30
}
2015-01-23 13:24:16 +05:30
x.SetMapper(core.GonicMapper{})
2015-09-03 14:35:58 +05:30
return x.StoreEngine("InnoDB").Sync2(tables...)
2014-03-30 20:17:08 +05:30
}
func SetEngine() (err error) {
x, err = getEngine()
2014-02-19 04:18:02 +05:30
if err != nil {
2015-08-06 20:18:11 +05:30
return fmt.Errorf("Fail to connect to database: %v", err)
2014-02-19 04:18:02 +05:30
}
2015-01-23 13:24:16 +05:30
x.SetMapper(core.GonicMapper{})
2014-12-07 06:52:48 +05:30
// WARNING: for serv command, MUST remove the output to os.stdout,
2014-03-21 01:34:56 +05:30
// so use log file to instead print to stdout.
2014-05-28 11:23:06 +05:30
logPath := path.Join(setting.LogRootPath, "xorm.log")
2014-03-31 18:56:15 +05:30
os.MkdirAll(path.Dir(logPath), os.ModePerm)
2014-02-25 11:31:52 +05:30
2014-03-31 18:56:15 +05:30
f, err := os.Create(logPath)
if err != nil {
2015-08-02 10:06:35 +05:30
return fmt.Errorf("Fail to create xorm.log: %v", err)
}
x.SetLogger(xorm.NewSimpleLogger(f))
x.ShowSQL(true)
return nil
2014-02-19 04:18:02 +05:30
}
func NewEngine() (err error) {
if err = SetEngine(); err != nil {
return err
2014-04-05 20:16:32 +05:30
}
2015-01-22 18:19:52 +05:30
if err = migrations.Migrate(x); err != nil {
2015-02-12 08:28:37 +05:30
return fmt.Errorf("migrate: %v", err)
2015-01-22 18:19:52 +05:30
}
if err = x.StoreEngine("InnoDB").Sync2(tables...); err != nil {
return fmt.Errorf("sync database struct error: %v\n", err)
2014-02-19 15:20:53 +05:30
}
2015-01-23 13:24:16 +05:30
return nil
2014-02-19 04:18:02 +05:30
}
2014-03-21 01:34:56 +05:30
type Statistic struct {
Counter struct {
2014-08-28 19:59:00 +05:30
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-21 01:34:56 +05:30
}
}
func GetStatistic() (stats Statistic) {
stats.Counter.User = CountUsers()
2014-08-28 19:59:00 +05:30
stats.Counter.Org = CountOrganizations()
2014-06-21 10:21:41 +05:30
stats.Counter.PublicKey, _ = x.Count(new(PublicKey))
2016-07-24 12:02:46 +05:30
stats.Counter.Repo = CountRepositories(true)
2014-06-21 10:21:41 +05:30
stats.Counter.Watch, _ = x.Count(new(Watch))
2014-08-28 19:59:00 +05:30
stats.Counter.Star, _ = x.Count(new(Star))
2014-06-21 10:21:41 +05:30
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-18 01:41:44 +05:30
stats.Counter.Oauth = 0
2014-08-28 19:59:00 +05:30
stats.Counter.Follow, _ = x.Count(new(Follow))
stats.Counter.Mirror, _ = x.Count(new(Mirror))
2014-06-21 10:21:41 +05:30
stats.Counter.Release, _ = x.Count(new(Release))
2015-09-11 01:15:03 +05:30
stats.Counter.LoginSource = CountLoginSources()
2014-06-21 10:21:41 +05:30
stats.Counter.Webhook, _ = x.Count(new(Webhook))
stats.Counter.Milestone, _ = x.Count(new(Milestone))
2014-08-28 19:59:00 +05:30
stats.Counter.Label, _ = x.Count(new(Label))
stats.Counter.HookTask, _ = x.Count(new(HookTask))
stats.Counter.Team, _ = x.Count(new(Team))
stats.Counter.UpdateTask, _ = x.Count(new(UpdateTask))
stats.Counter.Attachment, _ = x.Count(new(Attachment))
2014-03-23 14:01:13 +05:30
return
2014-03-21 01:34:56 +05:30
}
2014-05-05 10:25:17 +05:30
2014-08-07 02:51:24 +05:30
func Ping() error {
return x.Ping()
}
2014-05-05 10:25:17 +05:30
// DumpDatabase dumps all data from database to file system.
func DumpDatabase(filePath string) error {
2014-06-21 10:21:41 +05:30
return x.DumpAllToFile(filePath)
2014-05-05 10:25:17 +05:30
}