审查视图

pkg/infrastructure/pg/init.go 1.5 KB
tangxvhui authored
1 2 3 4
package pg

import (
	"fmt"
Your Name authored
5
tangxvhui authored
6
	"github.com/go-pg/pg/v10"
tangxvhui authored
7
	"github.com/go-pg/pg/v10/orm"
郑周 authored
8
	"github.com/linmadan/egglib-go/persistent/pg/comment"
tangxvhui authored
9 10
	"github.com/linmadan/egglib-go/persistent/pg/hooks"
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/constant"
tangxvhui authored
11 12
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/infrastructure/pg/models"
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/log"
tangxvhui authored
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
)

var DB *pg.DB

func init() {
	DB = pg.Connect(&pg.Options{
		User:     constant.POSTGRESQL_USER,
		Password: constant.POSTGRESQL_PASSWORD,
		Database: constant.POSTGRESQL_DB_NAME,
		Addr:     fmt.Sprintf("%s:%s", constant.POSTGRESQL_HOST, constant.POSTGRESQL_PORT),
	})
	if !constant.DISABLE_SQL_GENERATE_PRINT {
		DB.AddQueryHook(hooks.SqlGeneratePrintHook{
			Logger: log.Logger,
		})
	}
tangxvhui authored
29 30 31 32 33
	if !constant.DISABLE_CREATE_TABLE {
		tables := []interface{}{
			&models.Company{},
			&models.Department{},
			&models.User{},
tangxvhui authored
34
			&models.ReceivedMessage{},
郑周 authored
35 36
			&models.Role{},
			&models.RoleUser{},
庄敏学 authored
37
			&models.Position{},
郑周 authored
38 39 40 41 42
			&models.EvaluationRule{},
			&models.EvaluationTemplate{},
			&models.EvaluationCycle{},
			&models.EvaluationCycleTemplate{},
			&models.EvaluationProject{},
郑周 authored
43
			&models.NodeTask{},
Your Name authored
44 45
			&models.StaffAssess{},
			&models.StaffAssessTask{},
Your Name authored
46
			&models.StaffAssessContent{},
tangxvhui authored
47 48 49 50 51 52 53 54 55 56
		}
		for _, model := range tables {
			err := DB.Model(model).CreateTable(&orm.CreateTableOptions{
				Temp:          false,
				IfNotExists:   true,
				FKConstraints: true,
			})
			if err != nil {
				panic(err)
			}
57 58 59 60
			comment.AddComments(DB, model)
		}
	}
tangxvhui authored
61
}