117 lines
No EOL
3.2 KiB
JavaScript
117 lines
No EOL
3.2 KiB
JavaScript
var request = require('request'),
|
|
qs = require('querystring'),
|
|
fs_helper = require('./fs_helper');
|
|
|
|
/*
|
|
* Call the Bitbucket OAuth API to post the ssh key to the users profile.
|
|
*/
|
|
exports.post_ssh_key = function(profile, cb) {
|
|
var url = "https://api.bitbucket.org/1.0/ssh-keys/";
|
|
var oauth = { consumer_key: profile.consumer_key,
|
|
consumer_secret: profile.consumer_secret,
|
|
token: profile.token,
|
|
token_secret: profile.token_secret };
|
|
|
|
fs_helper.read_or_generate_key(function(data) {
|
|
var params = { key: data.trim(), label: 'raspeditor'};
|
|
|
|
request.post({
|
|
url:url,
|
|
body: qs.stringify(params),
|
|
oauth:oauth
|
|
}, function (e, r, body) {
|
|
console.log(e);
|
|
console.log(r.statusCode);
|
|
console.log(body);
|
|
cb (e, body);
|
|
});
|
|
});
|
|
|
|
};
|
|
|
|
/*
|
|
* Call the Bitbucket OAuth API to createa a repository on the users profile.
|
|
*/
|
|
exports.set_repository_private = function set_repository_private(profile, repository_name) {
|
|
var username = profile.username;
|
|
//console.log('set_repository_private');
|
|
//console.log(profile);
|
|
var url = "https://api.bitbucket.org/1.0/repositories/" + username + "/" + repository_name;
|
|
var oauth = { consumer_key: profile.consumer_key,
|
|
consumer_secret: profile.consumer_secret,
|
|
token: profile.token,
|
|
token_secret: profile.token_secret };
|
|
|
|
|
|
var params = {is_private: true};
|
|
|
|
request.put({
|
|
url:url,
|
|
body: qs.stringify(params),
|
|
oauth:oauth
|
|
}, function (e, r, body) {
|
|
//console.log(e);
|
|
console.log(r.statusCode);
|
|
if (r.statusCode === 200) {
|
|
console.log("successfully set repository private");
|
|
}
|
|
//console.log(body);
|
|
});
|
|
};
|
|
|
|
/*
|
|
* Call the Bitbucket OAuth API to get a list of the repositories on the users profile.
|
|
*/
|
|
exports.list_repositories = function(profile, cb) {
|
|
var self = this;
|
|
var url = "https://api.bitbucket.org/1.0/user/repositories/";
|
|
var oauth = { consumer_key: profile.consumer_key,
|
|
consumer_secret: profile.consumer_secret,
|
|
token: profile.token,
|
|
token_secret: profile.token_secret };
|
|
|
|
request.get({
|
|
url:url,
|
|
oauth:oauth,
|
|
json: true
|
|
}, function (e, r, body) {
|
|
console.log(e);
|
|
//console.log(r.statusCode);
|
|
if (body && Array.isArray(body)) {
|
|
body.forEach(function(repo) {
|
|
if (repo.slug === "my-pi-projects") {
|
|
self.set_repository_private(profile, repo.slug);
|
|
}
|
|
});
|
|
}
|
|
//console.log(body);
|
|
cb (e, body);
|
|
});
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
* Call the Bitbucket OAuth API to createa a repository on the users profile.
|
|
*/
|
|
exports.create_repository = function(profile, repository_name, cb) {
|
|
var url = "https://api.bitbucket.org/1.0/repositories/";
|
|
var oauth = { consumer_key: profile.consumer_key,
|
|
consumer_secret: profile.consumer_secret,
|
|
token: profile.token,
|
|
token_secret: profile.token_secret };
|
|
|
|
|
|
var params = { name: repository_name, scm: 'git', is_private: true};
|
|
|
|
request.post({
|
|
url:url,
|
|
body: qs.stringify(params),
|
|
oauth:oauth
|
|
}, function (e, r, body) {
|
|
console.log(e);
|
|
console.log(r.statusCode);
|
|
console.log(body);
|
|
cb (e, body);
|
|
});
|
|
}; |