| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- package aws
- import (
- "errors"
- "fmt"
- "net/http"
- "strings"
- "github.com/aws/aws-sdk-go/aws"
- "github.com/aws/aws-sdk-go/service/ec2"
- "github.com/aws/aws-sdk-go/service/eks"
- "github.com/porter-dev/porter/api/server/handlers"
- "github.com/porter-dev/porter/api/server/shared"
- "github.com/porter-dev/porter/api/server/shared/apierrors"
- "github.com/porter-dev/porter/api/server/shared/config"
- "github.com/porter-dev/porter/api/types"
- "github.com/porter-dev/porter/internal/models"
- "gorm.io/gorm"
- )
- type GetClusterInfoHandler struct {
- handlers.PorterHandlerReadWriter
- }
- func NewGetClusterInfoHandler(
- config *config.Config,
- decoderValidator shared.RequestDecoderValidator,
- writer shared.ResultWriter,
- ) *GetClusterInfoHandler {
- return &GetClusterInfoHandler{
- PorterHandlerReadWriter: handlers.NewDefaultPorterHandler(config, decoderValidator, writer),
- }
- }
- func (c *GetClusterInfoHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
- proj, _ := r.Context().Value(types.ProjectScope).(*models.Project)
- cluster, _ := r.Context().Value(types.ClusterScope).(*models.Cluster)
- if cluster.AWSIntegrationID == 0 {
- c.HandleAPIError(w, r, apierrors.NewErrForbidden(fmt.Errorf("no AWS cluster found with cluster ID: %d", cluster.ID)))
- return
- }
- awsInt, err := c.Repo().AWSIntegration().ReadAWSIntegration(proj.ID, cluster.AWSIntegrationID)
- if err != nil {
- if errors.Is(err, gorm.ErrRecordNotFound) {
- c.HandleAPIError(w, r, apierrors.NewErrNotFound(fmt.Errorf("no AWS integration found with project ID: %d and "+
- "integration ID: %d", proj.ID, cluster.AWSIntegrationID)))
- return
- }
- c.HandleAPIError(w, r, apierrors.NewErrInternal(fmt.Errorf("error fetching AWS integration with project ID: %d and "+
- "integration ID: %d. Error: %w", proj.ID, cluster.AWSIntegrationID, err)))
- return
- }
- awsSession, err := awsInt.GetSession()
- if err != nil {
- c.HandleAPIError(w, r, apierrors.NewErrPassThroughToClient(fmt.Errorf("error fetching new session for AWS with "+
- "project ID: %d and integration ID: %d. Error: %w", proj.ID, cluster.AWSIntegrationID, err), http.StatusConflict))
- return
- }
- clusterName := cluster.Name
- if strings.HasPrefix(clusterName, "arn:aws:eks:") {
- parts := strings.Split(clusterName, "/")
- clusterName = parts[len(parts)-1]
- }
- awsConf := aws.NewConfig()
- if awsInt.AWSRegion != "" {
- awsConf = awsConf.WithRegion(awsInt.AWSRegion)
- }
- eksSvc := eks.New(awsSession, awsConf)
- clusterInfo, err := eksSvc.DescribeCluster(&eks.DescribeClusterInput{
- Name: &clusterName,
- })
- if err != nil || clusterInfo.Cluster == nil {
- c.HandleAPIError(w, r, apierrors.NewErrInternal(err))
- return
- }
- ec2Svc := ec2.New(awsSession, awsConf)
- res := &types.GetAWSClusterInfoResponse{
- Name: clusterName,
- ARN: *clusterInfo.Cluster.Arn,
- Status: *clusterInfo.Cluster.Status,
- K8sVersion: *clusterInfo.Cluster.Version,
- EKSVersion: *clusterInfo.Cluster.PlatformVersion,
- }
- err = ec2Svc.DescribeSubnetsPages(&ec2.DescribeSubnetsInput{
- Filters: []*ec2.Filter{
- {
- Name: aws.String("vpc-id"),
- Values: []*string{
- clusterInfo.Cluster.ResourcesVpcConfig.VpcId,
- },
- },
- },
- }, func(page *ec2.DescribeSubnetsOutput, lastPage bool) bool {
- if page == nil {
- return false
- }
- for _, subnet := range page.Subnets {
- res.Subnets = append(res.Subnets, &types.AWSSubnet{
- SubnetID: *subnet.SubnetId,
- AvailabilityZone: *subnet.AvailabilityZone,
- AvailableIPAddressCount: *subnet.AvailableIpAddressCount,
- })
- }
- return !lastPage
- })
- if err != nil {
- c.HandleAPIError(w, r, apierrors.NewErrInternal(err))
- return
- }
- c.WriteResult(w, r, res)
- }
|