-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeed_thenCatch.js
More file actions
224 lines (195 loc) · 5.85 KB
/
feed_thenCatch.js
File metadata and controls
224 lines (195 loc) · 5.85 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
const fs = require('fs');
const path = require('path')
const { validationResult } = require('express-validator')
const io = require('../socket')
const Post = require('../models/post');
// const post = require('../models/post')
const User = require('../models/user');
const { error } = require('console');
exports.getPosts = (req, res, next) => {
console.log('getPosts()')
const currentPage = req.query.page || 1;
const perPage = 2;
let totalItems;
Post.find()
.countDocuments()
.then(count => {
totalItems = count;
return Post.find()
.skip((currentPage - 1) * perPage)
.limit(perPage);
})
.then(posts => {
res.status(200).json({
message: 'Fetched posts successfully.',
posts: posts,
totalItems: totalItems
});
})
.catch(err => {
if (!err.statusCode) {
err.statusCode = 500;
}
next(err);
});
};
exports.createPost = (req, res, next) => {
console.log('createPost()')
const errors = validationResult(req);
if (!errors.isEmpty()) {
const error = new Error('Validation failed, entered data is incorrect.');
error.statusCode = 422;
throw error;
}
if (!req.file) {
const error = new Error('No image provided.');
error.statusCode = 422;
throw error;
}
// const imageUrl = req.file.path;
const imageUrl = req.file.path.replace("\\", "/");
const title = req.body.title;
const content = req.body.content;
let creator;
// console.log(title, content);
// Create post in db
const post = new Post({
title: title,
content: content,
imageUrl: imageUrl,
creator: req.userId
});
post
.save()
.then(result => {
return User.findById(req.userId);
})
.then(user => {
creator = user;
user.posts.push(post);
return user.save();
})
.then(result => {
res.status(201).json({
message: 'Post created successfully',
post: post,
creator: { _id: creator._id, name: creator.name }
});
})
.catch(err => {
if (!err.statusCode) {
err.statusCode = 500;
}
next(err);
});
};
exports.getPost = (req, res, next) => {
const postId = req.params.postId;
Post.findById(postId)
.then(post => {
if (!post) {
const error = new Error('Could not find post.');
error.statusCode = 404;
throw error;
}
res.status(200).json({ message: 'Post fetched.', post: post });
})
.catch(err => {
if (!err.statusCode) {
err.statusCode = 500;
}
next(err);
});
}
// Updating a single post
exports.updatePost = (req, res, next) => {
const postId = req.params.postId;
const errors = validationResult(req);
if (!errors.isEmpty()) {
const error = new Error('Validation failed, entered data is incorrect');
error.statusCode = 422;
throw error
}
const title = req.body.title;
const content = req.body.content;
let imageUrl = req.body.image;
if (req.file) {
// imageUrl = req.file.path;
imageUrl = req.file.path.replace("\\", "/");
}
if (!imageUrl) {
const error = new Error('No file picked.');
error.statusCode = 422;
throw error;
}
Post.findById(postId)
.then(post => {
if (!post) {
const error = new Error('Could not find post.')
error.statusCode = 404;
throw error;
}
// res.status(200).json({ message: 'post Fetched.', post: post })
if (post.creator.toString() !== req.userId.toString()) {
const error = new Error('Not authorized!');
error.statusCode = 403;
throw error;
}
if (imageUrl !== post.imageUrl) {
clearImage(post.imageUrl);
}
post.title = title;
post.imageUrl = imageUrl;
post.content = content;
return post.save();
})
.then(result => {
res.status(200).json({ message: 'Post Updated!', post: result })
})
.catch(err => {
if (!err.statusCode) {
err.statusCode = 500;
}
next(err);
})
}
exports.deletePost = (req, res, next) => {
const postId = req.params.postId
Post.findById(postId)
.then(post => {
if (!post) {
const error = new Error('Could not find post.')
error.statusCode = 404;
throw error;
}
if (post.creator.toString() !== req.userId.toString()) {
const error = new Error('Not authorized!');
error.statusCode = 403;
throw error;
}
// check logged in user
clearImage(post.imageUrl);
return Post.findOneAndDelete(postId)
})
.then(result => {
return User.findById(req.userId);
})
.then(user => {
user.posts.pull(postId)
return user.save();
})
.then(result => {
console.log(result);
res.status(200).json({ message: 'Deleted Post.' });
})
.catch(err => {
if (!err.statusCode) {
err.statusCode = 500;
}
next(err);
})
}
const clearImage = filePath => {
filePath = path.join(__dirname, '..', filePath);
fs.unlink(filePath, err => console.log(err))
}