context.go 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. Copyright 2020 Docker Compose CLI authors
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package context
  14. import (
  15. gocontext "context"
  16. "golang.org/x/net/context"
  17. configfile "github.com/docker/cli/cli/config/configfile"
  18. cliflags "github.com/docker/cli/cli/flags"
  19. )
  20. type currentContextKey struct{}
  21. type cliOptionsKey struct{}
  22. type configKey struct{}
  23. // WithCurrentContext sets the name of the current docker context
  24. func WithCurrentContext(ctx gocontext.Context, contextName string) context.Context {
  25. return context.WithValue(ctx, currentContextKey{}, contextName)
  26. }
  27. // CurrentContext returns the current context name
  28. func CurrentContext(ctx context.Context) string {
  29. cc, _ := ctx.Value(currentContextKey{}).(string)
  30. return cc
  31. }
  32. // WithCliOptions sets CLI options
  33. func WithCliOptions(ctx gocontext.Context, options cliflags.CommonOptions) context.Context {
  34. return context.WithValue(ctx, cliOptionsKey{}, options)
  35. }
  36. // CliOptions returns the current context name
  37. func CliOptions(ctx context.Context) cliflags.CommonOptions {
  38. cc, _ := ctx.Value(cliOptionsKey{}).(cliflags.CommonOptions)
  39. return cc
  40. }
  41. // WithConfig sets docker config
  42. func WithConfig(ctx gocontext.Context, config configfile.ConfigFile) context.Context {
  43. return context.WithValue(ctx, configKey{}, config)
  44. }
  45. // Config returns the docker config
  46. func Config(ctx context.Context) configfile.ConfigFile {
  47. cc, _ := ctx.Value(cliOptionsKey{}).(configfile.ConfigFile)
  48. return cc
  49. }