backend.go 3.2 KB

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