|
@ -43,47 +43,6 @@ function alreadyInGraph(userID) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Adds the followers/following of a person |
|
|
|
|
|
* to the graph |
|
|
|
|
|
* |
|
|
|
|
|
* @param username |
|
|
|
|
|
* @param apiPath |
|
|
|
|
|
* @returns {Promise<any>} |
|
|
|
|
|
*/ |
|
|
|
|
|
function addRepos(orgName, apiPath, page) |
|
|
|
|
|
{ |
|
|
|
|
|
console.log(orgName + " page=" + page); |
|
|
|
|
|
updateProgress(); |
|
|
|
|
|
return new Promise(function(resolve, reject) { |
|
|
|
|
|
queryAPIByOrg(apiPath + "?page=" + page, orgName, function(data) { |
|
|
|
|
|
console.log(data); |
|
|
|
|
|
console.log(data.length); |
|
|
|
|
|
var prom = []; |
|
|
|
|
|
for(var i = 0; i < data.length; i++) { |
|
|
|
|
|
if(!alreadyInGraph(data[i].id)) { |
|
|
|
|
|
prom.push(addRepoToGraph(data[i])); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
Promise.all(prom).then( () => { |
|
|
|
|
|
if(data.length === 30) { |
|
|
|
|
|
addRepos(orgName, apiPath, page+ 1).then(function() { |
|
|
|
|
|
resolve(); |
|
|
|
|
|
}) |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
resolve(); |
|
|
|
|
|
} |
|
|
|
|
|
}) |
|
|
|
|
|
}, |
|
|
|
|
|
function(error) { |
|
|
|
|
|
reject(error); |
|
|
|
|
|
}) |
|
|
|
|
|
}); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* Greedy function which checks to see if a edge is in the graphs |
|
|
* Greedy function which checks to see if a edge is in the graphs |
|
|
* |
|
|
* |
|
@ -173,11 +132,11 @@ function processUserConnections(user) |
|
|
{ |
|
|
{ |
|
|
return new Promise(function(resolve, reject) |
|
|
return new Promise(function(resolve, reject) |
|
|
{ |
|
|
{ |
|
|
|
|
|
|
|
|
processConnections(user, API_FOLLOWING, 1).then(function() |
|
|
processConnections(user, API_FOLLOWING, 1).then(function() |
|
|
{ |
|
|
{ |
|
|
processConnections(user, API_FOLLOWERS, 1).then(function() |
|
|
processConnections(user, API_FOLLOWERS, 1).then(function() |
|
|
{ |
|
|
{ |
|
|
|
|
|
updateProgress(); |
|
|
resolve(); |
|
|
resolve(); |
|
|
}) |
|
|
}) |
|
|
}) |
|
|
}) |
|
@ -213,26 +172,6 @@ function createConnections() |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var total = 1; |
|
|
|
|
|
var indexed = 0; |
|
|
|
|
|
var progressID; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function updateProgress() |
|
|
|
|
|
{ |
|
|
|
|
|
indexed++; |
|
|
|
|
|
|
|
|
|
|
|
var percent = parseInt((indexed/total)*100); |
|
|
|
|
|
|
|
|
|
|
|
$("#" + progressID).html("<div class=\"progress\">\n" + |
|
|
|
|
|
" <div class=\"progress-bar progress-bar-striped progress-bar-animated\" role=\"progressbar\" style=\"width: " + percent + "%\" aria-valuenow=\"" + percent + "\" aria-valuemin=\"0\" aria-valuemax=\"100\"></div>\n" + |
|
|
|
|
|
"</div>"); |
|
|
|
|
|
|
|
|
|
|
|
console.log(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function bringUpProfileView(id) |
|
|
function bringUpProfileView(id) |
|
|
{ |
|
|
{ |
|
|
for(var i = 0; i < nodes.length; i++) |
|
|
for(var i = 0; i < nodes.length; i++) |
|
@ -285,6 +224,7 @@ function addOrgUsers(orgname, page) |
|
|
} |
|
|
} |
|
|
else |
|
|
else |
|
|
{ |
|
|
{ |
|
|
|
|
|
total = 2*(data.length + (page * 30)); |
|
|
resolve(); |
|
|
resolve(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -307,6 +247,23 @@ function bringUpProfileView(id) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var total = 1; |
|
|
|
|
|
var indexed = 0; |
|
|
|
|
|
|
|
|
|
|
|
function updateProgress() |
|
|
|
|
|
{ |
|
|
|
|
|
indexed++; |
|
|
|
|
|
|
|
|
|
|
|
var percent = parseInt((indexed/total)*100); |
|
|
|
|
|
|
|
|
|
|
|
$("#graphLoading").html("<div class=\"progress\">\n" + |
|
|
|
|
|
" <div class=\"progress-bar progress-bar-striped progress-bar-animated\" role=\"progressbar\" style=\"width: " + percent + "%\" aria-valuenow=\"" + percent + "\" aria-valuemin=\"0\" aria-valuemax=\"100\"></div>\n" + |
|
|
|
|
|
"</div>"); |
|
|
|
|
|
|
|
|
|
|
|
console.log(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* Creates a graph |
|
|
* Creates a graph |
|
|
* @param username |
|
|
* @param username |
|
@ -322,7 +279,6 @@ function createOrgRepoGraph(orgname, containerName, graphsTitle) |
|
|
|
|
|
|
|
|
addOrgUsers(orgname, 1).then(function() |
|
|
addOrgUsers(orgname, 1).then(function() |
|
|
{ |
|
|
{ |
|
|
$("#" + progressID).html(""); |
|
|
|
|
|
|
|
|
|
|
|
createConnections().then( () => { |
|
|
createConnections().then( () => { |
|
|
var container = document.getElementById(containerName); |
|
|
var container = document.getElementById(containerName); |
|
@ -331,13 +287,14 @@ function createOrgRepoGraph(orgname, containerName, graphsTitle) |
|
|
edges: edges |
|
|
edges: edges |
|
|
}; |
|
|
}; |
|
|
var network = new vis.Network(container, data, options); |
|
|
var network = new vis.Network(container, data, options); |
|
|
|
|
|
|
|
|
network.on("click", function (params) { |
|
|
network.on("click", function (params) { |
|
|
params.event = "[original event]"; |
|
|
params.event = "[original event]"; |
|
|
if(Number(this.getNodeAt(params.pointer.DOM)) !== NaN) { |
|
|
if(Number(this.getNodeAt(params.pointer.DOM)) !== NaN) { |
|
|
bringUpProfileView(Number(this.getNodeAt(params.pointer.DOM))); |
|
|
bringUpProfileView(Number(this.getNodeAt(params.pointer.DOM))); |
|
|
} |
|
|
} |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
$("#graphLoading").html(""); |
|
|
}); |
|
|
}); |
|
|
}).catch(function(error) { |
|
|
}).catch(function(error) { |
|
|
alert("Invalid Organization"); |
|
|
alert("Invalid Organization"); |
|
|