2018-03-14 14:12:26 +08:00
|
|
|
// Copyright (C) 2014-2018 Goodrain Co., Ltd.
|
2017-11-07 11:40:44 +08:00
|
|
|
// RAINBOND, Application Management Platform
|
2018-03-14 14:33:31 +08:00
|
|
|
|
2017-11-07 11:40:44 +08:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version. For any non-GPL usage of Rainbond,
|
|
|
|
// one or multiple Commercial Licenses authorized by Goodrain Co., Ltd.
|
|
|
|
// must be obtained first.
|
2018-03-14 14:33:31 +08:00
|
|
|
|
2017-11-07 11:40:44 +08:00
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2018-03-14 14:33:31 +08:00
|
|
|
|
2017-11-07 11:40:44 +08:00
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package db
|
|
|
|
|
|
|
|
import (
|
2017-11-30 15:03:10 +08:00
|
|
|
"errors"
|
|
|
|
|
2018-04-24 16:44:59 +08:00
|
|
|
"github.com/goodrain/rainbond/db/config"
|
|
|
|
"github.com/goodrain/rainbond/db/dao"
|
|
|
|
"github.com/goodrain/rainbond/db/mysql"
|
2017-11-07 11:40:44 +08:00
|
|
|
|
|
|
|
"github.com/jinzhu/gorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
//Manager db manager
|
|
|
|
type Manager interface {
|
|
|
|
CloseManager() error
|
|
|
|
Begin() *gorm.DB
|
|
|
|
LicenseDao() dao.LicenseDao
|
2018-05-10 17:45:23 +08:00
|
|
|
AppDao() dao.AppDao
|
2017-11-07 11:40:44 +08:00
|
|
|
TenantDao() dao.TenantDao
|
|
|
|
TenantDaoTransactions(db *gorm.DB) dao.TenantDao
|
|
|
|
EventLogDao() dao.EventLogDao
|
|
|
|
EventLogDaoTransactions(*gorm.DB) dao.EventLogDao
|
|
|
|
TenantServiceDao() dao.TenantServiceDao
|
|
|
|
TenantServiceDeleteDao() dao.TenantServiceDeleteDao
|
|
|
|
TenantServiceDaoTransactions(db *gorm.DB) dao.TenantServiceDao
|
|
|
|
TenantServiceDeleteDaoTransactions(db *gorm.DB) dao.TenantServiceDeleteDao
|
|
|
|
TenantServicesPortDao() dao.TenantServicesPortDao
|
|
|
|
TenantServicesPortDaoTransactions(*gorm.DB) dao.TenantServicesPortDao
|
|
|
|
TenantServiceRelationDao() dao.TenantServiceRelationDao
|
|
|
|
TenantServiceRelationDaoTransactions(*gorm.DB) dao.TenantServiceRelationDao
|
|
|
|
TenantServiceEnvVarDao() dao.TenantServiceEnvVarDao
|
|
|
|
TenantServiceEnvVarDaoTransactions(*gorm.DB) dao.TenantServiceEnvVarDao
|
|
|
|
TenantServiceMountRelationDao() dao.TenantServiceMountRelationDao
|
|
|
|
TenantServiceMountRelationDaoTransactions(db *gorm.DB) dao.TenantServiceMountRelationDao
|
|
|
|
TenantServiceVolumeDao() dao.TenantServiceVolumeDao
|
|
|
|
TenantServiceVolumeDaoTransactions(*gorm.DB) dao.TenantServiceVolumeDao
|
|
|
|
K8sServiceDao() dao.K8sServiceDao
|
|
|
|
K8sServiceDaoTransactions(*gorm.DB) dao.K8sServiceDao
|
|
|
|
K8sDeployReplicationDao() dao.K8sDeployReplicationDao
|
|
|
|
K8sPodDao() dao.K8sPodDao
|
|
|
|
K8sPodDaoTransactions(*gorm.DB) dao.K8sPodDao
|
|
|
|
ServiceProbeDao() dao.ServiceProbeDao
|
|
|
|
ServiceProbeDaoTransactions(*gorm.DB) dao.ServiceProbeDao
|
|
|
|
TenantServiceLBMappingPortDao() dao.TenantServiceLBMappingPortDao
|
|
|
|
TenantServiceLBMappingPortDaoTransactions(*gorm.DB) dao.TenantServiceLBMappingPortDao
|
|
|
|
TenantServiceLabelDao() dao.TenantServiceLabelDao
|
|
|
|
TenantServiceLabelDaoTransactions(db *gorm.DB) dao.TenantServiceLabelDao
|
|
|
|
TenantServiceStatusDao() dao.ServiceStatusDao
|
|
|
|
TenantServiceStatusDaoTransactions(db *gorm.DB) dao.ServiceStatusDao
|
|
|
|
LocalSchedulerDao() dao.LocalSchedulerDao
|
|
|
|
TenantPluginDaoTransactions(db *gorm.DB) dao.TenantPluginDao
|
|
|
|
TenantPluginDao() dao.TenantPluginDao
|
|
|
|
TenantPluginDefaultENVDaoTransactions(db *gorm.DB) dao.TenantPluginDefaultENVDao
|
|
|
|
TenantPluginDefaultENVDao() dao.TenantPluginDefaultENVDao
|
|
|
|
TenantPluginBuildVersionDao() dao.TenantPluginBuildVersionDao
|
|
|
|
TenantPluginBuildVersionDaoTransactions(db *gorm.DB) dao.TenantPluginBuildVersionDao
|
|
|
|
TenantPluginVersionENVDao() dao.TenantPluginVersionEnvDao
|
|
|
|
TenantPluginVersionENVDaoTransactions(db *gorm.DB) dao.TenantPluginVersionEnvDao
|
|
|
|
TenantServicePluginRelationDao() dao.TenantServicePluginRelationDao
|
|
|
|
TenantServicePluginRelationDaoTransactions(db *gorm.DB) dao.TenantServicePluginRelationDao
|
2017-11-30 15:03:10 +08:00
|
|
|
TenantServicesStreamPluginPortDao() dao.TenantServicesStreamPluginPortDao
|
|
|
|
TenantServicesStreamPluginPortDaoTransactions(db *gorm.DB) dao.TenantServicesStreamPluginPortDao
|
2017-11-14 18:54:27 +08:00
|
|
|
|
|
|
|
CodeCheckResultDao() dao.CodeCheckResultDao
|
|
|
|
CodeCheckResultDaoTransactions(db *gorm.DB) dao.CodeCheckResultDao
|
2017-11-15 15:14:34 +08:00
|
|
|
|
|
|
|
AppPublishDao() dao.AppPublishDao
|
|
|
|
AppPublishDaoTransactions(db *gorm.DB) dao.AppPublishDao
|
2017-11-16 16:30:22 +08:00
|
|
|
|
|
|
|
ServiceEventDao() dao.EventDao
|
|
|
|
ServiceEventDaoTransactions(db *gorm.DB) dao.EventDao
|
2017-11-20 17:29:39 +08:00
|
|
|
|
|
|
|
VersionInfoDao() dao.VersionInfoDao
|
|
|
|
VersionInfoDaoTransactions(db *gorm.DB) dao.VersionInfoDao
|
2017-12-03 19:11:16 +08:00
|
|
|
|
|
|
|
RegionUserInfoDao() dao.RegionUserInfoDao
|
|
|
|
RegionUserInfoDaoTransactions(db *gorm.DB) dao.RegionUserInfoDao
|
2017-12-07 09:56:08 +08:00
|
|
|
|
|
|
|
RegionAPIClassDao() dao.RegionAPIClassDao
|
|
|
|
RegionAPIClassDaoTransactions(db *gorm.DB) dao.RegionAPIClassDao
|
2018-01-02 18:02:08 +08:00
|
|
|
|
|
|
|
RegionProcotolsDao() dao.RegionProcotolsDao
|
2018-05-11 13:44:15 +08:00
|
|
|
|
|
|
|
NotificationEventDao() dao.NotificationEventDao
|
2017-11-07 11:40:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var defaultManager Manager
|
|
|
|
|
|
|
|
//CreateManager 创建manager
|
|
|
|
func CreateManager(config config.Config) (err error) {
|
|
|
|
if config.DBType == "mysql" || config.DBType == "cockroachdb" {
|
|
|
|
defaultManager, err = mysql.CreateManager(config)
|
|
|
|
} else {
|
|
|
|
//TODO:etcd 插件实现
|
|
|
|
//defaultManager, err = etcd.CreateManager(config)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
//CloseManager 关闭
|
|
|
|
func CloseManager() error {
|
|
|
|
if defaultManager == nil {
|
|
|
|
return errors.New("default db manager not init")
|
|
|
|
}
|
|
|
|
return defaultManager.CloseManager()
|
|
|
|
}
|
|
|
|
|
|
|
|
//GetManager 获取管理器
|
|
|
|
func GetManager() Manager {
|
|
|
|
return defaultManager
|
|
|
|
}
|