forked from upmc-enterprises/elasticsearch-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
196 lines (163 loc) · 6.76 KB
/
main.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*
Copyright (c) 2017, UPMC Enterprises
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name UPMC Enterprises nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL UPMC ENTERPRISES BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
*/
package main
import (
"crypto/tls"
"flag"
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"strings"
"time"
"github.com/Sirupsen/logrus"
)
var (
argAction = ""
argRepoType = ""
argBucketName = ""
argElasticURL = ""
argUsername = ""
argPassword = ""
argRepoAccessKey = ""
argRepoSecretKey = ""
argRepoRegion = ""
argUseSSL = true
)
// CreateSnapshotRepository creates a repository to place snapshots
func CreateSnapshotRepository(elasticURL, repoType, bucketName, username, password string, useSSL bool, repoAccessKey, repoSecretKey, repoRegion string) error {
logrus.Info("About to create Snapshot Repository...")
tr := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
scheme := "https"
if !useSSL {
scheme = "http"
}
client := &http.Client{Transport: tr}
url := fmt.Sprintf("%s://%s:9200/_snapshot/%s", scheme, elasticURL, bucketName)
body := fmt.Sprintf("")
if repoType=="azure" {
body = fmt.Sprintf("{ \"type\": \"%s\", \"settings\": { \"container\": \"%s\", \"compress\": \"true\" } }", repoType, bucketName)
} else if repoType=="s3" || repoType=="gcs" {
if repoAccessKey!="" && repoSecretKey!="" {
body = fmt.Sprintf("{ \"type\": \"%s\", \"settings\": { \"bucket\": \"%s\", \"region\": \"%s\", \"access_key\": \"%s\", \"secret_key\": \"%s\", \"server_side_encryption\": \"true\" } }", repoType, bucketName, repoRegion, repoAccessKey, repoSecretKey)
} else {
body = fmt.Sprintf("{ \"type\": \"%s\", \"settings\": { \"bucket\": \"%s\", \"server_side_encryption\": \"true\" } }", repoType, bucketName)
}
}
req, err := http.NewRequest("PUT", url, strings.NewReader(body))
// if authentication is specified, provide Auth to Client
if username != "" && password != "" {
logrus.Infof("Using basic Auth Credentials %s", username)
req.SetBasicAuth(username, password)
}
req.Header.Set("Content-Type", "application/json")
resp, err := client.Do(req)
// Some other type of error?
if err != nil {
return fmt.Errorf("Error attempting to create snapshot repository: %v", err)
}
// Non 2XX status code
if resp.StatusCode < 200 || resp.StatusCode >= 300 {
body, _ := ioutil.ReadAll(resp.Body)
return fmt.Errorf("Error creating snapshot repository [httpstatus: %d][url: %s][body: %s] ", resp.StatusCode, url, string(body))
}
logrus.Infof("Created snapshot repository!")
return nil
}
// CreateSnapshot makes a snapshot of all indexes
func CreateSnapshot(elasticURL, bucketName, username, password string, useSSL bool) error {
logrus.Info("About to create snapshot...")
tr := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
scheme := "https"
if !useSSL {
scheme = "http"
}
client := &http.Client{Transport: tr}
url := fmt.Sprintf("%s://%s:9200/_snapshot/%s/snapshot_%s?wait_for_completion=true", scheme, elasticURL, bucketName, fmt.Sprintf(time.Now().Format("2006-01-02-15-04-05")))
req, err := http.NewRequest("PUT", url, nil)
if err != nil {
return fmt.Errorf("Error attempting to create snapshot: %v", err)
}
// if authentication is specified, provide Auth to Client
if username != "" && password != "" {
logrus.Infof("Using basic Auth Credentials %s", username)
req.SetBasicAuth(username, password)
}
req.Header.Set("Content-Type", "application/json")
resp, err := client.Do(req)
// Some other type of error?
if err != nil {
return fmt.Errorf("Error attempting to create snapshot: %v", err)
}
// Non 2XX status code
if resp.StatusCode < 200 || resp.StatusCode >= 300 {
body, _ := ioutil.ReadAll(resp.Body)
return fmt.Errorf("Error creating snapshot [httpstatus: %d][url: %s] %s", resp.StatusCode, url, string(body))
}
logrus.Infof("Created snapshot!")
return nil
}
func main() {
flag.StringVar(&argAction, "action", "", "action to perform (e.g. Create repository or snapshot")
flag.StringVar(&argRepoType, "repo-type", "", "type of repository, s3, gcs, azure")
flag.StringVar(&argBucketName, "bucket-name", "", "name of s3, gcs, azure bucket")
flag.StringVar(&argElasticURL, "elastic-url", "", "full dns url to elasticsearch")
flag.StringVar(&argUsername, "auth-username", "", "Authentication username")
flag.StringVar(&argPassword, "auth-password", "", "Authentication password")
flag.StringVar(&argRepoAccessKey, "repo-auth-access-key", "", "Repository Authentication access key")
flag.StringVar(&argRepoRegion, "repo-region", "eu-west-1", "Repository Region, default: eu-west-1")
flag.StringVar(&argRepoSecretKey,"repo-auth-secret-key", "", "Repository Authentication secret key")
flag.BoolVar(&argUseSSL, "use-ssl", true, "enable SSL or not")
flag.Parse()
log.Println("[elasticsearch-cron] is up and running!", time.Now())
// Validate
if argBucketName == "" {
logrus.Fatalf("Missing Bucket Name parameter! [%s]", argBucketName)
}
if argElasticURL == "" {
logrus.Fatalf("Missing ElasticURL parameter! [%s]", argElasticURL)
}
switch argAction {
case "create-repository":
if err := CreateSnapshotRepository(argElasticURL, argRepoType, argBucketName, argUsername, argPassword, argUseSSL, argRepoAccessKey, argRepoSecretKey, argRepoRegion); err != nil {
logrus.Error(err)
os.Exit(1)
}
break
case "snapshot":
if err := CreateSnapshot(argElasticURL, argBucketName, argUsername, argPassword, argUseSSL); err != nil {
logrus.Error(err)
os.Exit(1)
}
break
default:
logrus.Infof("Command passed [%s] not recognized.", argAction)
}
os.Exit(0)
}