-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoauth_test.js
153 lines (124 loc) · 4.31 KB
/
oauth_test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
'use strict';
const fs = require('fs');
const path = require('path');
const { google } = require('googleapis');
// Generic synchronous sleep function to simulate latency
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
// In-memory store for tokens
class MemoryTokenStore {
constructor(rootRef) {
this.rootRef = rootRef || "tokens";
this.tokenStore = {};
this.tokenStore[this.rootRef] = {};
}
async saveTokenSync(tokenKey, tokenValue) {
// Simulate a slow save
console.log(`Saving to database...`)
await sleep(3000);
this.tokenStore[this.rootRef][tokenKey] = tokenValue;
console.log(`Saved to database`)
return tokenValue;
}
async loadTokenSync(tokenKey) {
// Simulate a fast load
await sleep(100);
return this.tokenStore[this.rootRef][tokenKey];
}
}
/*************************************
* Init
*************************************/
const OAUTH_CALLBACK_ROUTE = 'oauth2callback';
const TOKEN_KEY = 'accessToken';
const TOKEN_STORE = new MemoryTokenStore();
// Load the app secret
console.log(`Loading Client Secret...`)
const clientSecretJson = JSON.parse(fs.readFileSync(path.join(__dirname, 'client_secret.json')));
console.log(`Client Secret Loaded.`)
let accessToken = undefined;
let oauth2Client = undefined;
/*************************************
* Middleware for accessToken check
*************************************/
const tokenChecker = async (req, res, next) => {
console.log(`Checking auth token...`)
if(!oauth2Client) {
console.log(`Creating new oauth2Client...`)
oauth2Client = new google.auth.OAuth2(
clientSecretJson.web.client_id,
clientSecretJson.web.client_secret,
`http://${req.get('host')}/${OAUTH_CALLBACK_ROUTE}`
);
}
if(!accessToken) {
console.log(`No access token in scope, attempting to load...`)
accessToken = await TOKEN_STORE.loadTokenSync(TOKEN_KEY);
let max_expiry = Date.now() + 60000;
// Listen for refresh tokens
oauth2Client.on('tokens', async (tokens) => {
console.log(`in oauth2Client.on(...) about to save a token`)
if (tokens.refresh_token) {
await TOKEN_STORE.saveTokenSync(TOKEN_KEY, tokens);
} else {
console.error(`Expected a refresh_token, but none was found: ${JSON.stringify(tokens, null, 2)}`)
}
});
if (accessToken && ((accessToken.refresh_token) || (accessToken.expiry_date && accessToken.expiry_date >= max_expiry))) {
console.log(`Token is not expired or will refresh`)
await oauth2Client.setCredentials(accessToken);
next();
} else {
// Just for debugging/info
if(accessToken && accessToken.expiry_date < max_expiry) {
console.log(`Access Token expired, redirecting to oauth flow`)
} else {
console.log(`No access token found in database, redirecting to oauth flow`)
}
// Generate + redirect to OAuth2 consent form URL
let redirectUrl = oauth2Client.generateAuthUrl({
access_type: 'offline',
scope: ['https://www.googleapis.com/auth/calendar.readonly'],
state: req.path,
prompt: 'consent'
});
res.redirect(redirectUrl);
}
} else {
console.log(`Using token in scope`)
next();
}
}
/*************************************
* Web App Start
*************************************/
const express = require('express');
const app = express();
// The root path will do a token check
app.get('/', tokenChecker, async (req, res) => {
res.status(200).send(`OK`);
});
// The test path will also do a token check
app.get('/test', tokenChecker, async (req, res) => {
res.status(200).send(`OK`);
});
app.get(`/${OAUTH_CALLBACK_ROUTE}`, async (req, res) => {
try {
const code = req.query.code;
// Do I need to await this??
const {tokens} = await oauth2Client.getToken(code);
console.log(`in /${OAUTH_CALLBACK_ROUTE} about to set token credentials`)
// Setting credentials will trigger the on('tokens') event (?)
// Do I need to await this??
await oauth2Client.setCredentials(tokens);
res.redirect(req.query.state);
} catch (err) {
console.error(err);
res.status(500).send('Something went wrong; check the logs.');
}
});
const port = process.env.PORT || 8080;
app.listen(port, () => {
console.log('Oauth Test listening on port', port);
});