gitea/models/models.go

84 lines
1.7 KiB
Go
Raw Normal View History

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