Blame view

public/js/services/ForumServ.js 1.5 KB
12162cc1   Geoffrey PREUD'HOMME   Liste de conversa...
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
  angular.module('ForumServ', ['NotifyServ']).service('ForumServ', ['$http', 'NotifyServ',
      function ($http, NotifyServ) {
          a = {
              getConvs: function (cb) {
                  // TODO Dirs
                  $http.get('/api/convs')
                      .success(function (data) {
                          cb(null, data);
                      })
                      .error(function (data) { // TODO CBs
                          NotifyServ.error("Impossible d'obtenir la liste des convs", data);
                      });
              },
  
              createConv: function (data, cb) {
                  var not = NotifyServ.promise("Ajout du conv...");
                  $http.post('/api/convs', data)
                      .success(function (conv) {
                          not.success("Conv ajouté");
                          cb(null, conv);
                      })
                      .error(function (data) {
                          not.error("Impossible d'ajouter le conv");
                      });
              },
  
              deleteConv: function (id, cb) {
                  var not = NotifyServ.promise("Suppression du conv...");
                  $http.delete('/api/convs/' + id)
                      .success(function (conv) {
                          not.success("Conv supprimé");
                          cb(null);
                      })
                      .error(function (data) {
                          not.error("Impossible de supprimer le conv", data);
                      });
              }
          };
          return a;
      }
  ]);