Skip to content
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

Better handle GitHub bad token #15

Merged
merged 2 commits into from
May 3, 2020
Merged

Conversation

pmiossec
Copy link
Member

Transform a NRE in an UnauthorizedAccessException with clearer message

First step to handle gitextensions/gitextensions#7641

@pmiossec
Copy link
Member Author

Just review the first commit.

repo.Detailed = true;
return repo;
}

private T DoRequest<T>(IRestRequest request, bool shouldNotFail = false) where T : new()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please invert shouldNotFail. It leads to a mental overload when staring at true to understand what it means.

Suggested change
private T DoRequest<T>(IRestRequest request, bool shouldNotFail = false) where T : new()
private T DoRequest<T>(IRestRequest request, bool throwOnError = true) where T : new()

@@ -112,6 +113,32 @@ public Repository getRepository(string username, string repositoryName)
return repo;
}

private T DoRequest<T>(RestRequest request, bool shouldNotFail = false) where T : new()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please move the private method after publics.

Copy link
Member

@gerhardol gerhardol left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK for me

if (repos == null || repos.Repositories == null)
throw new Exception(string.Format("Could not search for {0}", query));
var repos = DoRequest<APIv2.RepositoryListV2>(request);
if (repos?.Repositories == null)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe add {} to conform with GE style (but will not be the same as other files in this submodule)

@pmiossec pmiossec force-pushed the better_handle_github_bad_token branch from 95e9f55 to 3605b4a Compare April 28, 2020 20:40
@pmiossec
Copy link
Member Author

Updated.

@pmiossec pmiossec force-pushed the better_handle_github_bad_token branch from 3605b4a to 7a99961 Compare April 28, 2020 20:57
@RussKie RussKie merged commit a5e3333 into master May 3, 2020
@RussKie RussKie deleted the better_handle_github_bad_token branch May 3, 2020 12:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants