-
Notifications
You must be signed in to change notification settings - Fork 237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EXT-282-follow-project #745
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
211396a
If user is attempting to follow a project that is not in bitbucket or…
corinnesollows 219b91d
Merge branch 'master' of github.com:CircleCI-Public/circleci-cli into…
corinnesollows 6e3a244
Syntax fixes
corinnesollows 55bf1f9
Error correcti0n
corinnesollows File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -14,31 +14,38 @@ type options struct { | |||||||||||||
cfg *settings.Config | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
//followProject gets the remote data and attempts to follow its git project | ||||||||||||||
func followProject(opts options) error { | ||||||||||||||
|
||||||||||||||
remote, err := git.InferProjectFromGitRemotes() | ||||||||||||||
|
||||||||||||||
if err != nil { | ||||||||||||||
return errors.Wrap(err, errorMessage) | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
vcsShort := "gh" | ||||||||||||||
if remote.VcsType == "BITBUCKET" { | ||||||||||||||
vcsShort = "bb" | ||||||||||||||
} | ||||||||||||||
res, err := api.FollowProject(*opts.cfg, vcsShort, remote.Organization, remote.Project) | ||||||||||||||
if err != nil { | ||||||||||||||
return err | ||||||||||||||
//check that project url contains github or bitbucket; our legacy vcs | ||||||||||||||
if remote.VcsType == git.GitHub || remote.VcsType == git.Bitbucket { | ||||||||||||||
vcsShort := "gh" | ||||||||||||||
if remote.VcsType == git.Bitbucket { | ||||||||||||||
vcsShort = "bb" | ||||||||||||||
} | ||||||||||||||
res, err := api.FollowProject(*opts.cfg, vcsShort, remote.Organization, remote.Project) | ||||||||||||||
if err != nil { | ||||||||||||||
return err | ||||||||||||||
} | ||||||||||||||
if res.Followed { | ||||||||||||||
fmt.Println("Project successfully followed!") | ||||||||||||||
} else if res.Message == "Project not found" { | ||||||||||||||
fmt.Println("Unable to determine project slug for CircleCI (slug is case sensitive).") | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
} else { | ||||||||||||||
//if not warn user their vcs is not supported | ||||||||||||||
return errors.New(errorMessage) | ||||||||||||||
} | ||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you might need an
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yup, added |
||||||||||||||
if res.Followed { | ||||||||||||||
fmt.Println("Project successfully followed!") | ||||||||||||||
} else if res.Message == "Project not found" { | ||||||||||||||
fmt.Println("Unable to determine project slug for CircleCI (slug is case sensitive).") | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
return nil | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
//followProjectCommand follow cobra command creation | ||||||||||||||
func followProjectCommand(config *settings.Config) *cobra.Command { | ||||||||||||||
opts := options{ | ||||||||||||||
cfg: config, | ||||||||||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed there's similar logic in
cmd/open.go
. Would it make sense to add anisLegacyVcs
method to theRemote
struct ingit/git.go
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That also would definitely work. While I was writing this I was under the assumption that it was part of an external package. That being said, I dont know if its worth going back and changing, since these are most likely going to be the only two places using this and we're looking to eventually get rid of VCSType completely.