-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/readme-docker-instruction
- Loading branch information
Showing
15 changed files
with
650 additions
and
142 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
- id: config-validate | ||
name: Validate CircleCI config | ||
entry: circleci config validate --skip-update-check | ||
language: golang | ||
files: .circleci/config.yml |
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,5 +1,7 @@ | ||
FROM cimg/go:1.20 | ||
|
||
LABEL maintainer="Developer Experience Team <[email protected]>" | ||
|
||
ENV CIRCLECI_CLI_SKIP_UPDATE_CHECK true | ||
|
||
COPY ./dist/circleci-cli_linux_amd64/circleci /usr/local/bin |
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
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.