-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
158 lines (138 loc) · 3.53 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
149
150
151
152
153
154
155
156
157
158
const express = require("express");
const bodyParser = require("body-parser");
const lodash = require("lodash");
const mongoose = require("mongoose");
const cors = require("cors");
const multer = require("multer");
const fs = require("fs");
const sharp = require("sharp");
const path = require("path");
const aws = require("aws-sdk");
aws.config.update({
accessKeyId: "",
secretAccessKey: "",
});
const app = express();
app.use("/static", express.static(path.join(__dirname, "static")));
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
app.use(cors());
mongoose.connect(
"mongodb+srv://new-user_0:[email protected]/test?retryWrites=true&w=majority",
{ useNewUrlParser: true, useUnifiedTopology: true }
);
console.log("Db connected");
const postsSchema = {
banner: String,
title: String,
time: String,
post: String,
};
const Post = mongoose.model("Post", postsSchema);
app.get("/", (req, res) => {
Post.find({}, function(err, foundPosts) {
res.send(foundPosts);
});
});
app.post("/compose", (req, res) => {
let newPost = new Post({
banner:req.body.banner,
title: req.body.title,
time: new Date().toLocaleString(),
post: req.body.post,
});
newPost.save((err) => {
if (!err) {
res.send({ cool: "cool" });
} else {
console.log(err);
}
});
});
app.get("/posts/:postName", (req, res) => {
let postName = lodash.lowerCase(req.params.postName);
Post.find({}, function(err, foundPosts) {
foundPosts.forEach((element) => {
let title = lodash.lowerCase(element.title);
let post = element.post;
if (title === postName) {
res.render("post", {
title: title,
post: post,
});
}
});
});
});
app.delete("/posts/:id", (req, res) => {
const id = req.params.id;
Post.findByIdAndDelete(id)
.then((post) => {
if (!post) {
res.status(404).send();
} else {
res.send(post);
}
})
.catch((err) => {
res.status(500).send();
});
});
//image upload
const fileFilter = function(req, file, cb) {
const allowedTypes = ["image/jpeg", "image/png", "image/gif"];
if (!allowedTypes.includes(file.mimetype)) {
const error = new Error("Wrong file type");
error.code = "LIMIT_FILE_TYPES";
return cb(error, false);
}
cb(null, true);
};
const MAX_SIZE = 100000000;
const upload = multer({
dest: "./uploads/",
fileFilter,
limits: {
fileSize: MAX_SIZE,
},
});
app.post("/upload", upload.single("banner"), (req, res) => {
console.log(req);
res.json({ file: req.file });
});
app.post("/dropzone", upload.single("file"), async (req, res) => {
const s3 = new aws.S3();
const now = Date.now();
try {
const buffer = await sharp(req.file.path).toBuffer();
const s3res = await s3
.upload({
Bucket: "blogvue-banner",
Key: `${now}-${req.file.originalname}`,
Body: buffer,
ACL: "public-read",
})
.promise();
fs.unlink(req.file.path, () => {
res.json({ file: s3res.Location });
});
} catch (error) {
console.log(error);
res.status(422).json({ error });
}
});
app.use((err, req, res, next) => {
if (err.code === "LIMIT_FILE_TYPES") {
res.status(422).json({ error: "Only images are allowed" });
return;
}
if (err.code === "LIMIT_FILE_SIZE") {
res
.status(422)
.json({ error: `Too large. Max size is ${MAX_SIZE / 1000}Kb` });
return;
}
});
app.listen(3000, function() {
console.log("Server started on port 3000");
});