-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adds support to list sites #345
- Loading branch information
Showing
4 changed files
with
123 additions
and
0 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
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,36 @@ | ||
// Copyright 2023 Google LLC | ||
// | ||
// 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 sites | ||
|
||
import ( | ||
"internal/apiclient" | ||
"internal/client/sites" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
// ListCmd to list catalog items | ||
var ListCmd = &cobra.Command{ | ||
Use: "list", | ||
Short: "Returns the API Portals associated with the org", | ||
Long: "Returns the API Portals associated with the org", | ||
Args: func(cmd *cobra.Command, args []string) (err error) { | ||
return apiclient.SetApigeeOrg(org) | ||
}, | ||
RunE: func(cmd *cobra.Command, args []string) (err error) { | ||
_, err = sites.List() | ||
return | ||
}, | ||
} |
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,37 @@ | ||
// Copyright 2023 Google LLC | ||
// | ||
// 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 sites | ||
|
||
import ( | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
// Cmd to manage | ||
var Cmd = &cobra.Command{ | ||
Use: "sites", | ||
Short: "Manage Apigee API Portals", | ||
Long: "Manage Apigee API Portals", | ||
} | ||
|
||
var org, siteid, id, name string | ||
Check failure on line 28 in cmd/sites/sites.go GitHub Actions / lint
|
||
|
||
func init() { | ||
Cmd.PersistentFlags().StringVarP(&org, "org", "o", | ||
"", "Apigee organization name") | ||
|
||
Cmd.AddCommand(ListCmd) | ||
|
||
_ = Cmd.MarkFlagRequired("org") | ||
} |
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,48 @@ | ||
// Copyright 2023 Google LLC | ||
// | ||
// 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 sites | ||
|
||
import ( | ||
"internal/apiclient" | ||
"net/url" | ||
"path" | ||
|
||
"github.com/thedevsaddam/gojsonq" | ||
) | ||
|
||
// List | ||
func List() (respBody []byte, err error) { | ||
u, _ := url.Parse(apiclient.BaseURL) | ||
u.Path = path.Join(u.Path, apiclient.GetApigeeOrg(), "sites") | ||
respBody, err = apiclient.HttpClient(u.String()) | ||
return respBody, err | ||
} | ||
|
||
// GetSiteIDs | ||
func GetSiteIDs() (siteIDs []string, err error) { | ||
apiclient.ClientPrintHttpResponse.Set(false) | ||
defer apiclient.ClientPrintHttpResponse.Set(apiclient.GetCmdPrintHttpResponseSetting()) | ||
respBody, err := List() | ||
if err != nil { | ||
return nil, err | ||
} | ||
jq := gojsonq.New().JSONString(string(respBody)) | ||
ids := jq.From("data").Pluck("id").([]interface{}) | ||
siteIDs = make([]string, len(ids)) | ||
for k, v := range ids { | ||
siteIDs[k] = v.(string) | ||
} | ||
return siteIDs, nil | ||
} |