Rainbond/db/mysql/dao/codecheck.go

106 lines
3.1 KiB
Go
Raw Normal View History

2018-03-14 14:12:26 +08:00
// Copyright (C) 2014-2018 Goodrain Co., Ltd.
// RAINBOND, Application Management Platform
2018-03-14 14:33:31 +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
// 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
// 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 dao
import (
"github.com/goodrain/rainbond/db/model"
"fmt"
2017-12-12 19:04:44 +08:00
"github.com/jinzhu/gorm"
)
2017-12-12 19:04:44 +08:00
//AddModel AddModel
func (c *CodeCheckResultDaoImpl) AddModel(mo model.Interface) error {
result := mo.(*model.CodeCheckResult)
var oldResult model.CodeCheckResult
if ok := c.DB.Where("service_id=?", result.ServiceID).Find(&oldResult).RecordNotFound(); ok {
if err := c.DB.Create(result).Error; err != nil {
return err
}
} else {
fmt.Errorf("codecheck result is exist")
2017-12-12 19:04:44 +08:00
update(result, &oldResult)
if err := c.DB.Save(&oldResult).Error; err != nil {
return err
}
return nil
}
return nil
}
//UpdateModel UpdateModel
func (c *CodeCheckResultDaoImpl) UpdateModel(mo model.Interface) error {
result := mo.(*model.CodeCheckResult)
var oldResult model.CodeCheckResult
if ok := c.DB.Where("service_id=?", result.ServiceID).Find(&oldResult).RecordNotFound(); !ok {
2017-12-12 19:04:44 +08:00
update(result, &oldResult)
if err := c.DB.Save(&oldResult).Error; err != nil {
return err
}
}
return nil
}
2017-12-12 19:04:44 +08:00
//CodeCheckResultDaoImpl EventLogMessageDaoImpl
type CodeCheckResultDaoImpl struct {
DB *gorm.DB
}
2017-12-12 19:04:44 +08:00
func update(target, old *model.CodeCheckResult) {
//o,_:=json.Marshal(old)
//t,_:=json.Marshal(target)
//logrus.Infof("before update,stared is %s,target is ",string(o),string(t))
2017-12-12 19:04:44 +08:00
if target.DockerFileReady != old.DockerFileReady {
2017-12-12 19:04:44 +08:00
old.DockerFileReady = !old.DockerFileReady
}
2017-12-12 19:04:44 +08:00
if target.VolumeList != "" && target.VolumeList != "null" {
old.VolumeList = target.VolumeList
}
2017-12-12 19:04:44 +08:00
if target.PortList != "" && target.PortList != "null" {
old.PortList = target.PortList
}
2017-12-12 19:04:44 +08:00
if target.BuildImageName != "" {
old.BuildImageName = target.BuildImageName
}
2017-12-12 19:04:44 +08:00
if target.VolumeMountPath != "" {
old.VolumeMountPath = target.VolumeMountPath
}
2017-12-12 19:04:44 +08:00
if target.InnerPort != "" {
old.InnerPort = target.InnerPort
}
//o2,_:=json.Marshal(old)
//t2,_:=json.Marshal(target)
//logrus.Infof("after update,%s,%s",string(o2),string(t2))
}
2017-12-12 19:04:44 +08:00
//GetCodeCheckResult get event log message
func (c *CodeCheckResultDaoImpl) GetCodeCheckResult(serviceID string) (*model.CodeCheckResult, error) {
var result model.CodeCheckResult
if err := c.DB.Where("service_id=?", serviceID).Find(&result).Error; err != nil {
if err == gorm.ErrRecordNotFound {
//return messageRaw, nil
}
return nil, err
}
return &result, nil
}