-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
148 lines (129 loc) · 4.67 KB
/
app.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
const express = require('express')
const app = express()
const fs = require('fs');
const swaggerUI = require('swagger-ui-express');
const swaggerJsDoc = require('swagger-jsdoc');
const cors = require('cors');
const path = require('path');
const puppeteer = require('puppeteer');
const paco = require('./scrapers');
const static = require('./static');
const package = require('./package.json');
const PORT = process.env.PORT || static.PORT;
const IP = process.env.IP || "127.0.0.1";
const PROTOCOL = process.env.IP ? "https" : "http";
const URL = PROTOCOL+"://"+IP+(process.env.PORT ? "" : ":"+PORT);
/**
* Increase the max event listeners on a global scale
* to prevent this error.
*
* MaxListenersExceededWarning:
* Possible EventEmitter memory leak detected.
* Use emitter.setMaxListeners() to increase limit
*/
require('events').EventEmitter.prototype._maxListeners = 25;
app.enable('trust proxy');
// middleware to force https
app.use((req, res, next) => {
// only force when in production and not secure
if (process.env.PORT && !req.secure)
res.redirect("https://"+ req.headers.host + req.url);
next();
});
// cors middleware
app.use(cors({origin:true,credentials: true}));
// enable CORS for preflight operations
app.options('*', cors());
// expose static content
app.use('/public', express.static(path.join(__dirname, 'public')));
// setup swagger docs
const swagger_options = {
definition: {
openapi: "3.0.3",
info: {
title: package["name"],
version: package["version"],
description: package["description"],
contact: {
name: "Diogo Correia",
email: "diogo.correia99@ua.pt"
}
},
servers: [
{
url: URL,
description: "API Main Server"
}
],
externalDocs: {
description: "Written down documentation",
url: "https://github.com/digas99/paco-ua-api/tree/main/docs/README.md"
}
},
apis: ["./routes/*.js", "./docs/paco-ua-api.yml"],
}
const swagger_specs = swaggerJsDoc(swagger_options);
app.use("/docs", swaggerUI.serve, swaggerUI.setup(swagger_specs, {
customSiteTitle: "PACO-UA API",
customCssUrl: "/public/swagger-ui-custom.css",
customfavIcon: "/public/paco-api-logo.png"
}));
app.get("/", (req, res) => {
// temporarily redirect to /docs
res.redirect('/docs');
});
// login and put secretaria virtual in req
async function login(req, res, next) {
const now = new Date().toISOString();
const authorization = req.headers.authorization;
if (authorization && authorization.split(" ")[0] === "Basic") {
const decoded = Buffer.from(authorization.substring(6), 'base64').toString('ascii');
const [email, password] = decoded.split(":");
if (email && password) {
try {
await paco.secretariaVirtual(email, password)
.then(async page => {
if (page) {
req.page = page;
next();
}
else {
res.status(403).json({
"message": "Forbidden access. Please check your institutional email credentials.",
"timestamp": now
});
}
});
} catch (e) {
if (e instanceof puppeteer.errors.TimeoutError) {
res.status(504).json({
"message": "Server Error. Timeout.",
"timestamp": now
});
}
}
}
}
else {
res.status(401).json({
"message": "Unauthorized access. Please use Basic Auth with your institutional email credentials.",
"timestamp": now
});
}
}
// middleware to automatically login upon every request
app.use(login);
//setup routes
fs.readdir(static.ROUTES_DIR, (err, files) => {
files.forEach(file => app.use(`/${file.replace(".js", "")}`, require(static.ROUTES_DIR+file.replace(".js", ""))))
// middleware to handle 404 when nothing else responded
app.use((req, res, next) => {
res.status(404).json({
"message": `404 | Endpoint ${req.url} Not Found!`,
"url": URL+req.url,
"timestamp": new Date().toISOString()
});
return;
});
});
app.listen(PORT, () => console.log('Node server running on port '+PORT));