gitea/models/models.go

97 lines
2.2 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/lib/pq"
2014-02-18 23:48:02 +01:00
"github.com/lunny/xorm"
2014-03-07 23:22:15 +01:00
"github.com/gogits/gogs/modules/base"
2014-02-18 23:48:02 +01:00
)
2014-02-14 15:20:57 +01:00
var (
2014-02-15 00:16:54 +01:00
orm *xorm.Engine
2014-02-19 10:50:53 +01:00
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() {
2014-03-07 23:22:15 +01: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")
sslMode := base.Cfg.MustValue("database", "SSL_MODE")
2014-02-18 23:48:02 +01:00
2014-03-11 04:03:17 +01:00
var err error
2014-02-18 23:48:02 +01:00
switch dbType {
case "mysql":
orm, err = xorm.NewEngine("mysql", fmt.Sprintf("%s:%s@%s/%s?charset=utf8",
2014-02-18 23:48:02 +01:00
dbUser, dbPwd, dbHost, dbName))
case "postgres":
orm, err = xorm.NewEngine("postgres", fmt.Sprintf("user=%s password=%s dbname=%s sslmode=%s",
dbUser, dbPwd, dbName, sslMode))
2014-02-18 23:48:02 +01:00
default:
2014-02-19 19:04:31 +01:00
fmt.Printf("Unknown database type: %s\n", dbType)
2014-02-18 23:48:02 +01:00
os.Exit(2)
}
if err != nil {
fmt.Printf("models.init(fail to conntect database): %v\n", err)
2014-02-18 23:48:02 +01:00
os.Exit(2)
}
// TODO: for serv command, MUST remove the output to os.stdout, so
2014-02-25 07:01:52 +01:00
// use log file to instead print to stdout
2014-02-18 23:48:02 +01:00
//x.ShowDebug = true
2014-02-25 07:01:52 +01:00
//orm.ShowErr = true
f, err := os.Create("xorm.log")
if err != nil {
fmt.Printf("models.init(fail to create xorm.log): %v\n", err)
os.Exit(2)
}
2014-02-25 08:28:04 +01:00
orm.Logger = f
orm.ShowSQL = true
2014-02-18 23:48:02 +01:00
// Determine and create root git reposiroty path.
2014-03-07 23:22:15 +01:00
RepoRootPath = base.Cfg.MustValue("repository", "ROOT")
2014-03-12 03:38:33 +01:00
if err = os.MkdirAll(RepoRootPath, os.ModePerm); err != nil {
fmt.Printf("models.init(fail to create RepoRootPath(%s)): %v\n", RepoRootPath, err)
2014-03-12 03:38:33 +01:00
os.Exit(2)
}
2014-02-18 23:48:02 +01:00
}
func init() {
setEngine()
2014-03-20 04:20:55 +01:00
if err := orm.Sync(new(User), new(PublicKey), new(Repository), new(Access),
new(Action), new(Watch)); err != nil {
fmt.Printf("sync database struct error: %v\n", err)
2014-02-19 19:04:31 +01:00
os.Exit(2)
2014-02-19 10:50:53 +01:00
}
2014-02-18 23:48:02 +01:00
}