2018-03-14 14:12:26 +08:00
// Copyright (C) 2014-2018 Goodrain Co., Ltd.
2017-11-16 16:30:22 +08:00
// RAINBOND, Application Management Platform
2018-03-14 14:33:31 +08:00
2017-11-16 16:30:22 +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-16 16:30:22 +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-16 16:30:22 +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 (
2019-08-23 20:33:38 +08:00
"strings"
2017-12-12 19:04:44 +08:00
"time"
2018-01-05 10:40:21 +08:00
"github.com/Sirupsen/logrus"
2018-04-24 16:44:59 +08:00
"github.com/goodrain/rainbond/db/model"
2017-11-16 16:30:22 +08:00
"github.com/jinzhu/gorm"
2017-12-12 19:04:44 +08:00
)
2017-11-16 16:30:22 +08:00
//AddModel AddModel
func ( c * EventDaoImpl ) AddModel ( mo model . Interface ) error {
result := mo . ( * model . ServiceEvent )
2017-11-16 17:22:08 +08:00
var oldResult model . ServiceEvent
2017-11-16 16:30:22 +08:00
if ok := c . DB . Where ( "event_id=?" , result . EventID ) . Find ( & oldResult ) . RecordNotFound ( ) ; ok {
if err := c . DB . Create ( result ) . Error ; err != nil {
return err
}
} else {
2017-11-22 19:28:56 +08:00
logrus . Infoln ( "event result is exist" )
return c . UpdateModel ( mo )
2017-11-16 16:30:22 +08:00
}
return nil
}
//UpdateModel UpdateModel
func ( c * EventDaoImpl ) UpdateModel ( mo model . Interface ) error {
2019-08-24 19:02:24 +08:00
update := mo . ( * model . ServiceEvent )
2017-11-16 16:30:22 +08:00
var oldResult model . ServiceEvent
2019-08-24 19:02:24 +08:00
if ok := c . DB . Where ( "event_id=?" , update . EventID ) . Find ( & oldResult ) . RecordNotFound ( ) ; ! ok {
update . ID = oldResult . ID
if err := c . DB . Save ( & update ) . Error ; err != nil {
2017-11-16 16:30:22 +08:00
return err
}
}
return nil
}
2017-12-12 19:04:44 +08:00
//EventDaoImpl EventLogMessageDaoImpl
2017-11-16 16:30:22 +08:00
type EventDaoImpl struct {
DB * gorm . DB
}
2017-12-12 19:04:44 +08:00
//GetEventByEventID get event log message
2017-11-16 16:30:22 +08:00
func ( c * EventDaoImpl ) GetEventByEventID ( eventID string ) ( * model . ServiceEvent , error ) {
var result model . ServiceEvent
if err := c . DB . Where ( "event_id=?" , eventID ) . Find ( & result ) . Error ; err != nil {
2018-02-06 14:59:21 +08:00
return nil , err
}
return & result , nil
}
//GetEventByEventIDs get event info
func ( c * EventDaoImpl ) GetEventByEventIDs ( eventIDs [ ] string ) ( [ ] * model . ServiceEvent , error ) {
var result [ ] * model . ServiceEvent
if err := c . DB . Where ( "event_id in (?)" , eventIDs ) . Find ( & result ) . Error ; err != nil {
2017-11-16 16:30:22 +08:00
if err == gorm . ErrRecordNotFound {
2018-02-06 14:59:21 +08:00
return nil , nil
2017-11-16 16:30:22 +08:00
}
return nil , err
}
2018-02-06 14:59:21 +08:00
return result , nil
2017-11-16 16:30:22 +08:00
}
2017-12-12 19:04:44 +08:00
//GetEventByServiceID get event log message
2017-11-16 16:30:22 +08:00
func ( c * EventDaoImpl ) GetEventByServiceID ( serviceID string ) ( [ ] * model . ServiceEvent , error ) {
var result [ ] * model . ServiceEvent
if err := c . DB . Where ( "service_id=?" , serviceID ) . Find ( & result ) . Order ( "start_time DESC" ) . Error ; err != nil {
if err == gorm . ErrRecordNotFound {
2019-08-23 20:33:38 +08:00
return result , nil
2017-11-16 16:30:22 +08:00
}
return nil , err
}
return result , nil
}
2018-05-11 13:44:15 +08:00
2019-08-22 16:07:26 +08:00
//DelEventByServiceID delete event log
2018-09-02 23:17:56 +08:00
func ( c * EventDaoImpl ) DelEventByServiceID ( serviceID string ) error {
2018-08-30 18:49:52 +08:00
var result [ ] * model . ServiceEvent
2018-06-14 17:21:02 +08:00
isNoteExist := c . DB . Where ( "service_id=?" , serviceID ) . Find ( & result ) . RecordNotFound ( )
2018-08-30 18:49:52 +08:00
if isNoteExist {
2018-06-14 17:21:02 +08:00
return nil
}
2018-08-30 18:49:52 +08:00
if err := c . DB . Where ( "service_id=?" , serviceID ) . Delete ( result ) . Error ; err != nil {
2018-06-14 14:32:36 +08:00
return err
}
return nil
}
2019-08-23 20:33:38 +08:00
// GetEventsByTarget get event by target with page
func ( c * EventDaoImpl ) GetEventsByTarget ( target , targetID string , offset , limit int ) ( [ ] * model . ServiceEvent , int , error ) {
2019-08-22 16:07:26 +08:00
var result [ ] * model . ServiceEvent
2019-08-23 20:33:38 +08:00
var total int
db := c . DB
2019-08-24 19:02:24 +08:00
if target != "" && targetID != "" {
// Compatible with previous 5.1.7 data, with null target and targetid
if strings . TrimSpace ( target ) == "service" {
db = db . Where ( "service_id=? or (target=? and target_id=?) " , strings . TrimSpace ( targetID ) , strings . TrimSpace ( target ) , strings . TrimSpace ( targetID ) )
} else {
db = db . Where ( "target=? and target_id=?" , strings . TrimSpace ( target ) , strings . TrimSpace ( targetID ) )
}
2019-08-23 20:33:38 +08:00
}
2019-08-23 22:20:35 +08:00
if err := db . Find ( & result ) . Count ( & total ) . Error ; err != nil {
2019-08-23 20:33:38 +08:00
return nil , 0 , err
}
2019-09-01 11:00:07 +08:00
if err := db . Offset ( offset ) . Limit ( limit ) . Order ( "create_time DESC, id DESC" ) . Find ( & result ) . Error ; err != nil {
2019-08-22 16:07:26 +08:00
if err == gorm . ErrRecordNotFound {
2019-08-23 20:33:38 +08:00
return result , 0 , nil
2019-08-22 16:07:26 +08:00
}
2019-08-23 20:33:38 +08:00
return nil , 0 , err
2019-08-22 16:07:26 +08:00
}
2019-08-23 20:33:38 +08:00
return result , total , nil
2019-08-22 16:07:26 +08:00
}
2019-08-23 20:33:38 +08:00
// GetEventsByTenantID get event by tenantID
func ( c * EventDaoImpl ) GetEventsByTenantID ( tenantID string , offset , limit int ) ( [ ] * model . ServiceEvent , int , error ) {
2019-08-22 16:07:26 +08:00
var result [ ] * model . ServiceEvent
2019-08-23 14:21:51 +08:00
var total int
2019-08-23 20:33:38 +08:00
db := c . DB . Where ( "tenant_id=?" , tenantID )
if err := db . Find ( & result ) . Count ( & total ) . Error ; err != nil {
2019-08-23 14:21:51 +08:00
return nil , 0 , err
}
2019-08-26 10:43:11 +08:00
if err := db . Offset ( offset ) . Limit ( limit ) . Order ( "start_time DESC, id DESC" ) . Find ( & result ) . Error ; err != nil {
2019-08-22 16:07:26 +08:00
if err == gorm . ErrRecordNotFound {
2019-08-23 14:21:51 +08:00
return result , 0 , nil
2019-08-22 16:07:26 +08:00
}
2019-08-23 14:21:51 +08:00
return nil , 0 , err
2019-08-22 16:07:26 +08:00
}
2019-08-23 14:21:51 +08:00
return result , total , nil
2019-08-23 20:33:38 +08:00
}
2019-08-23 15:52:19 +08:00
2019-08-29 14:15:46 +08:00
//GetLastASyncEvent get last sync event
func ( c * EventDaoImpl ) GetLastASyncEvent ( target , targetID string ) ( * model . ServiceEvent , error ) {
2019-08-23 06:48:08 +08:00
var result model . ServiceEvent
2019-08-29 14:15:46 +08:00
if err := c . DB . Where ( "target=? and target_id=? and syn_type=0" , target , targetID ) . Last ( & result ) . Error ; err != nil {
2019-08-25 22:19:27 +08:00
return nil , err
}
return & result , nil
}
2019-08-29 14:15:46 +08:00
// UnfinishedEvents returns unfinished events.
func ( c * EventDaoImpl ) UnfinishedEvents ( target , targetID string , optTypes ... string ) ( [ ] * model . ServiceEvent , error ) {
var result [ ] * model . ServiceEvent
if err := c . DB . Where ( "target=? and target_id=? and status=? and opt_type in (?)" , target , targetID , model . EventStatusFailure . String ( ) , optTypes ) .
Find ( & result ) . Error ; err != nil {
2019-08-23 06:48:08 +08:00
return nil , err
}
2019-08-29 14:15:46 +08:00
return result , nil
2019-08-24 19:02:24 +08:00
}
2019-08-23 15:52:19 +08:00
2019-08-29 14:15:46 +08:00
// LatestFailurePodEvent returns the latest failure pod event.
func ( c * EventDaoImpl ) LatestFailurePodEvent ( podName string ) ( * model . ServiceEvent , error ) {
var event model . ServiceEvent
2019-09-01 11:00:07 +08:00
if err := c . DB . Where ( "target=? and target_id=? and status=? and final_status<>?" , model . TargetTypePod , podName , model . EventStatusFailure . String ( ) , model . EventFinalStatusEmptyComplete . String ( ) ) .
2019-08-29 14:15:46 +08:00
Last ( & event ) . Error ; err != nil {
2019-08-24 19:02:24 +08:00
return nil , err
}
2019-08-29 14:15:46 +08:00
return & event , nil
2019-08-22 16:07:26 +08:00
}
2018-05-11 13:44:15 +08:00
//NotificationEventDaoImpl NotificationEventDaoImpl
type NotificationEventDaoImpl struct {
DB * gorm . DB
}
//AddModel AddModel
func ( c * NotificationEventDaoImpl ) AddModel ( mo model . Interface ) error {
result := mo . ( * model . NotificationEvent )
result . LastTime = time . Now ( )
result . FirstTime = time . Now ( )
2018-08-10 10:49:50 +08:00
result . CreatedAt = time . Now ( )
2018-05-11 13:44:15 +08:00
var oldResult model . NotificationEvent
2018-08-08 11:28:17 +08:00
if ok := c . DB . Where ( "hash = ?" , result . Hash ) . Find ( & oldResult ) . RecordNotFound ( ) ; ok {
2018-05-11 13:44:15 +08:00
if err := c . DB . Create ( result ) . Error ; err != nil {
return err
}
} else {
return c . UpdateModel ( mo )
}
return nil
}
//UpdateModel UpdateModel
func ( c * NotificationEventDaoImpl ) UpdateModel ( mo model . Interface ) error {
result := mo . ( * model . NotificationEvent )
var oldResult model . NotificationEvent
2018-08-08 11:28:17 +08:00
if ok := c . DB . Where ( "hash = ?" , result . Hash ) . Find ( & oldResult ) . RecordNotFound ( ) ; ! ok {
2018-05-11 13:44:15 +08:00
result . FirstTime = oldResult . FirstTime
result . ID = oldResult . ID
2018-11-13 12:07:01 +08:00
return c . DB . Save ( result ) . Error
2018-05-11 13:44:15 +08:00
}
2018-11-13 12:07:01 +08:00
return gorm . ErrRecordNotFound
2018-05-11 13:44:15 +08:00
}
//GetNotificationEventByKind GetNotificationEventByKind
func ( c * NotificationEventDaoImpl ) GetNotificationEventByKind ( kind , kindID string ) ( [ ] * model . NotificationEvent , error ) {
var result [ ] * model . NotificationEvent
if err := c . DB . Where ( "kind=? and kind_id=?" , kind , kindID ) . Find ( & result ) . Order ( "last_time DESC" ) . Error ; err != nil {
if err == gorm . ErrRecordNotFound {
return result , nil
}
return nil , err
}
return result , nil
}
//GetNotificationEventByTime GetNotificationEventByTime
func ( c * NotificationEventDaoImpl ) GetNotificationEventByTime ( start , end time . Time ) ( [ ] * model . NotificationEvent , error ) {
var result [ ] * model . NotificationEvent
if ! start . IsZero ( ) && ! end . IsZero ( ) {
2018-08-30 18:49:52 +08:00
if err := c . DB . Where ( "last_time>? and last_time<? and is_handle=?" , start , end , 0 ) . Find ( & result ) . Order ( "last_time DESC" ) . Error ; err != nil {
2018-05-11 13:44:15 +08:00
if err == gorm . ErrRecordNotFound {
return result , nil
}
return nil , err
}
return result , nil
}
2018-08-30 18:49:52 +08:00
if err := c . DB . Where ( "last_time<? and is_handle=?" , time . Now ( ) , 0 ) . Find ( & result ) . Order ( "last_time DESC" ) . Error ; err != nil {
2018-05-11 13:44:15 +08:00
if err == gorm . ErrRecordNotFound {
return result , nil
}
return nil , err
}
return result , nil
}
//GetNotificationEventNotHandle GetNotificationEventNotHandle
func ( c * NotificationEventDaoImpl ) GetNotificationEventNotHandle ( ) ( [ ] * model . NotificationEvent , error ) {
var result [ ] * model . NotificationEvent
if err := c . DB . Where ( "is_handle=?" , false ) . Find ( & result ) . Order ( "last_time DESC" ) . Error ; err != nil {
if err == gorm . ErrRecordNotFound {
return result , nil
}
return nil , err
}
return result , nil
}
//GetNotificationEventByHash GetNotificationEventByHash
func ( c * NotificationEventDaoImpl ) GetNotificationEventByHash ( hash string ) ( * model . NotificationEvent , error ) {
var result model . NotificationEvent
if err := c . DB . Where ( "hash=?" , hash ) . Find ( & result ) . Error ; err != nil {
return nil , err
}
return & result , nil
}