NomsServ.js
4.03 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
var NomsModl = require('../models/NomsModl');
var LineTransform = require('node-line-reader').LineTransform;
var fs = require('fs');
var noms = {};
noms.readPasswd = function (login, cb) {
passwdF = 'config/passwd';
fs.exists(passwdF, function (exists) {
found = false;
if (exists) {
stream = fs.createReadStream(passwdF);
transform = new LineTransform();
stream.pipe(transform);
transform.on('data', function (line) {
ex = line.split(':');
if (ex[0] == login) { // Si trouvé
stream.close();
cb({
'username': ex[0],
'password': ex[1],
'UID': ex[2],
'GID': ex[3],
'GECOS': ex[4],
'home': ex[5],
'shell': ex[6]
});
found = true;
}
});
transform.on('end', function () {
if (!found) {
cb(false);
}
});
} else {
cb(undefined);
}
});
};
noms.readGroup = function (gid, cb) {
groupF = 'config/group';
fs.exists(groupF, function (exists) {
found = false;
if (exists) {
stream = fs.createReadStream(groupF);
transform = new LineTransform();
stream.pipe(transform);
transform.on('data', function (line) {
ex = line.split(':');
if (ex[2] == gid) { // Si trouvé
stream.close();
cb({
'name': ex[0],
'password': ex[1],
'GID': ex[2],
'list': ex[3]
});
found = true;
}
});
transform.on('end', function () {
if (!found) {
cb(false);
}
});
} else {
cb(undefined);
}
});
};
noms.get = function (login, cb) {
NomsModl.findOne({
login: login
}, {
nom: 1,
section: 1,
_id: 0
}, function (err, nom) {
if (nom && !err && nom.nom && nom.section) {
cb(nom);
} else {
noms.readPasswd(login, function (passwd) {
if (passwd) {
noms.readGroup(passwd.GID, function (group) {
if (group) {
cb({
nom: passwd.GECOS,
section: group.name.toUpperCase()
});
NomsModl.create({
login: login,
nom: passwd.GECOS,
section: group.name.toUpperCase()
});
} else {
if (group === undefined) {
console.error("Impossible d'ouvrir le fichier des groupes.");
} else {
console.error("Impossible d'obtenir le groupe de " + passwd.GID + ".");
}
cb({
nom: passwd.GECOS,
section: passwd.GID
});
}
});
} else {
if (passwd === undefined) {
console.error("Impossible d'ouvrir le fichier des noms.");
} else {
console.error("Impossible d'obtenir le nom de " + login + ".");
}
cb({
nom: login.toUpperCase(),
section: 'Inconnue'
});
}
});
}
});
};
module.exports = noms;