Blame view

app/controllers/noms.js 1.48 KB
dafb4eeb   Geoffrey PREUD'HOMME   Affichage des nom...
1
  var Noms = require('../models/noms');
2ac0e575   Geoffrey PREUD'HOMME   Changé de line-re...
2
3
  var LineTransform = require('node-line-reader').LineTransform;
  var fs = require('fs')
dafb4eeb   Geoffrey PREUD'HOMME   Affichage des nom...
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  
  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 {
725cb3f7   Geoffrey PREUD'HOMME   Vérification de l...
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
                  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é
                                  found = true
                                  cb(ex[4])
                              }
                          })
                          transform.on('end', function () {
                              if (!found) {
                                  cb(false)
                              }
                          })
                      } else {
                          console.error("Impossible de trouver le fichier passwd")
                          cb(login.toUpperCase())
2ac0e575   Geoffrey PREUD'HOMME   Changé de line-re...
40
41
                      }
                  })
dafb4eeb   Geoffrey PREUD'HOMME   Affichage des nom...
42
43
44
45
46
47
              }
          }
      })
  }
  
  module.exports = noms;