mirror of
https://github.com/dokku/dokku.git
synced 2026-07-12 13:31:10 +02:00
Multi-flag inputs (e.g. `--build-arg X=Y --link a --link b`) used to be stored as a single line, which bypassed the per-line filter that drops `--link` and similar flags for dockerfile-based builders. Each `--flag [value]` group is now stored as its own entry, and a `--process` typed after the app name is lifted into the subcommand flag instead of being stored as a docker option.
321 lines
8.8 KiB
Go
321 lines
8.8 KiB
Go
package dockeroptions
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/dokku/dokku/plugins/common"
|
|
)
|
|
|
|
// CommandAdd adds a docker option to the specified phases for an app.
|
|
// When processes is empty the option is added to the default scope (apply
|
|
// to every container in the app); otherwise it is added to each named
|
|
// process type. The default and process flows are mutually exclusive
|
|
// because process scoping is only valid for the deploy phase.
|
|
//
|
|
// The option string is split on flag boundaries via SplitOptionString so a
|
|
// single invocation may carry multiple flags (e.g. `--build-arg X=Y --link a
|
|
// --link b`); each split flag becomes a separate stored option. A misplaced
|
|
// `--process` inside the option content is lifted into the process slice
|
|
// rather than stored as a docker option.
|
|
func CommandAdd(appName string, processes []string, phasesArg string, option string) error {
|
|
if err := common.VerifyAppName(appName); err != nil {
|
|
return err
|
|
}
|
|
|
|
phases, err := parsePhases(phasesArg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
options, extractedProcesses, err := SplitOptionString(option)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(options) == 0 {
|
|
return errors.New("Please specify docker options to add to the phase")
|
|
}
|
|
|
|
processes = dedupeProcesses(append(processes, extractedProcesses...))
|
|
|
|
if err := ValidateProcessFlag(processes, phases); err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, processType := range processes {
|
|
WarnIfProcessNotInProcfile(appName, processType)
|
|
}
|
|
|
|
for _, opt := range options {
|
|
if len(processes) == 0 {
|
|
if err := AddDockerOptionToPhases(appName, phases, opt); err != nil {
|
|
return err
|
|
}
|
|
continue
|
|
}
|
|
if err := AddDockerOptionToProcessPhases(appName, processes, phases, opt); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// CommandRemove removes a docker option from the specified phases for an app.
|
|
// Process-flag handling matches CommandAdd, including splitting a multi-flag
|
|
// option string and lifting a misplaced `--process` into the process slice.
|
|
func CommandRemove(appName string, processes []string, phasesArg string, option string) error {
|
|
if err := common.VerifyAppName(appName); err != nil {
|
|
return err
|
|
}
|
|
|
|
phases, err := parsePhases(phasesArg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
options, extractedProcesses, err := SplitOptionString(option)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(options) == 0 {
|
|
return errors.New("Please specify docker options to remove from the phase")
|
|
}
|
|
|
|
processes = dedupeProcesses(append(processes, extractedProcesses...))
|
|
|
|
if err := ValidateProcessFlag(processes, phases); err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, opt := range options {
|
|
if len(processes) == 0 {
|
|
if err := RemoveDockerOptionFromPhases(appName, phases, opt); err != nil {
|
|
return err
|
|
}
|
|
continue
|
|
}
|
|
if err := RemoveDockerOptionFromProcessPhases(appName, processes, phases, opt); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// dedupeProcesses preserves order while collapsing repeated process names,
|
|
// which can occur when --process is specified both before the app (captured
|
|
// by pflag) and after (lifted by SplitOptionString).
|
|
func dedupeProcesses(processes []string) []string {
|
|
seen := map[string]bool{}
|
|
result := make([]string, 0, len(processes))
|
|
for _, p := range processes {
|
|
if seen[p] {
|
|
continue
|
|
}
|
|
seen[p] = true
|
|
result = append(result, p)
|
|
}
|
|
return result
|
|
}
|
|
|
|
// CommandClear removes all docker options for an app, optionally limited to
|
|
// a list of phases and/or specific process types. With no flags it clears
|
|
// the default scope across all phases; with --process flags it clears each
|
|
// named process type for the supplied (deploy-only) phases.
|
|
func CommandClear(appName string, processes []string, phasesArg string) error {
|
|
if err := common.VerifyAppName(appName); err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(processes) == 0 {
|
|
return clearDefaultScope(appName, phasesArg)
|
|
}
|
|
|
|
phases, err := parsePhases(phasesArg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(phases) == 0 {
|
|
phases = []string{"deploy"}
|
|
}
|
|
|
|
if err := ValidateProcessFlag(processes, phases); err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, processType := range processes {
|
|
for _, phase := range phases {
|
|
common.LogInfo1(fmt.Sprintf("Clearing docker-options for %s on phase %s for process %s", appName, phase, processType))
|
|
if err := common.PropertyDelete("docker-options", appName, propertyKey(processType, phase)); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func clearDefaultScope(appName string, phasesArg string) error {
|
|
if phasesArg == "" {
|
|
common.LogInfo1(fmt.Sprintf("Clearing docker-options for %s on all phases", appName))
|
|
for _, phase := range availablePhases {
|
|
if err := common.PropertyDelete("docker-options", appName, propertyKey(DefaultProcessType, phase)); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
phases, err := parsePhases(phasesArg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, phase := range phases {
|
|
common.LogInfo1(fmt.Sprintf("Clearing docker-options for %s on phase %s", appName, phase))
|
|
if err := common.PropertyDelete("docker-options", appName, propertyKey(DefaultProcessType, phase)); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// CommandList prints the docker options stored for a given process+phase, one
|
|
// option per line. An empty processType means the default scope.
|
|
func CommandList(appName, processType, phase string) error {
|
|
if err := common.VerifyAppName(appName); err != nil {
|
|
return err
|
|
}
|
|
|
|
if phase == "" {
|
|
return errors.New("--phase is required")
|
|
}
|
|
|
|
if !isValidPhase(phase) {
|
|
return fmt.Errorf("Phase must be one of [%s]", strings.Join(availablePhases, " "))
|
|
}
|
|
|
|
if processType != "" {
|
|
if processType == DefaultProcessType {
|
|
return fmt.Errorf("%q is reserved and cannot be used as a --process value", DefaultProcessType)
|
|
}
|
|
if !processScopedPhases[phase] {
|
|
return fmt.Errorf("--process is only supported for the deploy phase, got %q", phase)
|
|
}
|
|
}
|
|
|
|
options, err := GetDockerOptionsForProcessPhase(appName, processType, phase)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, option := range options {
|
|
fmt.Println(option)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// CommandReport displays a docker-options report for one or more apps
|
|
func CommandReport(appName string, format string, infoFlag string) error {
|
|
if appName == "" {
|
|
apps, err := common.DokkuApps()
|
|
if err != nil {
|
|
if errors.Is(err, common.NoAppsExist) {
|
|
common.LogWarn(err.Error())
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
for _, name := range apps {
|
|
if err := ReportSingleApp(name, format, infoFlag); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
return ReportSingleApp(appName, format, infoFlag)
|
|
}
|
|
|
|
// migrateLegacyDockerOptionsFiles converts pre-properties DOCKER_OPTIONS_*
|
|
// files into property lists. It is gated by a single global marker so it never
|
|
// re-runs - even if a user later restores a DOCKER_OPTIONS_* file by hand.
|
|
func migrateLegacyDockerOptionsFiles() error {
|
|
if common.PropertyExists("docker-options", "--global", "migrated-from-files") {
|
|
return nil
|
|
}
|
|
|
|
apps, err := common.DokkuApps()
|
|
if err != nil {
|
|
if errors.Is(err, common.NoAppsExist) {
|
|
return common.PropertyWrite("docker-options", "--global", "migrated-from-files", "true")
|
|
}
|
|
return err
|
|
}
|
|
|
|
for _, appName := range apps {
|
|
for _, phase := range availablePhases {
|
|
legacyPath := filepath.Join(common.AppRoot(appName), "DOCKER_OPTIONS_"+strings.ToUpper(phase))
|
|
if !common.FileExists(legacyPath) {
|
|
continue
|
|
}
|
|
|
|
lines, err := readLegacyOptionsFile(legacyPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := common.PropertyListWrite("docker-options", appName, propertyKey(DefaultProcessType, phase), lines); err != nil {
|
|
return err
|
|
}
|
|
|
|
migratedPath := legacyPath + ".migrated"
|
|
if err := os.Rename(legacyPath, migratedPath); err != nil {
|
|
return fmt.Errorf("Unable to rename migrated file %s: %s", legacyPath, err.Error())
|
|
}
|
|
|
|
common.LogInfo1(fmt.Sprintf("Migrated %s to docker-options properties", legacyPath))
|
|
}
|
|
}
|
|
|
|
return common.PropertyWrite("docker-options", "--global", "migrated-from-files", "true")
|
|
}
|
|
|
|
func readLegacyOptionsFile(path string) ([]string, error) {
|
|
data, err := os.ReadFile(path)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("Unable to read %s: %s", path, err.Error())
|
|
}
|
|
|
|
var lines []string
|
|
for _, line := range strings.Split(string(data), "\n") {
|
|
trimmed := strings.TrimSpace(line)
|
|
if trimmed == "" {
|
|
continue
|
|
}
|
|
if strings.HasPrefix(trimmed, "#") {
|
|
continue
|
|
}
|
|
lines = append(lines, trimmed)
|
|
}
|
|
return lines, nil
|
|
}
|
|
|
|
// removeMigratedLegacyFiles deletes any leftover DOCKER_OPTIONS_*.migrated
|
|
// files for an app. Called from post-delete so we don't leak files into a
|
|
// directory that is about to be torn down anyway.
|
|
func removeMigratedLegacyFiles(appName string) {
|
|
for _, phase := range availablePhases {
|
|
path := filepath.Join(common.AppRoot(appName), "DOCKER_OPTIONS_"+strings.ToUpper(phase)+".migrated")
|
|
_ = os.Remove(path)
|
|
}
|
|
}
|