gitea/models/models.go

99 lines
2.1 KiB
Go
Raw Normal View History

2014-02-12 10:49:46 -07: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 15:48:02 -07:00
import (
"fmt"
"os"
2014-02-19 11:04:31 -07:00
"os/user"
2014-02-18 15:48:02 -07:00
_ "github.com/go-sql-driver/mysql"
"github.com/lunny/xorm"
2014-03-07 15:22:15 -07:00
"github.com/gogits/gogs/modules/base"
2014-02-18 15:48:02 -07:00
)
2014-02-14 07:20:57 -07:00
var (
2014-02-14 16:16:54 -07:00
orm *xorm.Engine
2014-02-19 02:50:53 -07:00
RepoRootPath string
)
2014-02-14 07:20:57 -07:00
type Members struct {
Id int64
OrgId int64 `xorm:"unique(s) index"`
UserId int64 `xorm:"unique(s)"`
}
2014-02-14 07:20:57 -07:00
type Issue struct {
Id int64
RepoId int64 `xorm:"index"`
PosterId int64
}
2014-02-14 07:20:57 -07:00
type PullRequest struct {
Id int64
}
2014-02-14 07:20:57 -07:00
type Comment struct {
Id int64
}
2014-02-18 15:48:02 -07:00
func setEngine() {
2014-03-07 15:22:15 -07:00
dbType := base.Cfg.MustValue("database", "DB_TYPE")
dbHost := base.Cfg.MustValue("database", "HOST")
dbName := base.Cfg.MustValue("database", "NAME")
dbUser := base.Cfg.MustValue("database", "USER")
dbPwd := base.Cfg.MustValue("database", "PASSWD")
2014-02-18 15:48:02 -07:00
2014-02-19 11:04:31 -07:00
uname, err := user.Current()
if err != nil {
fmt.Printf("models.init -> fail to get user: %s\n", err)
os.Exit(2)
}
if uname.Username == "jiahuachen" {
2014-03-07 15:22:15 -07:00
dbPwd = base.Cfg.MustValue("database", "PASSWD_jiahua")
2014-02-19 11:04:31 -07:00
}
2014-02-18 15:48:02 -07:00
switch dbType {
case "mysql":
orm, err = xorm.NewEngine("mysql", fmt.Sprintf("%v:%v@%v/%v?charset=utf8",
dbUser, dbPwd, dbHost, dbName))
default:
2014-02-19 11:04:31 -07:00
fmt.Printf("Unknown database type: %s\n", dbType)
2014-02-18 15:48:02 -07:00
os.Exit(2)
}
if err != nil {
2014-02-19 11:04:31 -07:00
fmt.Printf("models.init -> fail to conntect database: %s\n", dbType)
2014-02-18 15:48:02 -07:00
os.Exit(2)
}
2014-02-24 23:01:52 -07:00
//TODO: for serv command, MUST remove the output to os.stdout, so
// use log file to instead print to stdout
2014-02-18 15:48:02 -07:00
//x.ShowDebug = true
2014-02-24 23:01:52 -07:00
//orm.ShowErr = true
2014-02-25 00:28:04 -07:00
f, _ := os.Create("xorm.log")
orm.Logger = f
orm.ShowSQL = true
2014-02-18 15:48:02 -07:00
2014-02-24 23:01:52 -07:00
//log.Trace("Initialized database -> %s", dbName)
2014-02-19 23:53:56 -07:00
2014-03-07 15:22:15 -07:00
RepoRootPath = base.Cfg.MustValue("repository", "ROOT")
2014-03-06 00:21:44 -07:00
if uname.Username == "jiahuachen" {
2014-03-07 15:22:15 -07:00
RepoRootPath = base.Cfg.MustValue("repository", "ROOT_jiahuachen")
2014-03-06 00:21:44 -07:00
}
2014-02-18 15:48:02 -07:00
}
func init() {
setEngine()
2014-03-09 18:06:29 -06:00
err := orm.Sync(new(User), new(PublicKey), new(Repository), new(Access))
2014-02-19 02:50:53 -07:00
if err != nil {
2014-02-19 11:04:31 -07:00
fmt.Printf("sync database struct error: %s\n", err)
os.Exit(2)
2014-02-19 02:50:53 -07:00
}
2014-02-18 15:48:02 -07:00
}