Skip to content
This repository was archived by the owner on Mar 17, 2019. It is now read-only.

Commit 065d55a

Browse files
committed
Used Express instead
1 parent 6e78d5c commit 065d55a

File tree

430 files changed

+49795
-3018
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

430 files changed

+49795
-3018
lines changed

.gitattributes

-2
This file was deleted.

.gitignore

-1
This file was deleted.

.idea/workspace.xml

+13-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Procfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web: node index.js
1+
web: node bin/www.js

app.js

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
const express = require('express'), app = express(), index = require('./routes/index'),
2+
googleAuth = require('google-auth-library'), credentials = require('./client_secret.json'),
3+
oauth2Client = new (new googleAuth).OAuth2(credentials.installed.client_id,
4+
credentials.installed.client_secret, credentials.installed.redirect_uris[0]), readline = require('readline');
5+
6+
try {
7+
oauth2Client.credentials = require('./credentials.json');
8+
index.auth = oauth2Client;
9+
} catch (e) {
10+
const authURL = oauth2Client.generateAuthUrl({
11+
access_type: 'offline',
12+
scope: 'https://www.googleapis.com/auth/spreadsheets'
13+
});
14+
console.log('Authorize this app by visiting the following URL: ' + authURL);
15+
const readlineInterface = readline.createInterface(process.stdin, process.stdout);
16+
readlineInterface.question('Enter the code from that page here: ', function(code) {
17+
oauth2Client.getToken(code, function(error, token) {
18+
if (error) {
19+
console.error(error);
20+
} else {
21+
oauth2Client.credentials = token;
22+
require('fs').writeFileSync('./credentials.json', JSON.stringify(token));
23+
index.auth = oauth2Client;
24+
}
25+
});
26+
readlineInterface.close();
27+
});
28+
}
29+
30+
/* Listen on the home path for any request made to the server */
31+
app.use('/', index);
32+
33+
module.exports = app;

bin/www.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const app = require('../app');
2+
3+
app.listen(process.env.PORT || 80, function() {
4+
console.log('Listening on Port ' + (process.env.PORT || 80));
5+
});

client_secret.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"installed":{"client_id":"745611974050-4h8a0i28tjv4slvsrsjbsvllvqpf9d6p.apps.googleusercontent.com","project_id":"sacred-pursuit-178204","auth_uri":"https://accounts.google.com/o/oauth2/auth","token_uri":"https://accounts.google.com/o/oauth2/token","auth_provider_x509_cert_url":"https://www.googleapis.com/oauth2/v1/certs","client_secret":"XR6L6ob0rTSTtR0Eoe2ZmKcc","redirect_uris":["urn:ietf:wg:oauth:2.0:oob","http://localhost"]}}
1+
{"installed":{"client_id":"178240803294-p4f4il8fbh41d5qnrsr7am6q5dmd6sca.apps.googleusercontent.com","project_id":"inked-out-sheets","auth_uri":"https://accounts.google.com/o/oauth2/auth","token_uri":"https://accounts.google.com/o/oauth2/token","auth_provider_x509_cert_url":"https://www.googleapis.com/oauth2/v1/certs","client_secret":"F6s5O4K3lhs1nHCdTMD8e5TE","redirect_uris":["urn:ietf:wg:oauth:2.0:oob","http://localhost"]}}

credentials.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"access_token":"ya29.Glu1BG3Wm9NEjIHO_DO-CMQvCVO6C8pwIiXcM9E2bLcUwCKAe1g0QU9IetZeFAZcBY2Ailk0_AVQorSVVEmI7ZTyGvGof6RZK9wUN_BnP0idGuHgzFFHfX3lqeEe","refresh_token":"1/Mcb98gqY0R_PDjgv0tn6hhLoI6noF2yGFEw35CsrXlw","token_type":"Bearer","expiry_date":1503907612339}
1+
{"access_token":"ya29.Glu-BL6honfScIqK61YFkN-VX61P8BCXNvPgmv5PlWGGpcQNPLDzLFi76ZXRgE_QgEnEe_lgJ-H-vN57WDtgOjvKqg7WzHmbIWHkhtQrzMVJN_5atVtVkoJWbjMD","refresh_token":"1/Yt3uGLXbB_YWSGgqZDI3Ldlur9OcP92cLVKg7LSf0Cc","token_type":"Bearer","expiry_date":1504676546939}

formr.js

-49
This file was deleted.

google-spreadsheet.js

-36
This file was deleted.

index.js

-113
This file was deleted.

node_modules/ajv/package.json

+13-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)