-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
77 lines (65 loc) · 1.91 KB
/
index.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
const { AuthorizationCode } = require("simple-oauth2");
const path = require("path");
const app = require("express")();
const dotenv = require("dotenv");
dotenv.config();
const PORT = process.env.PORT;
const BASE_PATH = process.env.BASE_PATH;
app.set("views", path.join(__dirname, "views"));
app.set("view engine", "pug");
const createApplication = (cb) => {
const callbackUrl = BASE_PATH + "/callback";
app.listen(PORT, (err) => {
if (err) return console.error(err);
console.log(`Express server listening at ${BASE_PATH}`);
return cb({
app,
callbackUrl,
});
});
};
createApplication(({ app, callbackUrl }) => {
const client = new AuthorizationCode({
client: {
id: process.env.CLIENT_ID,
secret: process.env.CLIENT_SECRET,
},
auth: {
tokenHost: process.env.TOKEN_HOST,
tokenPath: "/oauth2/token",
authorizePath: "/oauth2/auth",
},
});
// Authorization uri definition
const authorizationUri = client.authorizeURL({
redirect_uri: callbackUrl,
scope: process.env.SCOPES,
state: "veimvfgqexjicockrwsgcb333o3a",
});
// Initial page redirecting to Quran.com
app.get("/auth", (req, res) => {
console.log(authorizationUri);
res.redirect(authorizationUri);
});
// Callback service parsing the authorization token and asking for the access token
app.get("/callback", async (req, res) => {
const { code } = req.query;
console.log(code, "this is the code");
const options = {
code,
redirect_uri: callbackUrl,
};
try {
const data = await client.getToken(options);
console.log(data);
console.log("The resulting token: ", data.token);
return res.status(200).json(data.token);
} catch (error) {
console.error("Access Token Error", error);
return res.status(500).json("Authentication failed");
}
});
app.get("/", (req, res) => {
res.render("index");
});
});