2022-10-20 18:45:47 +08:00
package service
import (
2022-10-27 23:09:39 +08:00
"compress/gzip"
2022-10-21 18:50:38 +08:00
"encoding/json"
"fmt"
2022-11-04 19:02:15 +08:00
"io/ioutil"
2022-10-27 23:09:39 +08:00
"os"
2022-10-25 18:34:33 +08:00
"os/exec"
2022-11-04 19:02:15 +08:00
"regexp"
2022-10-24 18:46:19 +08:00
"strconv"
2022-10-25 18:34:33 +08:00
"strings"
2022-10-24 18:46:19 +08:00
"time"
2022-10-21 18:50:38 +08:00
2022-10-20 18:45:47 +08:00
"github.com/1Panel-dev/1Panel/backend/app/dto"
2022-10-25 18:34:33 +08:00
"github.com/1Panel-dev/1Panel/backend/app/model"
2022-10-20 18:45:47 +08:00
"github.com/1Panel-dev/1Panel/backend/constant"
2022-10-27 23:09:39 +08:00
"github.com/1Panel-dev/1Panel/backend/global"
2022-11-04 19:02:15 +08:00
"github.com/1Panel-dev/1Panel/backend/utils/compose"
2022-10-21 18:50:38 +08:00
_ "github.com/go-sql-driver/mysql"
2022-10-20 18:45:47 +08:00
"github.com/jinzhu/copier"
"github.com/pkg/errors"
)
type MysqlService struct { }
type IMysqlService interface {
2022-10-25 18:34:33 +08:00
SearchWithPage ( search dto . SearchDBWithPage ) ( int64 , interface { } , error )
2022-10-31 23:52:39 +08:00
ListDBByVersion ( name string ) ( [ ] string , error )
2022-10-28 18:46:14 +08:00
SearchBackupsWithPage ( search dto . SearchBackupsWithPage ) ( int64 , interface { } , error )
2022-10-20 18:45:47 +08:00
Create ( mysqlDto dto . MysqlDBCreate ) error
2022-10-24 18:46:19 +08:00
ChangeInfo ( info dto . ChangeDBInfo ) error
2022-11-04 19:02:15 +08:00
UpdateVariables ( mysqlName string , updatas [ ] dto . MysqlVariablesUpdate ) error
2022-10-27 23:09:39 +08:00
Backup ( db dto . BackupDB ) error
Recover ( db dto . RecoverDB ) error
2022-10-31 23:52:39 +08:00
Delete ( name string , ids [ ] uint ) error
LoadStatus ( name string ) ( * dto . MysqlStatus , error )
LoadVariables ( vernamesion string ) ( * dto . MysqlVariables , error )
2022-10-25 18:34:33 +08:00
LoadRunningVersion ( ) ( [ ] string , error )
2022-10-31 23:52:39 +08:00
LoadBaseInfo ( name string ) ( * dto . DBBaseInfo , error )
2022-10-20 18:45:47 +08:00
}
func NewIMysqlService ( ) IMysqlService {
return & MysqlService { }
}
2022-10-25 18:34:33 +08:00
func ( u * MysqlService ) SearchWithPage ( search dto . SearchDBWithPage ) ( int64 , interface { } , error ) {
2022-10-31 23:52:39 +08:00
total , mysqls , err := mysqlRepo . Page ( search . Page , search . PageSize , mysqlRepo . WithByMysqlName ( search . MysqlName ) )
2022-10-20 18:45:47 +08:00
var dtoMysqls [ ] dto . MysqlDBInfo
for _ , mysql := range mysqls {
var item dto . MysqlDBInfo
if err := copier . Copy ( & item , & mysql ) ; err != nil {
return 0 , nil , errors . WithMessage ( constant . ErrStructTransform , err . Error ( ) )
}
dtoMysqls = append ( dtoMysqls , item )
}
return total , dtoMysqls , err
}
2022-10-31 23:52:39 +08:00
func ( u * MysqlService ) ListDBByVersion ( name string ) ( [ ] string , error ) {
mysqls , err := mysqlRepo . List ( commonRepo . WithByName ( name ) )
2022-10-28 18:46:14 +08:00
var dbNames [ ] string
for _ , mysql := range mysqls {
dbNames = append ( dbNames , mysql . Name )
}
return dbNames , err
}
func ( u * MysqlService ) SearchBackupsWithPage ( search dto . SearchBackupsWithPage ) ( int64 , interface { } , error ) {
2022-10-31 23:52:39 +08:00
app , err := mysqlRepo . LoadBaseInfoByName ( search . MysqlName )
2022-10-27 23:09:39 +08:00
if err != nil {
return 0 , nil , err
}
searchDto := dto . BackupSearch {
Type : "database-mysql" ,
PageInfo : search . PageInfo ,
Name : app . Name ,
DetailName : search . DBName ,
}
return NewIBackupService ( ) . SearchRecordWithPage ( searchDto )
}
2022-10-25 18:34:33 +08:00
func ( u * MysqlService ) LoadRunningVersion ( ) ( [ ] string , error ) {
2022-10-31 23:52:39 +08:00
return mysqlRepo . LoadRunningVersion ( [ ] string { "Mysql5.7" , "Mysql8.0" } )
2022-10-25 18:34:33 +08:00
}
2022-10-20 18:45:47 +08:00
func ( u * MysqlService ) Create ( mysqlDto dto . MysqlDBCreate ) error {
2022-10-24 18:46:19 +08:00
if mysqlDto . Username == "root" {
return errors . New ( "Cannot set root as user name" )
}
2022-10-20 18:45:47 +08:00
mysql , _ := mysqlRepo . Get ( commonRepo . WithByName ( mysqlDto . Name ) )
if mysql . ID != 0 {
return constant . ErrRecordExist
}
if err := copier . Copy ( & mysql , & mysqlDto ) ; err != nil {
return errors . WithMessage ( constant . ErrStructTransform , err . Error ( ) )
}
2022-10-25 18:34:33 +08:00
2022-10-31 23:52:39 +08:00
app , err := mysqlRepo . LoadBaseInfoByName ( mysqlDto . MysqlName )
2022-10-24 18:46:19 +08:00
if err != nil {
return err
}
2022-10-25 18:34:33 +08:00
if err := excuteSql ( app . ContainerName , app . Password , fmt . Sprintf ( "create database if not exists %s character set=%s" , mysqlDto . Name , mysqlDto . Format ) ) ; err != nil {
2022-10-24 18:46:19 +08:00
return err
}
tmpPermission := mysqlDto . Permission
2022-10-25 18:34:33 +08:00
if err := excuteSql ( app . ContainerName , app . Password , fmt . Sprintf ( "create user if not exists '%s'@'%s' identified by '%s';" , mysqlDto . Name , tmpPermission , mysqlDto . Password ) ) ; err != nil {
2022-10-24 18:46:19 +08:00
return err
}
2022-10-25 18:34:33 +08:00
grantStr := fmt . Sprintf ( "grant all privileges on %s.* to '%s'@'%s'" , mysqlDto . Name , mysqlDto . Username , tmpPermission )
2022-10-31 23:52:39 +08:00
if app . Key == "mysql5.7" {
2022-10-25 18:34:33 +08:00
grantStr = fmt . Sprintf ( "%s identified by '%s' with grant option;" , grantStr , mysqlDto . Password )
2022-10-24 18:46:19 +08:00
}
2022-10-25 18:34:33 +08:00
if err := excuteSql ( app . ContainerName , app . Password , grantStr ) ; err != nil {
2022-10-24 18:46:19 +08:00
return err
}
2022-10-20 18:45:47 +08:00
if err := mysqlRepo . Create ( & mysql ) ; err != nil {
return err
}
return nil
}
2022-10-27 23:09:39 +08:00
func ( u * MysqlService ) Backup ( db dto . BackupDB ) error {
2022-10-28 18:46:14 +08:00
backupLocal , err := backupRepo . Get ( commonRepo . WithByType ( "LOCAL" ) )
2022-10-27 23:09:39 +08:00
if err != nil {
return err
}
2022-10-28 18:46:14 +08:00
localDir , err := loadLocalDir ( backupLocal )
if err != nil {
return err
2022-10-27 23:09:39 +08:00
}
2022-10-31 23:52:39 +08:00
backupDir := fmt . Sprintf ( "database/%s/%s" , db . MysqlName , db . DBName )
2022-10-28 18:46:14 +08:00
fileName := fmt . Sprintf ( "%s_%s.sql.gz" , db . DBName , time . Now ( ) . Format ( "20060102150405" ) )
2022-10-31 23:52:39 +08:00
if err := backupMysql ( "LOCAL" , localDir , backupDir , db . MysqlName , db . DBName , fileName ) ; err != nil {
2022-10-28 18:46:14 +08:00
return err
2022-10-27 23:09:39 +08:00
}
return nil
}
func ( u * MysqlService ) Recover ( db dto . RecoverDB ) error {
2022-10-31 23:52:39 +08:00
app , err := mysqlRepo . LoadBaseInfoByName ( db . MysqlName )
2022-10-27 23:09:39 +08:00
if err != nil {
return err
}
gzipFile , err := os . Open ( db . BackupName )
if err != nil {
fmt . Println ( err )
}
defer gzipFile . Close ( )
gzipReader , err := gzip . NewReader ( gzipFile )
if err != nil {
fmt . Println ( err )
}
defer gzipReader . Close ( )
cmd := exec . Command ( "docker" , "exec" , "-i" , app . ContainerName , "mysql" , "-uroot" , "-p" + app . Password , db . DBName )
cmd . Stdin = gzipReader
stdout , err := cmd . CombinedOutput ( )
stdStr := strings . ReplaceAll ( string ( stdout ) , "mysql: [Warning] Using a password on the command line interface can be insecure.\n" , "" )
if err != nil || strings . HasPrefix ( string ( stdStr ) , "ERROR " ) {
return errors . New ( stdStr )
}
return nil
}
2022-10-31 23:52:39 +08:00
func ( u * MysqlService ) Delete ( name string , ids [ ] uint ) error {
app , err := mysqlRepo . LoadBaseInfoByName ( name )
2022-10-24 18:46:19 +08:00
if err != nil {
return err
}
2022-10-25 18:34:33 +08:00
2022-10-24 18:46:19 +08:00
dbs , err := mysqlRepo . List ( commonRepo . WithIdsIn ( ids ) )
if err != nil {
return err
}
for _ , db := range dbs {
if len ( db . Name ) != 0 {
2022-10-25 18:34:33 +08:00
if err := excuteSql ( app . ContainerName , app . Password , fmt . Sprintf ( "drop user if exists '%s'@'%s'" , db . Name , db . Permission ) ) ; err != nil {
2022-10-24 18:46:19 +08:00
return err
}
2022-10-25 18:34:33 +08:00
if err := excuteSql ( app . ContainerName , app . Password , fmt . Sprintf ( "drop database if exists %s" , db . Name ) ) ; err != nil {
2022-10-24 18:46:19 +08:00
return err
}
2022-10-20 18:45:47 +08:00
}
2022-10-24 18:46:19 +08:00
_ = mysqlRepo . Delete ( commonRepo . WithByID ( db . ID ) )
2022-10-20 18:45:47 +08:00
}
2022-10-24 18:46:19 +08:00
return nil
2022-10-20 18:45:47 +08:00
}
2022-10-21 18:50:38 +08:00
2022-10-24 18:46:19 +08:00
func ( u * MysqlService ) ChangeInfo ( info dto . ChangeDBInfo ) error {
2022-10-25 18:34:33 +08:00
var (
mysql model . DatabaseMysql
err error
)
if info . ID != 0 {
mysql , err = mysqlRepo . Get ( commonRepo . WithByID ( info . ID ) )
if err != nil {
return err
}
2022-10-24 18:46:19 +08:00
}
2022-10-31 23:52:39 +08:00
app , err := mysqlRepo . LoadBaseInfoByName ( info . MysqlName )
2022-10-24 18:46:19 +08:00
if err != nil {
return err
2022-10-21 18:50:38 +08:00
}
2022-10-24 18:46:19 +08:00
if info . Operation == "password" {
2022-10-25 18:34:33 +08:00
if info . ID != 0 {
if err := excuteSql ( app . ContainerName , app . Password , fmt . Sprintf ( "set password for %s@%s = password('%s')" , mysql . Username , mysql . Permission , info . Value ) ) ; err != nil {
return err
}
_ = mysqlRepo . Update ( mysql . ID , map [ string ] interface { } { "password" : info . Value } )
return nil
}
hosts , err := excuteSqlForRows ( app . ContainerName , app . Password , "select host from mysql.user where user='root';" )
if err != nil {
2022-10-24 18:46:19 +08:00
return err
}
2022-10-25 18:34:33 +08:00
for _ , host := range hosts {
if host == "%" || host == "localhost" {
if err := excuteSql ( app . ContainerName , app . Password , fmt . Sprintf ( "set password for root@'%s' = password('%s')" , host , info . Value ) ) ; err != nil {
return err
}
}
}
2022-11-03 23:42:42 +08:00
_ = mysqlRepo . UpdateDatabasePassword ( app . ID , map [ string ] interface { } {
2022-10-25 18:34:33 +08:00
"param" : strings . ReplaceAll ( app . Param , app . Password , info . Value ) ,
"env" : strings . ReplaceAll ( app . Env , app . Password , info . Value ) ,
} )
2022-10-24 18:46:19 +08:00
return nil
}
2022-10-21 18:50:38 +08:00
2022-10-25 18:34:33 +08:00
if info . ID == 0 {
mysql . Name = "*"
mysql . Username = "root"
mysql . Permission = "%"
mysql . Password = app . Password
}
if info . Value != mysql . Permission {
if err := excuteSql ( app . ContainerName , app . Password , fmt . Sprintf ( "drop user if exists '%s'@'%s'" , mysql . Username , mysql . Permission ) ) ; err != nil {
return err
}
if info . ID == 0 {
return nil
}
}
if err := excuteSql ( app . ContainerName , app . Password , fmt . Sprintf ( "create user if not exists '%s'@'%s' identified by '%s';" , mysql . Username , info . Value , mysql . Password ) ) ; err != nil {
2022-10-24 18:46:19 +08:00
return err
}
2022-10-25 18:34:33 +08:00
grantStr := fmt . Sprintf ( "grant all privileges on %s.* to '%s'@'%s'" , mysql . Name , mysql . Username , info . Value )
2022-10-31 23:52:39 +08:00
if app . Key == "mysql5.7" {
2022-10-25 18:34:33 +08:00
grantStr = fmt . Sprintf ( "%s identified by '%s' with grant option;" , grantStr , mysql . Password )
2022-10-24 18:46:19 +08:00
}
2022-10-25 18:34:33 +08:00
if err := excuteSql ( app . ContainerName , app . Password , grantStr ) ; err != nil {
2022-10-24 18:46:19 +08:00
return err
}
2022-10-25 18:34:33 +08:00
if err := excuteSql ( app . ContainerName , app . Password , "flush privileges" ) ; err != nil {
2022-10-24 18:46:19 +08:00
return err
}
2022-10-25 18:34:33 +08:00
if info . ID == 0 {
return nil
}
2022-10-24 18:46:19 +08:00
_ = mysqlRepo . Update ( mysql . ID , map [ string ] interface { } { "permission" : info . Value } )
return nil
}
2022-11-04 19:02:15 +08:00
func ( u * MysqlService ) UpdateVariables ( mysqlName string , updatas [ ] dto . MysqlVariablesUpdate ) error {
app , err := mysqlRepo . LoadBaseInfoByName ( mysqlName )
2022-10-25 11:41:19 +08:00
if err != nil {
return err
}
2022-11-04 19:02:15 +08:00
var files [ ] string
2022-10-25 11:41:19 +08:00
2022-11-04 19:02:15 +08:00
path := fmt . Sprintf ( "%s/%s/%s/conf/my.cnf" , constant . AppInstallDir , app . Key , app . Name )
lineBytes , err := ioutil . ReadFile ( path )
if err != nil {
2022-10-25 11:41:19 +08:00
return err
2022-11-04 19:02:15 +08:00
} else {
files = strings . Split ( string ( lineBytes ) , "\n" )
}
group := ""
for _ , info := range updatas {
switch info . Param {
case "key_buffer_size" , "sort_buffer_size" :
group = "[myisamchk]"
default :
group = "[mysqld]"
}
files = updateMyCnf ( files , group , info . Param , info . Value )
2022-10-25 11:41:19 +08:00
}
2022-11-04 19:02:15 +08:00
file , err := os . OpenFile ( path , os . O_WRONLY , 0666 )
if err != nil {
2022-10-25 11:41:19 +08:00
return err
}
2022-11-04 19:02:15 +08:00
defer file . Close ( )
_ , err = file . WriteString ( strings . Join ( files , "\n" ) )
if err != nil {
2022-10-25 11:41:19 +08:00
return err
}
2022-11-04 19:02:15 +08:00
if _ , err := compose . Restart ( fmt . Sprintf ( "%s/%s/%s/docker-compose.yml" , constant . AppInstallDir , app . Key , app . Name ) ) ; err != nil {
2022-10-25 11:41:19 +08:00
return err
}
return nil
}
2022-10-31 23:52:39 +08:00
func ( u * MysqlService ) LoadBaseInfo ( name string ) ( * dto . DBBaseInfo , error ) {
2022-10-25 18:34:33 +08:00
var data dto . DBBaseInfo
2022-10-31 23:52:39 +08:00
app , err := mysqlRepo . LoadBaseInfoByName ( name )
2022-10-21 18:50:38 +08:00
if err != nil {
return nil , err
}
2022-11-04 19:02:15 +08:00
data . ContainerName = app . ContainerName
2022-10-25 18:34:33 +08:00
data . Name = app . Name
data . Port = int64 ( app . Port )
data . Password = app . Password
2022-10-31 23:52:39 +08:00
data . MysqlKey = app . Key
2022-10-21 18:50:38 +08:00
2022-10-25 18:34:33 +08:00
hosts , err := excuteSqlForRows ( app . ContainerName , app . Password , "select host from mysql.user where user='root';" )
if err != nil {
return nil , err
}
for _ , host := range hosts {
if host == "%" {
data . RemoteConn = true
break
}
}
return & data , nil
}
2022-10-31 23:52:39 +08:00
func ( u * MysqlService ) LoadVariables ( name string ) ( * dto . MysqlVariables , error ) {
app , err := mysqlRepo . LoadBaseInfoByName ( name )
2022-10-25 18:34:33 +08:00
if err != nil {
return nil , err
}
variableMap , err := excuteSqlForMaps ( app . ContainerName , app . Password , "show global variables;" )
2022-10-24 18:46:19 +08:00
if err != nil {
return nil , err
}
var info dto . MysqlVariables
2022-10-21 18:50:38 +08:00
arr , err := json . Marshal ( variableMap )
if err != nil {
return nil , err
}
_ = json . Unmarshal ( arr , & info )
return & info , nil
}
2022-10-31 23:52:39 +08:00
func ( u * MysqlService ) LoadStatus ( name string ) ( * dto . MysqlStatus , error ) {
app , err := mysqlRepo . LoadBaseInfoByName ( name )
2022-10-21 18:50:38 +08:00
if err != nil {
return nil , err
}
2022-10-25 18:34:33 +08:00
statusMap , err := excuteSqlForMaps ( app . ContainerName , app . Password , "show global status;" )
2022-10-21 18:50:38 +08:00
if err != nil {
return nil , err
}
2022-10-25 18:34:33 +08:00
2022-10-21 18:50:38 +08:00
var info dto . MysqlStatus
2022-10-25 18:34:33 +08:00
arr , err := json . Marshal ( statusMap )
2022-10-21 18:50:38 +08:00
if err != nil {
return nil , err
}
_ = json . Unmarshal ( arr , & info )
2022-10-24 18:46:19 +08:00
2022-10-25 18:34:33 +08:00
if value , ok := statusMap [ "Run" ] ; ok {
2022-10-24 18:46:19 +08:00
uptime , _ := strconv . Atoi ( value )
info . Run = time . Unix ( time . Now ( ) . Unix ( ) - int64 ( uptime ) , 0 ) . Format ( "2006-01-02 15:04:05" )
} else {
2022-10-25 18:34:33 +08:00
if value , ok := statusMap [ "Uptime" ] ; ok {
2022-10-24 18:46:19 +08:00
uptime , _ := strconv . Atoi ( value )
info . Run = time . Unix ( time . Now ( ) . Unix ( ) - int64 ( uptime ) , 0 ) . Format ( "2006-01-02 15:04:05" )
}
}
2022-10-25 18:34:33 +08:00
info . File = "OFF"
info . Position = "OFF"
rows , err := excuteSqlForRows ( app . ContainerName , app . Password , "show master status;" )
if err != nil {
return nil , err
}
if len ( rows ) > 2 {
itemValue := strings . Split ( rows [ 1 ] , "\t" )
if len ( itemValue ) > 2 {
info . File = itemValue [ 0 ]
info . Position = itemValue [ 1 ]
}
}
return & info , nil
}
func excuteSqlForMaps ( containerName , password , command string ) ( map [ string ] string , error ) {
2022-10-27 23:09:39 +08:00
cmd := exec . Command ( "docker" , "exec" , containerName , "mysql" , "-uroot" , "-p" + password , "-e" , command )
2022-10-25 18:34:33 +08:00
stdout , err := cmd . CombinedOutput ( )
2022-10-27 23:09:39 +08:00
stdStr := strings . ReplaceAll ( string ( stdout ) , "mysql: [Warning] Using a password on the command line interface can be insecure.\n" , "" )
if err != nil || strings . HasPrefix ( string ( stdStr ) , "ERROR " ) {
return nil , errors . New ( stdStr )
2022-10-24 18:46:19 +08:00
}
2022-10-25 18:34:33 +08:00
rows := strings . Split ( stdStr , "\n" )
rowMap := make ( map [ string ] string )
for _ , v := range rows {
itemRow := strings . Split ( v , "\t" )
if len ( itemRow ) == 2 {
rowMap [ itemRow [ 0 ] ] = itemRow [ 1 ]
2022-10-24 18:46:19 +08:00
}
}
2022-10-25 18:34:33 +08:00
return rowMap , nil
}
func excuteSqlForRows ( containerName , password , command string ) ( [ ] string , error ) {
2022-10-27 23:09:39 +08:00
cmd := exec . Command ( "docker" , "exec" , containerName , "mysql" , "-uroot" , "-p" + password , "-e" , command )
2022-10-25 18:34:33 +08:00
stdout , err := cmd . CombinedOutput ( )
stdStr := strings . ReplaceAll ( string ( stdout ) , "mysql: [Warning] Using a password on the command line interface can be insecure.\n" , "" )
2022-10-27 23:09:39 +08:00
if err != nil || strings . HasPrefix ( string ( stdStr ) , "ERROR " ) {
return nil , errors . New ( stdStr )
}
2022-10-25 18:34:33 +08:00
return strings . Split ( stdStr , "\n" ) , nil
}
func excuteSql ( containerName , password , command string ) error {
2022-10-27 23:09:39 +08:00
cmd := exec . Command ( "docker" , "exec" , containerName , "mysql" , "-uroot" , "-p" + password , "-e" , command )
2022-10-25 18:34:33 +08:00
stdout , err := cmd . CombinedOutput ( )
stdStr := strings . ReplaceAll ( string ( stdout ) , "mysql: [Warning] Using a password on the command line interface can be insecure.\n" , "" )
2022-10-27 23:09:39 +08:00
if err != nil || strings . HasPrefix ( string ( stdStr ) , "ERROR " ) {
return errors . New ( stdStr )
2022-10-25 18:34:33 +08:00
}
return nil
2022-10-21 18:50:38 +08:00
}
2022-10-28 18:46:14 +08:00
2022-11-03 23:42:42 +08:00
func backupMysql ( backupType , baseDir , backupDir , mysqlName , dbName , fileName string ) error {
app , err := mysqlRepo . LoadBaseInfoByName ( mysqlName )
2022-10-28 18:46:14 +08:00
if err != nil {
return err
}
fullDir := baseDir + "/" + backupDir
if _ , err := os . Stat ( fullDir ) ; err != nil && os . IsNotExist ( err ) {
if err = os . MkdirAll ( fullDir , os . ModePerm ) ; err != nil {
if err != nil {
return fmt . Errorf ( "mkdir %s failed, err: %v" , fullDir , err )
}
}
}
outfile , _ := os . OpenFile ( fullDir + "/" + fileName , os . O_RDWR | os . O_CREATE , 0755 )
cmd := exec . Command ( "docker" , "exec" , app . ContainerName , "mysqldump" , "-uroot" , "-p" + app . Password , dbName )
gzipCmd := exec . Command ( "gzip" , "-cf" )
gzipCmd . Stdin , _ = cmd . StdoutPipe ( )
gzipCmd . Stdout = outfile
_ = gzipCmd . Start ( )
_ = cmd . Run ( )
_ = gzipCmd . Wait ( )
record := & model . BackupRecord {
Type : "database-mysql" ,
Name : app . Name ,
DetailName : dbName ,
Source : backupType ,
2022-10-31 17:26:15 +08:00
BackupType : backupType ,
2022-10-28 18:46:14 +08:00
FileDir : backupDir ,
FileName : fileName ,
}
if baseDir != constant . TmpDir || backupType == "LOCAL" {
record . Source = "LOCAL"
record . FileDir = fullDir
}
if err := backupRepo . CreateRecord ( record ) ; err != nil {
global . LOG . Errorf ( "save backup record failed, err: %v" , err )
}
return nil
}
2022-11-04 19:02:15 +08:00
func updateMyCnf ( oldFiles [ ] string , group string , param string , value interface { } ) [ ] string {
isOn := false
hasKey := false
regItem , _ := regexp . Compile ( ` \[*\] ` )
var newFiles [ ] string
for _ , line := range oldFiles {
if strings . HasPrefix ( line , group ) {
isOn = true
newFiles = append ( newFiles , line )
continue
}
if ! isOn {
newFiles = append ( newFiles , line )
continue
}
if strings . HasPrefix ( line , param ) || strings . HasPrefix ( line , "# " + param ) {
newFiles = append ( newFiles , fmt . Sprintf ( "%s=%v" , param , value ) )
hasKey = true
continue
}
isDeadLine := regItem . Match ( [ ] byte ( line ) )
if ! isDeadLine {
newFiles = append ( newFiles , line )
continue
}
if ! hasKey {
newFiles = append ( newFiles , fmt . Sprintf ( "%s=%v\n" , param , value ) )
newFiles = append ( newFiles , line )
}
}
if ! isOn {
newFiles = append ( newFiles , group + "\n" )
newFiles = append ( newFiles , fmt . Sprintf ( "%s=%v\n" , param , value ) )
}
return newFiles
}