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

Add error handling and comments #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion controller/github.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,12 @@ function getCredentials() {
} else {
authorizeUser()
.then(user => res(user))
.catch(err => rej(err));
.catch(err => {
console.error('Error Authorizing user');
console.error(JSON.stringify(err));
console.error('************');
rej(err)
});
}
});
}
Expand Down
2 changes: 2 additions & 0 deletions controller/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ module.exports.getClient = function (client, username) {
};

module.exports.createGithubToken = function (username, password, note) {
// Create a Personal Access Token for opspark util https://github.com/settings/tokens
// Check history here: https://github.com/settings/security
return `curl -u "${username}:${password}" -d '{"scopes":["public_repo", "repo", "gist"],"note":"${note}","note_url":"https://www.npmjs.com/package/opspark"}' https://api.github.com/authorizations`;
};

Expand Down