forked from tofuutils/tenv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremote.go
153 lines (126 loc) · 4 KB
/
remote.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
/*
*
* Copyright 2024 tofuutils authors.
*
* 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 config
import (
"errors"
"os"
)
const (
InstallModeDirect = "direct"
ListModeHTML = "html"
ModeAPI = "api"
baseGithubURL = "https://github.com"
defaultGithubURL = "https://api.github.com/repos/"
defaultHashicorpURL = "https://releases.hashicorp.com"
defaultTerragruntGithubURL = defaultGithubURL + "gruntwork-io/terragrunt" + slashReleases
defaultTofuGithubURL = defaultGithubURL + "opentofu/opentofu" + slashReleases
slashReleases = "/releases"
)
var (
ErrInstallMode = errors.New("unknown install mode")
ErrListMode = errors.New("unknown list mode")
)
type RemoteConfig struct {
Data map[string]string // values from conf file
defaultBaseURL string
defaultURL string
installMode string // value from env
listMode string // value from env
listURL string // value from env
RemoteURL string // value from flag
RemoteURLEnv string // value from env
}
func makeRemoteConfig(remoteURLEnvName string, listURLEnvName string, installModeEnvName string, listModeEnvName string, defaultURL string, defaultBaseURL string) RemoteConfig {
return RemoteConfig{
defaultBaseURL: defaultBaseURL, defaultURL: defaultURL, installMode: os.Getenv(installModeEnvName), listMode: os.Getenv(listModeEnvName),
listURL: os.Getenv(listURLEnvName), RemoteURLEnv: os.Getenv(remoteURLEnvName),
}
}
func (r RemoteConfig) GetInstallMode() string {
defaultInstallMode := ModeAPI
if r.defaultBaseURL == baseGithubURL && r.GetRemoteURL() != r.defaultURL {
defaultInstallMode = InstallModeDirect
}
return r.getValueForcedDefault("install_mode", r.installMode, defaultInstallMode)
}
func (r RemoteConfig) GetListMode() string {
return r.getValueForcedDefault("list_mode", r.listMode, ModeAPI)
}
func (r RemoteConfig) GetListURL() string {
defaultListURL := r.defaultURL
if r.GetListMode() == ListModeHTML {
defaultListURL = r.GetRemoteURL()
}
return r.getValueForcedDefault("list_url", r.listURL, defaultListURL)
}
func (r RemoteConfig) GetRemoteURL() string {
if r.RemoteURL != "" {
return r.RemoteURL
}
return r.getValueForcedDefault("url", r.RemoteURLEnv, r.defaultURL)
}
func (r RemoteConfig) GetRewriteRule() []string {
oldBase := r.Data["old_base_url"]
newBase := r.Data["new_base_url"]
if oldBase != "" && newBase != "" {
return []string{oldBase, newBase}
}
defaultListMode := r.GetListMode() == ModeAPI
listURL := r.GetListURL()
remoteURL := r.GetRemoteURL()
sameURL := remoteURL == listURL
if defaultListMode && sameURL {
return nil // no special behaviour, no rewriting
}
oneDisabled := defaultListMode || sameURL
if r.GetInstallMode() == ModeAPI {
if oldBase == "" {
oldBase = r.defaultBaseURL
}
if newBase == "" {
if oneDisabled {
newBase = remoteURL
} else {
newBase = listURL
}
}
return []string{oldBase, newBase}
}
if oneDisabled {
return nil // build correct url (direct install mode)
}
if oldBase == "" {
oldBase = remoteURL
}
if newBase == "" {
newBase = listURL
}
return []string{oldBase, newBase}
}
func (r RemoteConfig) getValueForcedDefault(name string, forcedValue string, defaultValue string) string {
if forcedValue != "" {
return forcedValue
}
return MapGetDefault(r.Data, name, defaultValue)
}
func MapGetDefault(m map[string]string, key string, defaultValue string) string {
if value := m[key]; value != "" {
return value
}
return defaultValue
}