12162cc1
Geoffrey PREUD'HOMME
Liste de conversa...
|
1
|
var ConvModl = require('../models/ConvModl');
|
63f92223
Geoffrey PREUD'HOMME
Fixé création de ...
|
2
|
var DosssServ = require('../services/DosssServ');
|
12162cc1
Geoffrey PREUD'HOMME
Liste de conversa...
|
3
4
|
var async = require('async');
|
63f92223
Geoffrey PREUD'HOMME
Fixé création de ...
|
5
|
var ConvsServ = module.exports = {
|
12162cc1
Geoffrey PREUD'HOMME
Liste de conversa...
|
6
|
|
63f92223
Geoffrey PREUD'HOMME
Fixé création de ...
|
7
|
simple: ['_id', 'titre', 'parent', 'hidden'],
|
278868c0
Geoffrey PREUD'HOMME
Refactorisation d...
|
8
|
|
63f92223
Geoffrey PREUD'HOMME
Fixé création de ...
|
9
10
11
12
13
14
15
16
17
|
simpleData: function (convD, cb) {
// TODO Démarré par
// TODO Dernier message
var conv = {};
for (var prop of ConvsServ.simple) {
conv[prop] = convD[prop];
}
cb(null, conv);
},
|
278868c0
Geoffrey PREUD'HOMME
Refactorisation d...
|
18
|
|
63f92223
Geoffrey PREUD'HOMME
Fixé création de ...
|
19
20
21
22
23
24
|
detailedData: function (convD, cb) {
async.parallel([
function (cba) {
var conv = {};
for (var prop of ConvsServ.simple) {
conv[prop] = convD[prop];
|
278868c0
Geoffrey PREUD'HOMME
Refactorisation d...
|
25
|
}
|
63f92223
Geoffrey PREUD'HOMME
Fixé création de ...
|
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
cba(null, conv);
},
function (cba) {
MessServ = require('../services/MessServ')
MessServ.children(convD._id, function (err, children) {
if (err) {
cba(err);
} else {
async.map(children, MessServ.simpleData, cba);
}
});
}
], function (err, res) {
if (err) {
cb(err);
} else {
conv = res[0];
conv.messs = res[1];
|
278868c0
Geoffrey PREUD'HOMME
Refactorisation d...
|
44
|
|
63f92223
Geoffrey PREUD'HOMME
Fixé création de ...
|
45
46
47
48
|
cb(null, conv);
}
});
},
|
f22cd7f3
Geoffrey PREUD'HOMME
Système de messag...
|
49
|
|
63f92223
Geoffrey PREUD'HOMME
Fixé création de ...
|
50
51
52
|
get: function (id, cb) {
ConvModl.findById(id, cb);
},
|
12162cc1
Geoffrey PREUD'HOMME
Liste de conversa...
|
53
|
|
63f92223
Geoffrey PREUD'HOMME
Fixé création de ...
|
54
55
56
57
58
59
60
61
62
63
|
children: function (id, cb) { // Conversations filles du dossier en paramètre
ConvModl.find({
parent: id,
$or: [{
hidden: false
}, {
hidden: undefined
}]
}, cb);
},
|
12162cc1
Geoffrey PREUD'HOMME
Liste de conversa...
|
64
|
|
63f92223
Geoffrey PREUD'HOMME
Fixé création de ...
|
65
66
67
|
assert: function (conv, cb) {
cb(null, conv.titre, conv.parent);
},
|
61d4f326
Geoffrey PREUD'HOMME
Gestion des dossiers
|
68
|
|
63f92223
Geoffrey PREUD'HOMME
Fixé création de ...
|
69
70
71
72
73
74
|
add: function (data, cb) {
ConvModl.create({
titre: data.titre,
parent: data.parent
}, cb);
},
|
f22cd7f3
Geoffrey PREUD'HOMME
Système de messag...
|
75
|
|
63f92223
Geoffrey PREUD'HOMME
Fixé création de ...
|
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
remove: function (id, cb) {
async.waterfall([function (cba) {
ConvsServ.get(id, cba);
}, function (conv, cba) {
cba(conv ? null : 'notfound', conv);
}, function (conv, cba) {
DosssServ.get('trash', function (err, trash) {
console.log(21, trash);
cba(err, conv, trash);
});
}, function (conv, trash, cba) {
conv.parent = trash._id;
conv.save(cba);
}], cb);
}
|
12162cc1
Geoffrey PREUD'HOMME
Liste de conversa...
|
91
|
};
|