Blame view

app/routes/ApiRtes.js 8.39 KB
7a1fe62d   Geoffrey PREUD'HOMME   Consistence des noms
1
  var MembresServ = require('../services/MembresServ');
c726d602   Geoffrey PREUD'HOMME   Utilisation d'un ...
2
  var PolyUserServ = require('../services/PolyUserServ');
7a1fe62d   Geoffrey PREUD'HOMME   Consistence des noms
3
  var DecryptServ = require('../services/DecryptServ');
61d4f326   Geoffrey PREUD'HOMME   Gestion des dossiers
4
  var DosssServ = require('../services/DosssServ');
12162cc1   Geoffrey PREUD'HOMME   Liste de conversa...
5
  var ConvsServ = require('../services/ConvsServ');
f22cd7f3   Geoffrey PREUD'HOMME   Système de messag...
6
  var MessServ = require('../services/MessServ');
07298877   Geoffrey PREUD'HOMME   Session: secret g...
7
  var fs = require('fs');
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
8
  var async = require('async');
fb8f1174   Geoffrey PREUD'HOMME   Utilisation de mo...
9
  var mongoose = require('mongoose');
0bda071e   Geoffrey PREUD'HOMME   Reroutage
10
  var express = require('express');
07298877   Geoffrey PREUD'HOMME   Session: secret g...
11
12
  var session = require('express-session');
  var MongoStore = require('connect-mongo')(session);
0bda071e   Geoffrey PREUD'HOMME   Reroutage
13
  
2201e360   Geoffrey PREUD'HOMME   Le login se fait ...
14
  var api = express();
0bda071e   Geoffrey PREUD'HOMME   Reroutage
15
  
fb8f1174   Geoffrey PREUD'HOMME   Utilisation de mo...
16
17
18
  // Connection à la BDD
  mongoose.connect(require('../../config/db').url);
  
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
19
20
21
22
23
24
25
26
  // Fonctions diverses
  ensureOkay = function (res, status, cb) {
      // TODO Statut par défaut / optionnel
      // status = 500;
      return function (err, data) {
          // TODO Différencier data non-présent / faux
          if (err) {
              res.status(status).json(err);
c726d602   Geoffrey PREUD'HOMME   Utilisation d'un ...
27
          } else {
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
28
              cb(data);
89bc7c99   Geoffrey PREUD'HOMME   Améliorations div...
29
          }
79edca45   Geoffrey PREUD'HOMME   Nouvelle façon de...
30
31
32
      };
  };
  
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
33
  giveNull = function (res, status) {
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
34
35
36
      // TODO Statut par défaut / optionnel
      // status = 200;
      return ensureOkay(res, 404, function (data) {
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
37
          res.status(status).end();
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
      });
  };
  
  ensureExists = function (res, status, cb) {
      // TODO Statut par défaut / optionnel
      // status = 404;
      return ensureOkay(res, 500, function (data) {
          if (data) {
              cb(data);
          } else {
              res.status(status).end();
          }
      });
  };
  
  giveBack = function (res, status) {
      // TODO Statut par défaut / optionnel
      // status = 200;
      return ensureExists(res, 404, function (data) {
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
57
58
  
          res.status(status).json(data);
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
59
60
61
62
      });
  };
  
  // Authentication
7664a626   Geoffrey PREUD'HOMME   Support de la nui...
63
64
65
66
67
  addLogin = function (req, res, next) {
      req.body.login = req.session.data.login;
      next();
  };
  
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
68
69
70
71
72
73
74
75
  reqAuth = function (req, res, next) {
      if (req.session.data && req.session.data.login) {
          next();
      } else {
          res.status(401).end();
      }
  };
  
c726d602   Geoffrey PREUD'HOMME   Utilisation d'un ...
76
  reqVerified = function (verify) { // Assert mais pour les droits (d'où le 403)
79edca45   Geoffrey PREUD'HOMME   Nouvelle façon de...
77
      return function (req, res, next) {
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
78
          reqAuth(req, res, function () {
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
79
80
81
              verify(req, res, ensureExists(res, 403, function () {
                  next(); // Si on passe quoi que ce soit à next(), erreur 500
              }));
f22cd7f3   Geoffrey PREUD'HOMME   Système de messag...
82
83
84
85
          });
      };
  };
  
a470afda   Geoffrey PREUD'HOMME   Simplification de...
86
  reqOwn = function (objName) {
f22cd7f3   Geoffrey PREUD'HOMME   Système de messag...
87
      return reqVerified(function (req, res, cb) {
a470afda   Geoffrey PREUD'HOMME   Simplification de...
88
89
90
91
          cb(null, req.session.data.bureau || req[objName].login == req.session.data.login);
      });
  };
  
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
92
93
94
  reqMembre = reqVerified(function (req, res, cb) {
      cb(null, req.session.data.membre);
  });
a470afda   Geoffrey PREUD'HOMME   Simplification de...
95
  
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
96
97
98
  reqBureau = reqVerified(function (req, res, cb) {
      cb(null, req.session.data.bureau);
  });
f22cd7f3   Geoffrey PREUD'HOMME   Système de messag...
99
100
101
  
  assert = function (test) {
      return function (req, res, next) {
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
102
103
104
          test(req, res, ensureExists(res, 400, function () {
              next();
          }));
79edca45   Geoffrey PREUD'HOMME   Nouvelle façon de...
105
106
107
      };
  };
  
89bc7c99   Geoffrey PREUD'HOMME   Améliorations div...
108
109
110
111
112
113
114
115
116
117
118
119
  decrypt = function () {
      return function (req, res, next) {
          assert(function (req, res, cb) {
              cb(null, req.body && typeof req.body[0] == 'string' && req.body[0] !== '');
          })(req, res, function () {
              DecryptServ.decrypt(req.body[0], function (data) {
                  req.body = JSON.parse(data);
                  next();
              });
          });
      };
  };
f22cd7f3   Geoffrey PREUD'HOMME   Système de messag...
120
  
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
121
  
10852373   Geoffrey PREUD'HOMME   Session contrôleu...
122
  // Sessions
c726d602   Geoffrey PREUD'HOMME   Utilisation d'un ...
123
  sessionData = function (session, cb) {
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
124
125
126
127
128
129
130
131
132
133
134
135
136
137
      async.parallel([
          function (cba) {
              PolyUserServ.get(session.login, cba);
          },
          function (cba) {
              MembresServ.estMembre(session.login, cba);
          },
          function (cba) {
              MembresServ.estBureau(session.login, cba);
          }
      ], function (err, res) {
          if (err) {
              cb(err);
          } else {
d0649a9e   Geoffrey PREUD'HOMME   Gestion des non é...
138
              for (var attrname in res[0]) { session[attrname] = res[0][attrname]; }
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
139
140
              session.membre = res[1];
              session.bureau = res[2];
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
141
142
              cb(null, session);
          }
c726d602   Geoffrey PREUD'HOMME   Utilisation d'un ...
143
144
145
146
      });
  };
  
  api.use(session({
fb8f1174   Geoffrey PREUD'HOMME   Utilisation de mo...
147
148
149
      store: new MongoStore({
          mongooseConnection: mongoose.connection
      }),
c726d602   Geoffrey PREUD'HOMME   Utilisation d'un ...
150
151
      name: 'membreCool',
      resave: false,
6ac9921a   Geoffrey PREUD'HOMME   Message cookies
152
      saveUninitialized: false,
07298877   Geoffrey PREUD'HOMME   Session: secret g...
153
154
155
      secret: fs.readFileSync('config/session_secret', {
          encoding: 'UTF8'
      })
c726d602   Geoffrey PREUD'HOMME   Utilisation d'un ...
156
157
158
159
  }));
  
  api.get('/session', function (req, res) { // Informations sur la session
      res.send(req.session.data);
10852373   Geoffrey PREUD'HOMME   Session contrôleu...
160
161
  });
  
89bc7c99   Geoffrey PREUD'HOMME   Améliorations div...
162
163
164
  api.post('/session', decrypt(), assert(function (req, res, cb) {
      cb(null, req.body && typeof req.body.login == 'string' && req.body.login !== '' && typeof req.body.pass == 'string' && req.body.pass !== '');
  }), function (req, res) { // Se connecter
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
165
166
167
168
      PolyUserServ.verify(req.body.login, req.body.pass, ensureOkay(res, 500, function (verified) {
          if (verified) {
              sessionData({
                  login: req.body.login
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
169
              }, ensureOkay(res, 500, function (session) {
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
170
                  req.session.data = session;
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
171
172
173
174
                  req.session.save(ensureOkay(res, 500, function () {
                      res.status(201).json(session);
                  }));
              }));
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
175
176
177
178
          } else {
              req.session.destroy(ensureOkay(res, 500, function () {
                  res.status(401).end();
              }));
89bc7c99   Geoffrey PREUD'HOMME   Améliorations div...
179
          }
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
180
      }));
2201e360   Geoffrey PREUD'HOMME   Le login se fait ...
181
  });
10852373   Geoffrey PREUD'HOMME   Session contrôleu...
182
183
  
  api.delete('/session', function (req, res) { // Se déconnecter
c726d602   Geoffrey PREUD'HOMME   Utilisation d'un ...
184
      req.session.destroy();
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
185
      res.status(205).end();
2201e360   Geoffrey PREUD'HOMME   Le login se fait ...
186
  });
10852373   Geoffrey PREUD'HOMME   Session contrôleu...
187
  
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
188
189
190
191
192
193
194
195
  getSubject = function (serv) { // Fonction générique pour récupérer un objet spécifié dans l'URL
      return function (req, res, next) {
          serv.get(req.params._id, ensureExists(res, 404, function (data) {
              req.subject = data;
              next();
          }));
      };
  };
10852373   Geoffrey PREUD'HOMME   Session contrôleu...
196
  
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
197
198
199
200
201
  assertSubject = function (serv) {
      return assert(function (req, res, cb) {
          serv.assert(req.body, cb);
      });
  };
0bda071e   Geoffrey PREUD'HOMME   Reroutage
202
  
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
203
204
  addSubject = function (serv) {
      return function (req, res) {
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
205
          serv.add(req.body, ensureExists(res, 404, function (membre) {
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
206
              serv.simpleData(membre, giveBack(res, 201));
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
207
          }));
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
      };
  };
  
  delSubject = function (serv) {
      return function (req, res) {
          serv.remove(req.subject, giveNull(res, 205));
      };
  };
  
  // Membres
  
  // Liste des membres
  api.get('/membres', function (req, res) {
      MembresServ.list(ensureExists(res, 404, function (membres) {
          async.map(membres, MembresServ.simpleData, function (err, data) {
              giveBack(res, 200)(err, data);
          });
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
225
      }));
61d4f326   Geoffrey PREUD'HOMME   Gestion des dossiers
226
  });
12162cc1   Geoffrey PREUD'HOMME   Liste de conversa...
227
  
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
228
229
  // Ajout d'un membre
  api.post('/membres', reqBureau, assertSubject(MembresServ), function (req, res) {
61d4f326   Geoffrey PREUD'HOMME   Gestion des dossiers
230
  
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
231
232
233
234
      MembresServ.add(req.body, ensureExists(res, 404, function (membre) {
  
          MembresServ.simpleData(membre, giveBack(res, 201));
      }));
12162cc1   Geoffrey PREUD'HOMME   Liste de conversa...
235
236
  });
  
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
237
238
  // Supression d'un membre
  api.delete('/membres/:_id', reqBureau, getSubject(MembresServ), delSubject(MembresServ));
a470afda   Geoffrey PREUD'HOMME   Simplification de...
239
  
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
240
  
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
241
242
243
244
245
  // Dossiers
  
  parentId = function (req, res, next) {
      DosssServ.get(req.body.parent, ensureExists(res, 404, function (parent) {
          req.body.parent = parent._id;
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
246
247
          next();
      }));
a470afda   Geoffrey PREUD'HOMME   Simplification de...
248
249
  };
  
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
250
251
252
  // Un doss
  api.get('/dosss/:_id', reqAuth, getSubject(DosssServ), function (req, res) {
      DosssServ.detailedData(req.subject, giveBack(res, 200));
9378de0d   Geoffrey PREUD'HOMME   Affichage d'une c...
253
254
  });
  
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
255
256
  // Ajout d'un doss
  api.post('/dosss', reqMembre, parentId, assertSubject(DosssServ), addSubject(DosssServ));
12162cc1   Geoffrey PREUD'HOMME   Liste de conversa...
257
  
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
258
259
260
261
262
263
264
265
  // Supression d'un doss
  api.delete('/dosss/:_id', reqBureau, getSubject(DosssServ), delSubject(DosssServ));
  
  // Conversations
  
  // Infos sur une conversation
  api.get('/convs/:_id', reqAuth, getSubject(ConvsServ), function (req, res) {
      ConvsServ.detailedData(req.subject, giveBack(res, 200));
79edca45   Geoffrey PREUD'HOMME   Nouvelle façon de...
266
267
  });
  
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
268
269
270
271
272
273
  // Ajout d'une conversation
  api.post('/convs', reqMembre, parentId, assertSubject(ConvsServ), addSubject(ConvsServ));
  
  // Supression d'une conversation
  api.delete('/convs/:_id', reqBureau, getSubject(ConvsServ), delSubject(ConvsServ));
  
79edca45   Geoffrey PREUD'HOMME   Nouvelle façon de...
274
  // Messages
79edca45   Geoffrey PREUD'HOMME   Nouvelle façon de...
275
  
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
276
277
278
279
280
281
  // Liste des messs
  // api.get('/messs/:conv_id', reqAuth, function (req, res) {
  //     MessServ.list(req.params.conv_id, ensureExists(res, 404, function (messs) {
  //         async.map(messs, MessServ.simpleData, giveBack(res, 200));
  //     }));
  // });
79edca45   Geoffrey PREUD'HOMME   Nouvelle façon de...
282
  
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
283
284
  // Ajout d'un mess
  api.post('/messs', reqMembre, addLogin, assertSubject(MessServ), addSubject(MessServ));
79edca45   Geoffrey PREUD'HOMME   Nouvelle façon de...
285
  
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
286
  // Édition d'un mess
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
287
288
289
290
291
292
293
  api.put('/messs/:_id', reqMembre, addLogin, assertSubject(MessServ), getSubject(MessServ), reqOwn('mess'),
      function (req, res) {
  
          MessServ.edit(req.subject, req.body, ensureExists(res, 404, function (mess) {
              MessServ.simpleData(mess, giveBack(res, 201));
          }));
      });
ba3a9e89   Geoffrey PREUD'HOMME   Ajout de l'éditio...
294
  
d51337d0   Geoffrey PREUD'HOMME   Améliorations div...
295
  // Supression d'un mess
278868c0   Geoffrey PREUD'HOMME   Refactorisation d...
296
  api.delete('/messs/:_id', reqMembre, getSubject(MessServ), reqOwn('mess'), delSubject(MessServ));
12162cc1   Geoffrey PREUD'HOMME   Liste de conversa...
297
  
d0a827b6   Geoffrey PREUD'HOMME   404, 405, 406, 41...
298
299
300
301
302
303
304
  api.all('/coffee', function (req, res) {
      res.status(418).end();
  });
  
  api.all('*', function (req, res) {
      res.status(405).end();
  });
f22cd7f3   Geoffrey PREUD'HOMME   Système de messag...
305
  
2201e360   Geoffrey PREUD'HOMME   Le login se fait ...
306
  module.exports = api;