This repository has been archived by the owner on Aug 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
init.go
133 lines (110 loc) · 4.46 KB
/
init.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
// Copyright 2017 Google Inc.
//
// 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://www.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 apiGatewayDeploy
import (
"fmt"
"net/url"
"os"
"path"
"time"
"github.com/30x/apid-core"
)
const (
configBundleDirKey = "gatewaydeploy_bundle_dir"
configDebounceDuration = "gatewaydeploy_debounce_duration"
configBundleCleanupDelay = "gatewaydeploy_bundle_cleanup_delay"
configMarkDeployFailedAfter = "gatewaydeploy_deployment_timeout"
configDownloadConnTimeout = "gatewaydeploy_download_connection_timeout"
configApiServerBaseURI = "apigeesync_proxy_server_base"
configApidInstanceID = "apigeesync_apid_instance_id"
configApidClusterID = "apigeesync_cluster_id"
configConcurrentDownloads = "apigeesync_concurrent_downloads"
configDownloadQueueSize = "apigeesync_download_queue_size"
)
var (
services apid.Services
log apid.LogService
data apid.DataService
bundlePath string
debounceDuration time.Duration
bundleCleanupDelay time.Duration
apiServerBaseURI *url.URL
apidInstanceID string
apidClusterID string
downloadQueueSize int
concurrentDownloads int
)
func init() {
apid.RegisterPlugin(initPlugin)
}
func initPlugin(s apid.Services) (apid.PluginData, error) {
services = s
log = services.Log().ForModule("apiGatewayDeploy")
log.Debug("start init")
config := services.Config()
if !config.IsSet(configApiServerBaseURI) {
return pluginData, fmt.Errorf("Missing required config value: %s", configApiServerBaseURI)
}
var err error
apiServerBaseURI, err = url.Parse(config.GetString(configApiServerBaseURI))
if err != nil {
return pluginData, fmt.Errorf("%s value %s parse err: %v", configApiServerBaseURI, apiServerBaseURI, err)
}
if !config.IsSet(configApidInstanceID) {
return pluginData, fmt.Errorf("Missing required config value: %s", configApidInstanceID)
}
apidInstanceID = config.GetString(configApidInstanceID)
if !config.IsSet(configApidClusterID) {
return pluginData, fmt.Errorf("Missing required config value: %s", configApidClusterID)
}
apidClusterID = config.GetString(configApidClusterID)
config.SetDefault(configBundleDirKey, "bundles")
config.SetDefault(configDebounceDuration, time.Second)
config.SetDefault(configBundleCleanupDelay, time.Minute)
config.SetDefault(configMarkDeployFailedAfter, 5*time.Minute)
config.SetDefault(configDownloadConnTimeout, 5*time.Minute)
config.SetDefault(configConcurrentDownloads, 15)
config.SetDefault(configDownloadQueueSize, 2000)
debounceDuration = config.GetDuration(configDebounceDuration)
if debounceDuration < time.Millisecond {
return pluginData, fmt.Errorf("%s must be a positive duration", configDebounceDuration)
}
bundleCleanupDelay = config.GetDuration(configBundleCleanupDelay)
if bundleCleanupDelay < time.Millisecond {
return pluginData, fmt.Errorf("%s must be a positive duration", configBundleCleanupDelay)
}
markDeploymentFailedAfter = config.GetDuration(configMarkDeployFailedAfter)
if markDeploymentFailedAfter < time.Millisecond {
return pluginData, fmt.Errorf("%s must be a positive duration", configMarkDeployFailedAfter)
}
bundleDownloadConnTimeout = config.GetDuration(configDownloadConnTimeout)
if bundleDownloadConnTimeout < time.Millisecond {
return pluginData, fmt.Errorf("%s must be a positive duration", configDownloadConnTimeout)
}
data = services.Data()
concurrentDownloads = config.GetInt(configConcurrentDownloads)
downloadQueueSize = config.GetInt(configDownloadQueueSize)
relativeBundlePath := config.GetString(configBundleDirKey)
storagePath := config.GetString("local_storage_path")
bundlePath = path.Join(storagePath, relativeBundlePath)
if err := os.MkdirAll(bundlePath, 0700); err != nil {
return pluginData, fmt.Errorf("Failed bundle directory creation: %v", err)
}
log.Infof("Bundle directory path is %s", bundlePath)
initializeBundleDownloading()
go distributeEvents()
initListener(services)
log.Debug("end init")
return pluginData, nil
}