-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: query product releases (Cr 24615) (#755)
## What <!-- What is changing in this PR? --> ## Why <!-- Why are these changes being made? --> ## Notes <!-- Add any additional notes here --> --------- Co-authored-by: Noam Gal <[email protected]>
- Loading branch information
1 parent
a7c7757
commit 6b74b8d
Showing
9 changed files
with
512 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
VERSION=v0.1.64 | ||
VERSION=v0.1.65 | ||
|
||
OUT_DIR=dist | ||
YEAR?=$(shell date +"%Y") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,172 @@ | ||
// Copyright 2024 The Codefresh Authors. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package commands | ||
|
||
import ( | ||
"context" | ||
"encoding/json" | ||
"fmt" | ||
"strings" | ||
|
||
"github.com/codefresh-io/cli-v2/pkg/util" | ||
|
||
"github.com/codefresh-io/go-sdk/pkg/client" | ||
platmodel "github.com/codefresh-io/go-sdk/pkg/model/promotion-orchestrator" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
type ( | ||
productReleaseSlice struct { | ||
Edges []productReleaseEdge `json:"edges"` | ||
} | ||
|
||
productReleaseEdge struct { | ||
Node map[string]any `json:"node"` | ||
} | ||
) | ||
|
||
func NewProductReleaseCommand() *cobra.Command { | ||
cmd := &cobra.Command{ | ||
Use: "product-release", | ||
Short: "Manage product releases of Codefresh account", | ||
PersistentPreRunE: cfConfig.RequireAuthentication, | ||
Args: cobra.NoArgs, // Workaround for subcommand usage errors. See: https://github.com/spf13/cobra/issues/706 | ||
Run: func(cmd *cobra.Command, args []string) { | ||
cmd.HelpFunc()(cmd, args) | ||
exit(1) | ||
}, | ||
} | ||
|
||
cmd.AddCommand(newProductReleaseListCommand()) | ||
|
||
return cmd | ||
} | ||
|
||
func newProductReleaseListCommand() *cobra.Command { | ||
var ( | ||
pageLimit int | ||
statuses []string | ||
promotionFlows []string | ||
) | ||
|
||
cmd := &cobra.Command{ | ||
Use: "list", | ||
Short: "List all product releases", | ||
Args: cobra.MaximumNArgs(1), | ||
Example: util.Doc(` | ||
<BIN> product-release list <product-name> | ||
<BIN> product-release list <product-name> --page-limit 3 | ||
<BIN> product-release list <product-name> --status RUNNING,FAILED --promotion-flows base-flow,flow-2 | ||
`), | ||
RunE: func(cmd *cobra.Command, args []string) error { | ||
ctx := cmd.Context() | ||
if len(args) == 0 { | ||
return fmt.Errorf("missing product name") | ||
} | ||
|
||
releaseStatus, err := toProductReleaseStatus(statuses) | ||
if err != nil { | ||
return fmt.Errorf("failed to convert status: %w", err) | ||
} | ||
|
||
filterArgs := platmodel.ProductReleaseFiltersArgs{ | ||
Statuses: releaseStatus, | ||
PromotionFlows: promotionFlows, | ||
} | ||
return runProductReleaseList(ctx, filterArgs, args[0], pageLimit) | ||
}, | ||
} | ||
|
||
cmd.Flags().StringSliceVarP(&statuses, "status", "s", []string{}, "Filter by statuses, comma seperated array RUNNING|SUCCEEDED|SUSPENDED|FAILED") | ||
cmd.Flags().StringSliceVar(&promotionFlows, "promotion-flows", []string{}, "Filter by promotion flows, comma seperated array") | ||
cmd.Flags().IntVar(&pageLimit, "page-limit", 20, "page limit number, limited to 50") | ||
|
||
return cmd | ||
} | ||
|
||
// client here is for mock testings usage | ||
func runProductReleaseList(ctx context.Context, filterArgs platmodel.ProductReleaseFiltersArgs, productName string, pageLimit int) error { | ||
query := ` | ||
query getProductReleasesList( | ||
$productName: String! | ||
$filters: ProductReleaseFiltersArgs! | ||
$pagination: SlicePaginationArgs | ||
) { | ||
productReleases(productName: $productName, filters: $filters, pagination: $pagination) { | ||
edges { | ||
node { | ||
releaseId | ||
steps { | ||
environmentName | ||
status | ||
} | ||
status | ||
} | ||
} | ||
} | ||
}` | ||
// add pagination - default for now is last 20 | ||
variables := map[string]any{ | ||
"filters": filterArgs, | ||
"productName": productName, | ||
"pagination": platmodel.SlicePaginationArgs{ | ||
First: &pageLimit, | ||
}, | ||
} | ||
|
||
productReleasesPage, err := client.GraphqlAPI[productReleaseSlice](ctx, cfConfig.NewClient().InternalClient(), query, variables) | ||
if err != nil { | ||
return fmt.Errorf("failed to get product releases: %w", err) | ||
} | ||
|
||
if len(productReleasesPage.Edges) == 0 { | ||
fmt.Println("No product releases found") | ||
return nil | ||
} | ||
|
||
nodes := extractNodesFromEdges(productReleasesPage.Edges) | ||
resJSON, err := json.MarshalIndent(nodes, "", "\t") | ||
if err != nil { | ||
return fmt.Errorf("failed to marshal product releases: %w", err) | ||
} | ||
|
||
fmt.Println(string(resJSON)) | ||
return nil | ||
} | ||
|
||
func toProductReleaseStatus(statuses []string) ([]platmodel.ProductReleaseStatus, error) { | ||
var result []platmodel.ProductReleaseStatus | ||
|
||
for _, statusString := range statuses { | ||
productReleaseStatus := strings.ToUpper(strings.TrimSpace(statusString)) | ||
status := platmodel.ProductReleaseStatus(productReleaseStatus) | ||
if !status.IsValid() { | ||
return nil, fmt.Errorf("invalid product release status: %s", statusString) | ||
} | ||
|
||
result = append(result, platmodel.ProductReleaseStatus(productReleaseStatus)) | ||
} | ||
|
||
return result, nil | ||
} | ||
|
||
func extractNodesFromEdges(edges []productReleaseEdge) []map[string]any { | ||
res := []map[string]any{} | ||
for _, edge := range edges { | ||
res = append(res, edge.Node) | ||
} | ||
|
||
return res | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
[ | ||
{ | ||
"releaseId": "669fac7668fc487b38c2ad19", | ||
"status": "FAILED", | ||
"steps": [ | ||
{ | ||
"environmentName": "my-env", | ||
"status": "SUCCEEDED" | ||
}, | ||
{ | ||
"environmentName": "staging", | ||
"status": "SUCCEEDED" | ||
}, | ||
{ | ||
"environmentName": "prod", | ||
"status": "FAILED" | ||
} | ||
] | ||
}, | ||
{ | ||
"releaseId": "669fac7668fc487b38c2ad18", | ||
"status": "FAILED", | ||
"steps": [ | ||
{ | ||
"environmentName": "my-env", | ||
"status": "SUCCEEDED" | ||
}, | ||
{ | ||
"environmentName": "staging", | ||
"status": "SUCCEEDED" | ||
}, | ||
{ | ||
"environmentName": "prod", | ||
"status": "FAILED" | ||
} | ||
] | ||
} | ||
] |
Oops, something went wrong.