Website for visualizing a persons github network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
1.8 KiB

  1. const routes = require('express').Router();
  2. const got = require("got");
  3. const GITHUB_API = "https://api.github.com";
  4. const configLoader = require('../configManager');
  5. const authenticate = "client_id=" + configLoader.getClientID() +
  6. "&client_secret=" + configLoader.getClientSecret();
  7. //caching program to make the application run faster
  8. const cache = require('memory-cache');
  9. function queryGitHubAPI(requestURL)
  10. {
  11. const apiData = cache.get(requestURL);
  12. return new Promise(function(reject, resolve)
  13. {
  14. if(apiData == null)
  15. {
  16. var queryURL;
  17. if(requestURL.includes("?page="))
  18. {
  19. queryURL = GITHUB_API + requestURL + "&" + authenticate;
  20. }
  21. else
  22. {
  23. queryURL = GITHUB_API + requestURL + "?" + authenticate;
  24. }
  25. console.log(queryURL);
  26. got(queryURL, { json: true }).then(response =>
  27. {
  28. resolve(response.body);
  29. cache.put(requestURL, response.body);
  30. }).catch(error =>
  31. {
  32. reject(error);
  33. cache.put(requestURL, response.body);
  34. });
  35. }
  36. else
  37. {
  38. resolve(apiData);
  39. }
  40. })
  41. }
  42. routes.get('/*', (request, result) =>
  43. {
  44. var gitHubAPIURL = request.url;
  45. result.setHeader('Content-Type', 'application/json');
  46. queryGitHubAPI(gitHubAPIURL).then(function(data)
  47. {
  48. if(data.hasOwnProperty("id"))
  49. {
  50. result.write(JSON.stringify(data));
  51. }
  52. result.end();
  53. }).catch(function(error)
  54. {
  55. if(error.hasOwnProperty("id"))
  56. {
  57. result.write(JSON.stringify(error));
  58. }
  59. result.end();
  60. })
  61. });
  62. module.exports = routes;