-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmatch.js
260 lines (231 loc) · 7.18 KB
/
match.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
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
router.put('/new-post', async (req, res, next) => {
console.log('new post', req.body, req.query.id);
try {
const post_details = JSON.parse(JSON.stringify(req.body));
const user = await Hr.findById(req.query.id)
if (!user) {
return res.sendStatus(401);
}
console.log('user is ', user);
const post = new Post(post_details)
post.hrRef = user;
console.log("postPPPPPPP", post);
const data = await post.save()
return res.json({
data: post.toJSONFor(req.query.id)
})
} catch (error) {
console.log('Error', error);
}
});
// router.get('/hrs', async (req, res, next) => {
// console.log('data from hr')
// try{
// console.log('data from hr',req.query.id)
// const user = await Hr.findById(req.query.id)
// if(!user){
// return res.status(401).json({
// success:false,
// errors:{
// message:'User Doesn\'t Exist !'
// }
// })
// }
// console.log(user.profile_photo);
// return res.json(user);
// } catch(e){
// console.log("data from the hr details",e);
// }
// // }
// });
// router.put('/users/update', async (req, res, next) => {
// console.log("upadted AAAAAAAAAAA",req.query.id)
// const data = await Applicant.findByIdAndUpdate(req.query.id, req.body)
// if(!data){
// // eror
// }
// return res.json(
// {
// data: data
// }
// )
// });
// router.get('/users', async (req, res, next) => {
// console.log(req.query.id);
// try {
// const user = await Applicant.findById(req.query.id);
// if (!user) {
// return res.send_failure(401, 'User Doesn\'t Exist!');
// }
// return res.json(user);
// } catch (error) {
// console.log('Some Other Error occured: ', error);
// }
// });
// router.post('/login', (req, res, next) => {
// user_details = JSON.parse(JSON.stringify(req.body));
// console.log('game over', user_details);
// if (!req.body.username) {
// return res.status(422).json({
// success: false,
// errors: {
// email: 'can\'t be blank'
// }
// })
// }
// if (!req.body.password) {
// return res.status(422).json({
// success: false,
// errors: {
// password: 'can\'t be blank'
// }
// })
// }
// if (user_details.isHr) {
// Hr.findOne({
// email: user_details.username
// }).then((user) => {
// if (!user) {
// return res.status(401).json({
// success: false,
// errors: {
// message: 'Sign Up First!'
// }
// });
// }
// return res.json({
// user: user.toAuthJSON()
// });
// }).catch(next);
// } else {
// Applicant.findOne({
// email: user_details.username
// }).then((user) => {
// console.log(' ❌', user, user_details.username)
// if (!user) {
// return res.status(401).json({
// success: false,
// errors: {
// message: 'Sign Up First!'
// }
// });
// }
// return res.json({
// user: user.toAuthJSON()
// });
// }).catch(next);
// }
// });
// router.get('/user', (req, res, next) => {
// user_details = JSON.parse(JSON.stringify(req.body));
// if (user_details.isHr && user_details.status) {
// Applicant.find().then((user) => {
// if (!user) {
// return res.sendStatus(401);
// }
// return res.json({
// user: user
// });
// }).catch(next);
// }
// });
// // function no_such_post() {
// // return make_error("no_such_post",
// // "The specified post does not exist");
// // }
// // function make_error(err, msg) {
// // var e = new Error(msg);
// // e.code = err;
// // return e;
// // }
// // failure and success
// // function send_success(res, data) {
// // res.writeHead(200, {
// // "Content-Type": "application/json"
// // });
// // var output = {
// // error: null,
// // data: data
// // };
// // res.end(JSON.stringify(output) + "\n");
// // }
// // function send_failure(res, server_code, err) {
// // var code = (err.code) ? err.code : err.name;
// // res.writeHead(server_code, {
// // "Content-Type": "application/json"
// // });
// // res.end(JSON.stringify({
// // error: code,
// // message: err.message
// // }) + "\n");
// // }
// // failure and success
// router.put('/v1/hr', (req, res) => {
// var user_details_to_add = JSON.parse(JSON.stringify(req.body));
// console.log(user_details_to_add);
// if (user_details_to_add.isApplicant) {
// applicantModel.findOne({
// email: user_details_to_add.email
// }, (err, reply) => {
// if (!err, reply) {
// console.log('user exist!');
// return false
// }
// // next();
// })
// applicantModelObj = new applicantModel(user_details_to_add);
// addNewUser(applicantModelObj);
// } else if (user_details_to_add.isHr) {
// hrModel.findOne({
// email: user_details_to_add.email
// }, (err, reply) => {
// if (!err, reply) {
// console.log('user exist!');
// return false
// }
// // next();
// })
// hrModelObj = new hrModel(user_details_to_add);
// addNewUser(hrModelObj);
// } else {
// console.log(new Error('Nothing in: ', user_details_to_add));
// }
// // console.log(jobModelObj);
// })
// router.get('/v1/posts', (req, res) => {
// postModel.find((err, result) => {
// send_success(res, result);
// })
// })
// router.get('/v1/posts/:post_id', (req, res) => {
// var post_id = req.params.post_id;
// // console.log(' ❌ ', req.params.post_id);
// postModel.findOne({
// _id: post_id
// }, (err, result) => {
// if (err) {
// send_failure(res, 404, no_such_post());
// }
// console.log(' ❌ ', result);
// send_success(res, result);
// // return;
// })
// })
// router.put('/posts', (req, res) => {
// var post_details_to_add = JSON.parse(JSON.stringify(req.body));
// postModelObj = new postModel(post_details_to_add);
// addNewPost(postModelObj);
// // send_success(res, resu)
// })
// function addNewPost(postObj) {
// console.log(' 💤 ', postObj);
// postObj.save()
// .then(() => {
// console.log(true);
// console.log('database saved!');
// }).catch((err) => {
// console.log('error detected');
// })
// }
// module.exports = router;
// const app = express();