-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
135 lines (120 loc) · 3.27 KB
/
server.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
const express = require("express");
const path = require("path");
const bodyParser = require("body-parser");
const app = express();
const morgan = require("morgan");
const Movie = require("./databaseConfig");
const requisition = require("requisition");
let error;
require("dotenv").config();
app.use(express.json());
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
app.use(morgan("dev"));
app.use("/", express.static(path.join(__dirname, "dist")));
// app.use(express.static(path.join(__dirname, 'dist')));
// app.get("/", (req, res) => {
// res.sendFile(path.join(__dirname, "dist/index.html"));
// });
app.get("/recommendations", async (req, res, next) => {
Movie.find({}, null, { sort: { votes: -1 } }).then(data => res.send(data));
// Movie.find({}, null, { sort: { votes: -1 } }, function(error, data) {
// try {
// if (error) throw error;
// console.log(data);
// res.send(data);
// } catch (error) {
// error.status = 500;
// next(error);
// }
// });
});
app.get("/movies", function(req, res, next) {
Movie.find({}, null, { sort: { votes: -1 } }, function(error, data) {
try {
if (error) throw error;
res.send(data);
} catch (error) {
error.status = 500;
next(error);
}
});
});
app.put("/recommendations", async function(req, res, next) {
if (req.body.id) {
Movie.findByIdAndUpdate(
req.body.id,
{ $inc: { votes: req.body.vote } },
function(error, data) {
try {
if (error) throw error;
res.json(data);
} catch (error) {
error.status = 500;
next(error);
}
}
);
} else {
error = new Error("Unprocessable Entity");
error.status = 422;
next(error);
}
});
app.post("/movies", async function(req, res, next) {
if (req.body.title) {
const subrequest = await requisition(
`http://www.omdbapi.com/?t=${req.body.title}&apikey=${
process.env.API_KEY
}`
);
const movieObj = await subrequest.json();
if (!movieObj.Error && movieObj.Poster != "N/A") {
Movie({
title: movieObj.Title,
summary: movieObj.Plot,
img_url: movieObj.Poster,
rating: movieObj.imdbRating,
votes: 0
}).save(function(error, data) {
try {
if (error) throw error;
res.json(data);
} catch (error) {
error.status = 409;
next(error);
}
});
} else {
error = new Error("Not Found");
error.status = 404;
next(error);
}
} else {
error = new Error("Unprocessable Entity");
error.status = 422;
next(error);
}
});
app.delete("/movies/:id", function(req, res, next) {
if (req.params.id) {
Movie.findByIdAndDelete(req.params.id, null, function(error, data) {
try {
if (error) throw error;
res.json(data);
} catch (error) {
error.status = 500;
next(error);
}
});
} else {
error = new Error("Unprocessable Entity");
error.status = 422;
next(error);
}
});
app.use((req, res, next) => {
res.sendFile(path.join(__dirname, "dist", "index.html"));
});
const port = process.env.PORT || 3000;
app.listen(port, () => console.log("Running on port " + port));