2017-04-24 09:03:30 -06:00
|
|
|
package proxy
|
|
|
|
|
|
|
|
|
|
import (
|
2021-02-19 23:44:41 -05:00
|
|
|
"github.com/dokku/dokku/plugins/common"
|
2017-10-02 16:50:05 -07:00
|
|
|
"github.com/dokku/dokku/plugins/config"
|
2017-04-24 09:03:30 -06:00
|
|
|
)
|
|
|
|
|
|
2021-02-19 23:44:41 -05:00
|
|
|
// RunInSerial is the default value for whether to run a command in parallel or not
|
|
|
|
|
// and defaults to -1 (false)
|
|
|
|
|
const RunInSerial = 0
|
|
|
|
|
|
|
|
|
|
// BuildConfig rebuilds the proxy config for the specified app
|
|
|
|
|
func BuildConfig(appName string) error {
|
2024-03-14 02:19:03 -04:00
|
|
|
_, err := common.CallPlugnTrigger(common.PlugnTriggerInput{
|
|
|
|
|
Trigger: "proxy-build-config",
|
|
|
|
|
Args: []string{appName},
|
|
|
|
|
StreamStdio: true,
|
|
|
|
|
})
|
|
|
|
|
return err
|
2021-02-19 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
|
2022-01-28 20:26:49 -05:00
|
|
|
// ClearConfig clears the proxy config for the specified app
|
|
|
|
|
func ClearConfig(appName string) error {
|
2024-03-14 02:19:03 -04:00
|
|
|
_, err := common.CallPlugnTrigger(common.PlugnTriggerInput{
|
|
|
|
|
Trigger: "proxy-clear-config",
|
|
|
|
|
Args: []string{appName},
|
|
|
|
|
StreamStdio: true,
|
|
|
|
|
})
|
|
|
|
|
return err
|
2022-01-28 20:26:49 -05:00
|
|
|
}
|
|
|
|
|
|
2021-02-19 23:44:41 -05:00
|
|
|
// Disable disables proxy implementations for the specified app
|
|
|
|
|
func Disable(appName string) error {
|
|
|
|
|
if !IsAppProxyEnabled(appName) {
|
|
|
|
|
common.LogInfo1("Proxy is already disable for app")
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
common.LogInfo1("Disabling proxy for app")
|
|
|
|
|
entries := map[string]string{
|
|
|
|
|
"DOKKU_DISABLE_PROXY": "1",
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-08 01:02:19 -05:00
|
|
|
if err := config.SetMany(appName, entries, false, false); err != nil {
|
2021-02-19 23:44:41 -05:00
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-14 02:19:03 -04:00
|
|
|
_, err := common.CallPlugnTrigger(common.PlugnTriggerInput{
|
|
|
|
|
Trigger: "proxy-disable",
|
|
|
|
|
Args: []string{appName},
|
|
|
|
|
StreamStdio: true,
|
|
|
|
|
})
|
|
|
|
|
return err
|
2021-02-19 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Enable enables proxy implementations for the specified app
|
|
|
|
|
func Enable(appName string) error {
|
|
|
|
|
if IsAppProxyEnabled(appName) {
|
|
|
|
|
common.LogInfo1("Proxy is already enabled for app")
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
common.LogInfo1("Enabling proxy for app")
|
|
|
|
|
keys := []string{"DOKKU_DISABLE_PROXY"}
|
|
|
|
|
if err := config.UnsetMany(appName, keys, false); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
2024-03-14 02:19:03 -04:00
|
|
|
_, err := common.CallPlugnTrigger(common.PlugnTriggerInput{
|
|
|
|
|
Trigger: "proxy-enable",
|
|
|
|
|
Args: []string{appName},
|
|
|
|
|
StreamStdio: true,
|
|
|
|
|
})
|
|
|
|
|
return err
|
2021-02-19 23:44:41 -05:00
|
|
|
}
|
|
|
|
|
|
2017-04-24 09:03:30 -06:00
|
|
|
// IsAppProxyEnabled returns true if proxy is enabled; otherwise return false
|
|
|
|
|
func IsAppProxyEnabled(appName string) bool {
|
|
|
|
|
proxyEnabled := true
|
|
|
|
|
disableProxy := config.GetWithDefault(appName, "DOKKU_DISABLE_PROXY", "")
|
|
|
|
|
if disableProxy != "" {
|
|
|
|
|
proxyEnabled = false
|
|
|
|
|
}
|
|
|
|
|
return proxyEnabled
|
|
|
|
|
}
|