forked from tofuutils/tenv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremote.go
154 lines (127 loc) · 4.63 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
154
/*
*
* 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"
"strings"
configutils "github.com/tofuutils/tenv/v4/config/utils"
"github.com/tofuutils/tenv/v4/pkg/download"
)
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
defaultAtmosGithubURL = defaultGithubURL + "cloudposse/atmos" + 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 makeDefaultRemoteConfig(defaultURL string, defaultBaseURL string) RemoteConfig {
return RemoteConfig{
defaultBaseURL: defaultBaseURL, defaultURL: defaultURL, Data: map[string]string{},
}
}
func makeRemoteConfig(getenv configutils.GetenvFunc, remoteURLEnvName string, listURLEnvName string, installModeEnvName string, listModeEnvName string, defaultURL string, defaultBaseURL string) RemoteConfig {
return RemoteConfig{
defaultBaseURL: defaultBaseURL, defaultURL: defaultURL, installMode: getenv(installModeEnvName), listMode: getenv(listModeEnvName),
listURL: getenv(listURLEnvName), RemoteURLEnv: 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 {
defaultListMode := ListModeHTML
if r.GetListURL() == r.defaultURL {
defaultListMode = ModeAPI
}
return r.getValueForcedDefault("list_mode", r.listMode, defaultListMode)
}
func (r RemoteConfig) GetListURL() string {
return strings.TrimRight(r.getValueForcedDefault("list_url", r.listURL, r.GetRemoteURL()), "/")
}
func (r RemoteConfig) GetRemoteURL() string {
remoteURL := r.RemoteURL
if remoteURL == "" {
remoteURL = r.getValueForcedDefault("url", r.RemoteURLEnv, r.defaultURL)
}
return strings.TrimRight(remoteURL, "/")
}
func (r RemoteConfig) GetRewriteRule() download.URLTransformer {
oldBase := r.Data["old_base_url"]
newBase := r.Data["new_base_url"]
if oldBase != "" && newBase != "" {
return download.NewURLTransformer(oldBase, newBase)
}
if r.GetInstallMode() == InstallModeDirect {
return download.NoTransform // build correct url
}
listURL := r.GetListURL()
remoteURL := r.GetRemoteURL()
defaultList := listURL == r.defaultURL
defaultRemote := remoteURL == r.defaultURL
if defaultList && defaultRemote {
return download.NoTransform // no special behaviour, no rewriting
}
oldBase = r.defaultBaseURL
newBase = listURL
if defaultList {
newBase = remoteURL
}
return download.NewURLTransformer(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 := strings.TrimSpace(m[key]); value != "" {
return value
}
return defaultValue
}
func GetBasicAuthOption(getenv configutils.GetenvFunc, userEnvName string, passEnvName string) []download.RequestOption {
username, password := getenv(userEnvName), getenv(passEnvName)
if username == "" || password == "" {
return nil
}
return []download.RequestOption{download.WithBasicAuth(username, password)}
}