gitea/models/models.go

76 lines
1.4 KiB
Go
Raw Normal View History

2014-02-12 18:49:46 +01:00
// 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-18 23:48:02 +01:00
import (
"fmt"
"os"
_ "github.com/go-sql-driver/mysql"
"github.com/lunny/xorm"
"github.com/gogits/gogs/utils"
"github.com/gogits/gogs/utils/log"
)
2014-02-14 15:20:57 +01:00
var (
2014-02-15 00:16:54 +01:00
orm *xorm.Engine
repoRootPath string
)
2014-02-14 15:20:57 +01:00
type Members struct {
Id int64
OrgId int64 `xorm:"unique(s) index"`
UserId int64 `xorm:"unique(s)"`
}
2014-02-14 15:20:57 +01:00
type Issue struct {
Id int64
RepoId int64 `xorm:"index"`
PosterId int64
}
2014-02-14 15:20:57 +01:00
type PullRequest struct {
Id int64
}
2014-02-14 15:20:57 +01:00
type Comment struct {
Id int64
}
2014-02-18 23:48:02 +01:00
func setEngine() {
dbType := utils.Cfg.MustValue("database", "DB_TYPE")
dbHost := utils.Cfg.MustValue("database", "HOST")
dbName := utils.Cfg.MustValue("database", "NAME")
dbUser := utils.Cfg.MustValue("database", "USER")
dbPwd := utils.Cfg.MustValue("database", "PASSWD")
var err error
switch dbType {
case "mysql":
orm, err = xorm.NewEngine("mysql", fmt.Sprintf("%v:%v@%v/%v?charset=utf8",
dbUser, dbPwd, dbHost, dbName))
default:
log.Critical("Unknown database type: %s", dbType)
os.Exit(2)
}
if err != nil {
log.Critical("models.init -> Conntect database: %s", dbType)
os.Exit(2)
}
//x.ShowDebug = true
orm.ShowErr = true
//x.ShowSQL = true
log.Trace("Initialized database -> %s", dbName)
}
func init() {
setEngine()
orm.Sync(new(User))
}