backend.go 3.2 KB

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