-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.js
97 lines (85 loc) · 2.45 KB
/
script.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
var Hapi = require('hapi'),
Path = require('path'),
Bell = require('bell'),
AuthCookie = require('hapi-auth-cookie'),
server = new Hapi.Server();
server.connection({ port: process.env.PORT });
var authOptions = {
provider: 'google',
password: process.env.GOOGLE_ENCRYPTION_PASSWORD, //Password used for encryption
clientId: process.env.GOOGLE_CLIENT_ID,//'YourAppId',
clientSecret: process.env.GOOGLE_CLIENT_SECRET,//'YourAppSecret',
isSecure: false //means authentication can occur over http
};
//register plugins with server
server.register([Bell, AuthCookie], function (err) {
if (err) throw err;
server.auth.strategy("google", 'bell', authOptions);
server.auth.strategy('session', 'cookie', {
cookie: 'sid',
password: process.env.COOKIE_PW,
// redirectTo: '/', //this allows logout to work!
isSecure: false
// ttl: 3000 //expiry time of cookie
// clearInvalid: true
});
server.auth.default('session'); //if no auth is specified it defaults to checking the session cookie
server.route({
method: 'GET',
path: '/',
config: {
auth: {
mode: "try",
strategy: "session"
},
handler: function(request, reply) {
if(request.auth.isAuthenticated) {
reply.file('views/dashboard.html');
} else {
reply.file("views/popup.html").code(401);
}
}
}
});
server.route({
method: 'GET',
path: '/login',
config: {
auth: {
mode: "try",
strategy: "google"
},
handler: function(request, reply) {
// request.auth.session.set.clear();
request.auth.session.set(request.auth.credentials.profile);
reply.file('views/dashboard.html');
}
}
});
server.route({
method: 'GET',
path: '/logout',
config: {
auth: {
mode: "try",
strategy: "session"
},
handler: function(request, reply) {
// request.auth.session.set.clear();
reply.file('views/popup.html');
}
}
});
}
);
server.start(function () {
console.log('Server running at: ' + server.info.uri);
});
// var creds = request.auth.credentials;
// var profile = {
// googleId: creds.profile.id,
// fullName: creds.profile.displayName,
// firstName: creds.profile.name.first,
// email: creds.profile.email,
// pictures : []
// };