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