-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
48 lines (41 loc) · 1.32 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
//app.js
// załadowanie modułów dodatkowych i plików aplikacji
const express = require('express');
// moduł do obsługi routingu
const path = require('path');
const bodyParser = require('body-parser');
const cookieParser = require('cookie-parser');
// nasz plik definiujący odpowiedzi dla ścieżek
const routes = require('./routes/index');
const apiErrorHandler = require('./error/api-error-handler');
const ApiError = require('./error/ApiError');
const app = express();
require('dotenv').config();
// konfiguracja parserów
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended:true}));
app.use(cookieParser());
//CORS
app.use(function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*"); // update to match the domain you will make the request from
res.header("Access-Control-Allow-Headers", "*");
res.header("Access-Control-Allow-Methods", "*")
next();
});
// konfiguracja routera dla wszystkich ścieżek
app.use('/', routes);
// obsługa błędnych requestów
app.use((req, res, next) => {
const error = `There is not such page.`;
next(ApiError.badRequest(error, 404));
})
// app.use((error, req, res, next) => {
// res.status(error.status || 500);
// res.json({
// error: {
// message: error.message
// }
// })
// })
app.use(apiErrorHandler);
module.exports = app;