backend.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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 ecs
  14. import (
  15. "context"
  16. "github.com/aws/aws-sdk-go/aws"
  17. "github.com/aws/aws-sdk-go/aws/session"
  18. "github.com/docker/compose-cli/api/compose"
  19. "github.com/docker/compose-cli/api/containers"
  20. "github.com/docker/compose-cli/api/secrets"
  21. "github.com/docker/compose-cli/api/volumes"
  22. "github.com/docker/compose-cli/backend"
  23. apicontext "github.com/docker/compose-cli/context"
  24. "github.com/docker/compose-cli/context/cloud"
  25. "github.com/docker/compose-cli/context/store"
  26. "github.com/docker/compose-cli/errdefs"
  27. )
  28. const backendType = store.EcsContextType
  29. // ContextParams options for creating AWS context
  30. type ContextParams struct {
  31. Description string
  32. Region string
  33. Profile string
  34. }
  35. func init() {
  36. backend.Register(backendType, backendType, service, getCloudService)
  37. }
  38. func service(ctx context.Context) (backend.Service, error) {
  39. contextStore := store.ContextStore(ctx)
  40. currentContext := apicontext.CurrentContext(ctx)
  41. var ecsContext store.EcsContext
  42. if err := contextStore.GetEndpoint(currentContext, &ecsContext); err != nil {
  43. return nil, err
  44. }
  45. return getEcsAPIService(ecsContext)
  46. }
  47. func getEcsAPIService(ecsCtx store.EcsContext) (*ecsAPIService, error) {
  48. sess, err := session.NewSessionWithOptions(session.Options{
  49. Profile: ecsCtx.Profile,
  50. SharedConfigState: session.SharedConfigEnable,
  51. Config: aws.Config{
  52. Region: aws.String(ecsCtx.Region),
  53. },
  54. })
  55. if err != nil {
  56. return nil, err
  57. }
  58. sdk := newSDK(sess)
  59. return &ecsAPIService{
  60. ctx: ecsCtx,
  61. Region: ecsCtx.Region,
  62. SDK: sdk,
  63. }, nil
  64. }
  65. type ecsAPIService struct {
  66. ctx store.EcsContext
  67. Region string
  68. SDK sdk
  69. }
  70. func (a *ecsAPIService) ContainerService() containers.Service {
  71. return nil
  72. }
  73. func (a *ecsAPIService) ComposeService() compose.Service {
  74. return a
  75. }
  76. func (a *ecsAPIService) SecretsService() secrets.Service {
  77. return a
  78. }
  79. func (a *ecsAPIService) VolumeService() volumes.Service {
  80. return nil
  81. }
  82. func getCloudService() (cloud.Service, error) {
  83. return ecsCloudService{}, nil
  84. }
  85. type ecsCloudService struct {
  86. }
  87. func (a ecsCloudService) Login(ctx context.Context, params interface{}) error {
  88. return errdefs.ErrNotImplemented
  89. }
  90. func (a ecsCloudService) Logout(ctx context.Context) error {
  91. return errdefs.ErrNotImplemented
  92. }
  93. func (a ecsCloudService) CreateContextData(ctx context.Context, params interface{}) (interface{}, string, error) {
  94. contextHelper := newContextCreateHelper()
  95. createOpts := params.(ContextParams)
  96. return contextHelper.createContextData(ctx, createOpts)
  97. }