-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add warning on some CLI commands that orbs cannot be deleted once they are created * Add org-slug and org-id flags to orb validate & process commands (#922) --------- Co-authored-by: rlegan <[email protected]> Co-authored-by: JulesFaucherre <[email protected]> Co-authored-by: Renaud <[email protected]>
- Loading branch information
1 parent
6f8e97e
commit cc8c4de
Showing
10 changed files
with
602 additions
and
128 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,14 @@ | ||
package collaborators | ||
|
||
type CollaborationResult struct { | ||
VcsType string `json:"vcs_type"` | ||
OrgSlug string `json:"slug"` | ||
OrgName string `json:"name"` | ||
OrgId string `json:"id"` | ||
AvatarUrl string `json:"avatar_url"` | ||
} | ||
|
||
type CollaboratorsClient interface { | ||
GetCollaborationBySlug(slug string) (*CollaborationResult, error) | ||
GetOrgCollaborations() ([]CollaborationResult, error) | ||
} |
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,64 @@ | ||
package collaborators | ||
|
||
import ( | ||
"net/url" | ||
"strings" | ||
|
||
"github.com/CircleCI-Public/circleci-cli/api/rest" | ||
"github.com/CircleCI-Public/circleci-cli/settings" | ||
) | ||
|
||
var ( | ||
CollaborationsPath = "me/collaborations" | ||
) | ||
|
||
type collaboratorsRestClient struct { | ||
client *rest.Client | ||
} | ||
|
||
// NewCollaboratorsRestClient returns a new collaboratorsRestClient satisfying the api.CollaboratorsClient | ||
// interface via the REST API. | ||
func NewCollaboratorsRestClient(config settings.Config) (*collaboratorsRestClient, error) { | ||
client := &collaboratorsRestClient{ | ||
client: rest.NewFromConfig(config.Host, &config), | ||
} | ||
return client, nil | ||
} | ||
|
||
func (c *collaboratorsRestClient) GetOrgCollaborations() ([]CollaborationResult, error) { | ||
req, err := c.client.NewRequest("GET", &url.URL{Path: CollaborationsPath}, nil) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
var resp []CollaborationResult | ||
_, err = c.client.DoRequest(req, &resp) | ||
return resp, err | ||
} | ||
|
||
func (c *collaboratorsRestClient) GetCollaborationBySlug(slug string) (*CollaborationResult, error) { | ||
// Support for <vcs-name>/<org-name> as well as <vcs-short>/<org-name> for the slug | ||
// requires splitting | ||
collaborations, err := c.GetOrgCollaborations() | ||
|
||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
slugParts := strings.Split(slug, "/") | ||
|
||
for _, v := range collaborations { | ||
// The rest-api allways returns <vsc-short>/<org-name> as a slug | ||
if v.OrgSlug == slug { | ||
return &v, nil | ||
} | ||
|
||
// Compare first part of argument slug with the VCSType | ||
splitted := strings.Split(v.OrgSlug, "/") | ||
if len(slugParts) >= 2 && len(splitted) >= 2 && slugParts[0] == v.VcsType && slugParts[1] == splitted[1] { | ||
return &v, nil | ||
} | ||
} | ||
|
||
return nil, nil | ||
} |
Oops, something went wrong.