noms.js
1.57 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
var Noms = require('../models/noms');
var LineTransform = require('node-line-reader').LineTransform;
var fs = require('fs')
var noms = {}
noms.get = function (login, cb) {
Noms.find({
login: login
}, function (err, nom) {
if (err) {
console.error(err)
cb(false)
} else {
if (nom.length >= 1) {
cb(nom.nom)
} else {
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(':')
console.log(line)
if (ex[0] == login) { // Si trouvé
found = true
stream.close()
cb(ex[4])
}
})
transform.on('end', function () {
if (!found) {
cb(false)
}
})
} else {
console.error("Impossible de trouver le fichier passwd")
cb(login.toUpperCase())
}
})
}
}
})
}
module.exports = noms;