Browse Source

Improved security of web server.

pull/11/head
Jeffery Russell 5 years ago
parent
commit
ec3712685d
3 changed files with 11 additions and 24 deletions
  1. +0
    -6
      configManager.js
  2. +1
    -2
      public/FriendsGraph.html
  3. +10
    -16
      routes/api.js

+ 0
- 6
configManager.js View File

@ -33,11 +33,5 @@ module.exports=
getSessionSecret: function()
{
return config.sessionSecret;
},
getAPIUser: function()
{
return config.user;
}
};

+ 1
- 2
public/FriendsGraph.html View File

@ -54,7 +54,7 @@
<div class="row">
<div class="col-md-8 col-12">
<h2 id="graphLabel"></h2>
<h2 id="graphLoading"></h2>
<div id="myGraph" class="w-100"></div>
<pre id="eventSpan"></pre>
</div>
@ -62,7 +62,6 @@
<div id="profileGen"></div>
</div>
</div>
<script>
function createGraphs(username)

+ 10
- 16
routes/api.js View File

@ -34,6 +34,7 @@ function queryGitHubAPI(requestURL)
{
queryURL = GITHUB_API + requestURL + "?" + authenticate;
}
console.log(queryURL);
got(queryURL, { json: true }).then(response =>
{
@ -41,12 +42,9 @@ function queryGitHubAPI(requestURL)
cache.put(requestURL, response.body);
}).catch(error =>
{
// resolve(response.body);
// cache.put(requestURL, response.body);
console.log(error);
reject(error);
cache.put(requestURL, response.body);
});
}
else
{
@ -60,24 +58,20 @@ routes.get('/*', (request, result) =>
{
var gitHubAPIURL = request.url;
// if(request.query.hasOwnProperty("page"))
// {
// gitHubAPIURL += "?page=" + request.query.page;
// }
console.log(request.query);
console.log(gitHubAPIURL);
result.setHeader('Content-Type', 'application/json');
queryGitHubAPI(gitHubAPIURL).then(function(data)
{
result.write(JSON.stringify(data));
if(data.hasOwnProperty("id"))
{
result.write(JSON.stringify(data));
}
result.end();
}).catch(function(error)
{
result.write(JSON.stringify(error));
if(error.hasOwnProperty("id"))
{
result.write(JSON.stringify(error));
}
result.end();
})
});

Loading…
Cancel
Save