Blame view

app/services/NomsServ.js 4.12 KB
7a1fe62d   Geoffrey PREUD'HOMME   Consistence des noms
1
  var NomsModl = require('../models/NomsModl');
2ac0e575   Geoffrey PREUD'HOMME   Changé de line-re...
2
  var LineTransform = require('node-line-reader').LineTransform;
2f593328   Geoffrey PREUD'HOMME   Linting
3
  var fs = require('fs');
dafb4eeb   Geoffrey PREUD'HOMME   Affichage des nom...
4
  
2f593328   Geoffrey PREUD'HOMME   Linting
5
  var noms = {};
dafb4eeb   Geoffrey PREUD'HOMME   Affichage des nom...
6
  
e4fff96c   Geoffrey PREUD'HOMME   Récupération des ...
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
  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);
          }
      });
  };
  
dafb4eeb   Geoffrey PREUD'HOMME   Affichage des nom...
74
  noms.get = function (login, cb) {
7a1fe62d   Geoffrey PREUD'HOMME   Consistence des noms
75
      NomsModl.findOne({
dafb4eeb   Geoffrey PREUD'HOMME   Affichage des nom...
76
          login: login
e4fff96c   Geoffrey PREUD'HOMME   Récupération des ...
77
78
79
80
      }, {
          nom: 1,
          section: 1,
          _id: 0
dafb4eeb   Geoffrey PREUD'HOMME   Affichage des nom...
81
      }, function (err, nom) {
e4fff96c   Geoffrey PREUD'HOMME   Récupération des ...
82
83
          if (nom && !err && nom.nom && nom.section) {
              cb(nom);
dafb4eeb   Geoffrey PREUD'HOMME   Affichage des nom...
84
          } else {
e4fff96c   Geoffrey PREUD'HOMME   Récupération des ...
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
              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 + ".");
725cb3f7   Geoffrey PREUD'HOMME   Vérification de l...
103
                              }
e4fff96c   Geoffrey PREUD'HOMME   Récupération des ...
104
105
106
107
108
109
110
111
112
                              cb({
                                  nom: passwd.GECOS,
                                  section: passwd.GID
                              });
                          }
                      });
                  } else {
                      if (passwd === undefined) {
                          console.error("Impossible d'ouvrir le fichier des noms.");
725cb3f7   Geoffrey PREUD'HOMME   Vérification de l...
113
                      } else {
e4fff96c   Geoffrey PREUD'HOMME   Récupération des ...
114
                          console.error("Impossible d'obtenir le nom de " + login + ".");
2ac0e575   Geoffrey PREUD'HOMME   Changé de line-re...
115
                      }
82d5512d   Geoffrey PREUD'HOMME   Vérification logi...
116
117
118
                      if (!login) {
                          login = 'Inconnu';
                      }
e4fff96c   Geoffrey PREUD'HOMME   Récupération des ...
119
120
121
122
123
124
                      cb({
                          nom: login.toUpperCase(),
                          section: 'Inconnue'
                      });
                  }
              });
dafb4eeb   Geoffrey PREUD'HOMME   Affichage des nom...
125
          }
2f593328   Geoffrey PREUD'HOMME   Linting
126
127
      });
  };
dafb4eeb   Geoffrey PREUD'HOMME   Affichage des nom...
128
  
2f593328   Geoffrey PREUD'HOMME   Linting
129
  module.exports = noms;