-
-
Notifications
You must be signed in to change notification settings - Fork 276
/
mysqlbackup.go
88 lines (69 loc) · 2.24 KB
/
mysqlbackup.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
Copyright 2018 Pressinfra SRL
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://wwb.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package mysqlbackup
import (
"fmt"
"strings"
"time"
logf "sigs.k8s.io/controller-runtime/pkg/runtime/log"
api "github.com/presslabs/mysql-operator/pkg/apis/mysql/v1alpha1"
"github.com/presslabs/mysql-operator/pkg/internal/mysqlcluster"
)
const (
// BackupSuffix is the file extension that will be uploaded into storage
// provider
BackupSuffix = "xbackup.gz"
)
var log = logf.Log.WithName("mysqlbackup")
// MysqlBackup is a type wrapper over MysqlBackup that contains the Business logic
type MysqlBackup struct {
*api.MysqlBackup
}
// New returns a wraper object over MysqlBackup
func New(backup *api.MysqlBackup) *MysqlBackup {
return &MysqlBackup{
MysqlBackup: backup,
}
}
// Unwrap returns the api mysqlbackup object
func (b *MysqlBackup) Unwrap() *api.MysqlBackup {
return b.MysqlBackup
}
// GetNameForJob returns the name of the job
func (b *MysqlBackup) GetNameForJob() string {
return fmt.Sprintf("%s-bjob", b.Name)
}
// GetBackupURL returns a backup URL
func (b *MysqlBackup) GetBackupURL(cluster *mysqlcluster.MysqlCluster) string {
if strings.HasSuffix(b.Spec.BackupURL, BackupSuffix) {
return b.Spec.BackupURL
}
if len(b.Spec.BackupURL) > 0 {
return b.composeBackupURL(b.Spec.BackupURL)
}
if len(cluster.Spec.BackupURL) == 0 {
cluster.Spec.BackupURL = cluster.Spec.BackupURI
}
if len(cluster.Spec.BackupURL) == 0 {
return ""
}
return b.composeBackupURL(cluster.Spec.BackupURL)
}
func (b *MysqlBackup) composeBackupURL(base string) string {
if strings.HasSuffix(base, "/") {
base = base[:len(base)-1]
}
timestamp := time.Now().Format("2006-01-02T15:04:05")
fileName := fmt.Sprintf("/%s-%s.%s", b.Spec.ClusterName, timestamp, BackupSuffix)
return base + fileName
}