-
Notifications
You must be signed in to change notification settings - Fork 9
/
flags.go
80 lines (64 loc) · 1.79 KB
/
flags.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
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package fncobra
import (
"context"
"github.com/spf13/cobra"
"namespacelabs.dev/foundation/internal/parsing/module"
"namespacelabs.dev/foundation/std/cfg"
)
func EnvFromValue(cmd *cobra.Command, env *string) *cfg.Context {
target := new(cfg.Context)
PushParse(cmd, func(ctx context.Context, args []string) error {
root, err := module.FindRoot(ctx, ".")
if err != nil {
return err
}
sourceEnv := *env
if sourceEnv == "" {
sourceEnv = "dev"
}
env, err := cfg.LoadContext(root, sourceEnv)
if err != nil {
return err
}
*target = env
return nil
})
return target
}
func LocationsFromArgs(cmd *cobra.Command, env *cfg.Context, opts ...ParseLocationsOpts) *Locations {
target := new(Locations)
PushParse(cmd, func(ctx context.Context, args []string) error {
locations, err := ParseLocs(ctx, args, env, MergeParseLocationOpts(opts))
if err != nil {
return err
}
*target = *locations
return nil
})
return target
}
func PushParse(cmd *cobra.Command, handler func(ctx context.Context, args []string) error) {
previous := cmd.PreRunE
cmd.PreRunE = func(cmd *cobra.Command, args []string) error {
if previous != nil {
if err := previous(cmd, args); err != nil {
return err
}
}
return handler(cmd.Context(), args)
}
}
func PushPreParse(cmd *cobra.Command, handler func(ctx context.Context, args []string) error) {
previous := cmd.PersistentPreRunE
cmd.PersistentPreRunE = func(cmd *cobra.Command, args []string) error {
if previous != nil {
if err := previous(cmd, args); err != nil {
return err
}
}
return handler(cmd.Context(), args)
}
}