mirror of
https://dev.sigpipe.me/dashie/git.txt
synced 2025-10-06 01:42:49 +02:00
228 lines
6.0 KiB
Go
228 lines
6.0 KiB
Go
package models
|
|
|
|
import (
|
|
"database/sql"
|
|
"dev.sigpipe.me/dashie/git.txt/setting"
|
|
"errors"
|
|
"fmt"
|
|
// msssql
|
|
_ "github.com/denisenkom/go-mssqldb"
|
|
// mysql
|
|
_ "github.com/go-sql-driver/mysql"
|
|
"github.com/go-xorm/core"
|
|
"github.com/go-xorm/xorm"
|
|
// Postgresql
|
|
_ "github.com/lib/pq"
|
|
log "gopkg.in/clog.v1"
|
|
"net/url"
|
|
"os"
|
|
"path"
|
|
"strings"
|
|
)
|
|
|
|
// Engine represents a XORM engine or session.
|
|
type Engine interface {
|
|
Delete(interface{}) (int64, error)
|
|
Exec(string, ...interface{}) (sql.Result, error)
|
|
Find(interface{}, ...interface{}) error
|
|
Get(interface{}) (bool, error)
|
|
Id(interface{}) *xorm.Session
|
|
In(string, ...interface{}) *xorm.Session
|
|
Insert(...interface{}) (int64, error)
|
|
InsertOne(interface{}) (int64, error)
|
|
Iterate(interface{}, xorm.IterFunc) error
|
|
Sql(string, ...interface{}) *xorm.Session
|
|
Table(interface{}) *xorm.Session
|
|
Where(interface{}, ...interface{}) *xorm.Session
|
|
}
|
|
|
|
// Vars
|
|
var (
|
|
x *xorm.Engine
|
|
tables []interface{}
|
|
HasEngine bool
|
|
|
|
DbCfg struct {
|
|
Type, Host, Name, User, Passwd, Path, SSLMode string
|
|
}
|
|
|
|
EnableSQLite3 bool
|
|
)
|
|
|
|
func init() {
|
|
tables = append(tables,
|
|
new(User), new(SSHKey), new(Gitxt), new(Counter))
|
|
|
|
gonicNames := []string{"SSL"}
|
|
for _, name := range gonicNames {
|
|
core.LintGonicMapper[name] = true
|
|
}
|
|
}
|
|
|
|
// LoadConfigs to init db
|
|
func LoadConfigs() {
|
|
sec := setting.Cfg.Section("database")
|
|
DbCfg.Type = sec.Key("DB_TYPE").String()
|
|
switch DbCfg.Type {
|
|
case "sqlite3":
|
|
setting.UseSQLite3 = true
|
|
case "mysql":
|
|
setting.UseMySQL = true
|
|
case "postgres":
|
|
setting.UsePostgreSQL = true
|
|
case "mssql":
|
|
setting.UseMSSQL = true
|
|
}
|
|
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()
|
|
}
|
|
DbCfg.SSLMode = sec.Key("SSL_MODE").String()
|
|
DbCfg.Path = sec.Key("PATH").MustString("git.txt.db")
|
|
}
|
|
|
|
// 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 parseMSSQLHostPort(info string) (string, string) {
|
|
host, port := "127.0.0.1", "1433"
|
|
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
|
|
}
|
|
return host, port
|
|
}
|
|
|
|
func getEngine() (*xorm.Engine, error) {
|
|
connStr := ""
|
|
var Param = "?"
|
|
if strings.Contains(DbCfg.Name, Param) {
|
|
Param = "&"
|
|
}
|
|
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)
|
|
}
|
|
case "postgres":
|
|
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 "mssql":
|
|
host, port := parseMSSQLHostPort(DbCfg.Host)
|
|
connStr = fmt.Sprintf("server=%s; port=%s; database=%s; user id=%s; password=%s;", host, port, DbCfg.Name, DbCfg.User, DbCfg.Passwd)
|
|
case "sqlite3":
|
|
if !EnableSQLite3 {
|
|
return nil, errors.New("this binary version does not build support for SQLite3")
|
|
}
|
|
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"
|
|
default:
|
|
return nil, fmt.Errorf("unknown database type: %s", DbCfg.Type)
|
|
}
|
|
return xorm.NewEngine(DbCfg.Type, connStr)
|
|
}
|
|
|
|
// NewTestEngine to test
|
|
func NewTestEngine(x *xorm.Engine) (err error) {
|
|
x, err = getEngine()
|
|
if err != nil {
|
|
return fmt.Errorf("connect to database: %v", err)
|
|
}
|
|
|
|
x.SetMapper(core.GonicMapper{})
|
|
return x.StoreEngine("InnoDB").Sync2(tables...)
|
|
}
|
|
|
|
// SetEngine to use
|
|
func SetEngine() (err error) {
|
|
x, err = getEngine()
|
|
if err != nil {
|
|
return fmt.Errorf("fail to connect to database: %v", err)
|
|
}
|
|
|
|
x.SetMapper(core.GonicMapper{})
|
|
|
|
// WARNING: for serv command, MUST remove the output to os.stdout,
|
|
// so use log file to instead print to stdout.
|
|
sec := setting.Cfg.Section("log.xorm")
|
|
logger, err := log.NewFileWriter(path.Join(setting.LogRootPath, "xorm.log"),
|
|
log.FileRotationConfig{
|
|
Rotate: sec.Key("ROTATE").MustBool(true),
|
|
Daily: sec.Key("ROTATE_DAILY").MustBool(true),
|
|
MaxSize: sec.Key("MAX_SIZE").MustInt64(100) * 1024 * 1024,
|
|
MaxDays: sec.Key("MAX_DAYS").MustInt64(3),
|
|
})
|
|
if err != nil {
|
|
return fmt.Errorf("fail to create 'xorm.log': %v", err)
|
|
}
|
|
|
|
x.SetLogger(xorm.NewSimpleLogger3(logger, xorm.DEFAULT_LOG_PREFIX, xorm.DEFAULT_LOG_FLAG, core.LOG_DEBUG))
|
|
x.ShowSQL(true)
|
|
return nil
|
|
}
|
|
|
|
// NewEngine to use
|
|
func NewEngine() (err error) {
|
|
if err = SetEngine(); err != nil {
|
|
return err
|
|
}
|
|
|
|
// TODO: here do migrations if any
|
|
|
|
if err = x.StoreEngine("InnoDB").Sync2(tables...); err != nil {
|
|
return fmt.Errorf("sync database struct error: %v", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Ping pong
|
|
func Ping() error {
|
|
return x.Ping()
|
|
}
|
|
|
|
// InitDb from config
|
|
func InitDb() {
|
|
LoadConfigs()
|
|
|
|
if err := NewEngine(); err != nil {
|
|
log.Fatal(2, "Fail to initialize ORM engine: %v", err)
|
|
}
|
|
HasEngine = true
|
|
|
|
if EnableSQLite3 {
|
|
log.Info("SQLite3 Supported")
|
|
}
|
|
}
|