No longer add promo 2011 in fusionax
[platal.git] / modules / fusionax.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2014 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22 /**
23 * Module to merge data from AX database: this will only be used once on
24 * production site and should be removed afterwards.
25 *
26 * Module to import data from another database of alumni that had
27 * different schemas. The organization that used this db is called AX
28 * hence the name of this module.
29 *
30 * Datas are stored in an export file.
31 */
32 class FusionAxModule extends PLModule
33 {
34 function handlers()
35 {
36 if (Platal::globals()->merge->state == 'pending') {
37 return array(
38 'fusionax' => $this->make_hook('index', AUTH_PASSWD, 'admin'),
39 'fusionax/import' => $this->make_hook('import', AUTH_PASSWD, 'admin'),
40 'fusionax/view' => $this->make_hook('view', AUTH_PASSWD, 'admin'),
41 'fusionax/ids' => $this->make_hook('ids', AUTH_PASSWD, 'admin'),
42 'fusionax/deceased' => $this->make_hook('deceased', AUTH_PASSWD, 'admin'),
43 'fusionax/promo' => $this->make_hook('promo', AUTH_PASSWD, 'admin'),
44 'fusionax/names' => $this->make_hook('names', AUTH_PASSWD, 'admin'),
45 'fusionax/edu' => $this->make_hook('edu', AUTH_PASSWD, 'admin'),
46 'fusionax/corps' => $this->make_hook('corps', AUTH_PASSWD, 'admin')
47 );
48 } elseif (Platal::globals()->merge->state == 'done') {
49 return array(
50 'fusionax' => $this->make_hook('index', AUTH_PASSWD, 'admin,edit_directory'),
51 'fusionax/issues' => $this->make_hook('issues', AUTH_PASSWD, 'admin,edit_directory'),
52 'fusionax/issues/deathdate' => $this->make_hook('issues_deathdate', AUTH_PASSWD, 'admin,edit_directory'),
53 'fusionax/issues/promo' => $this->make_hook('issues_promo', AUTH_PASSWD, 'admin,edit_directory'),
54 );
55 }
56 }
57
58
59 function handler_index($page)
60 {
61 if (Platal::globals()->merge->state == 'pending') {
62 $page->changeTpl('fusionax/index.tpl');
63 } elseif (Platal::globals()->merge->state == 'done') {
64 $issueList = array(
65 'name' => 'noms',
66 'job' => 'emplois',
67 'address' => 'adresses',
68 'promo' => 'promotions',
69 'deathdate' => 'dates de décès',
70 'phone' => 'téléphones',
71 'education' => 'formations',
72 );
73 $issues = XDB::rawFetchOneAssoc("SELECT COUNT(*) AS total,
74 SUM(FIND_IN_SET('name', issues)) DIV 1 AS name,
75 SUM(FIND_IN_SET('job', issues)) DIV 2 AS job,
76 SUM(FIND_IN_SET('address', issues)) DIV 3 AS address,
77 SUM(FIND_IN_SET('promo', issues)) DIV 4 AS promo,
78 SUM(FIND_IN_SET('deathdate', issues)) DIV 5 AS deathdate,
79 SUM(FIND_IN_SET('phone', issues)) DIV 6 AS phone,
80 SUM(FIND_IN_SET('education', issues)) DIV 7 AS education
81 FROM profile_merge_issues
82 WHERE issues IS NOT NULL OR issues != ''");
83 $page->changeTpl('fusionax/issues.tpl');
84 $page->assign('issues', $issues);
85 $page->assign('issueList', $issueList);
86 }
87 }
88
89 /** Import de l'annuaire de l'AX depuis l'export situé dans le home de jacou */
90 function handler_import($page, $action = 'index', $file = '')
91 {
92 global $globals;
93 if ($action == 'index') {
94 $page->changeTpl('fusionax/import.tpl');
95 return;
96 }
97
98 // toutes les actions sont faites en ajax en utilisant jquery
99 header('Content-type: text/javascript; charset=utf-8');
100
101 // log des actions
102 $report = array();
103
104 $modulepath = realpath(dirname(__FILE__) . '/fusionax/') . '/';
105 $spoolpath = realpath(dirname(__FILE__) . '/../spool/fusionax/') . '/';
106
107 if ($action == 'launch') {
108 if ($file == '') {
109 $report[] = 'Nom de fichier non renseigné.';
110 } elseif (!file_exists(dirname(__FILE__) . '/../spool/fusionax/' . $file)) {
111 $report[] = 'Le fichier ne se situe pas au bon endroit.';
112 } else {
113 // séparation de l'archive en fichiers par tables
114 $file = $spoolpath . $file;
115 // Split export into specialised files
116 exec('grep "^AD" ' . $file . ' > ' . $spoolpath . 'Adresses.txt');
117 exec('grep "^AN" ' . $file . ' > ' . $spoolpath . 'Anciens.txt');
118 exec('grep "^FO.[0-9]\{4\}[MD][0-9]\{3\}.Etudiant" ' . $file . ' > ' . $spoolpath . 'Formations_MD.txt');
119 exec('grep "^FO.[0-9]\{4\}[MD][0-9]\{3\}.Doct. de" ' . $file . ' >> ' . $spoolpath . 'Formations_MD.txt');
120 exec('grep "^FO" ' . $file . ' > ' . $spoolpath . 'Formations.txt');
121 exec('grep "^AC" ' . $file . ' > ' . $spoolpath . 'Activites.txt');
122 exec('grep "^EN" ' . $file . ' > ' . $spoolpath . 'Entreprises.txt');
123 exec($modulepath . 'formation.pl');
124 exec('mv -f ' . $spoolpath . 'Formations_out.txt ' . $spoolpath . 'Formations.txt');
125 exec('mv -f ' . $spoolpath . 'Formations_MD_out.txt ' . $spoolpath . 'Formations_MD.txt');
126 $report[] = 'Fichier parsé.';
127 $report[] = 'Import dans la base en cours...';
128 XDB::execute("UPDATE profiles
129 SET ax_id = NULL
130 WHERE ax_id = ''");
131 $next = 'integrateSQL';
132 }
133 } elseif ($action == 'integrateSQL') {
134 // intégration des données dans la base MySQL
135 // liste des fichiers sql à exécuter
136 $filesSQL = array(
137 0 => 'Activites.sql',
138 1 => 'Adresses.sql',
139 2 => 'Anciens.sql',
140 3 => 'Formations.sql',
141 4 => 'Entreprises.sql',
142 5 => 'Formations_MD.sql'
143 );
144 if ($file != '') {
145 // récupère le contenu du fichier sql
146 $queries = explode(';', file_get_contents($modulepath . $filesSQL[$file]));
147 $db = mysqli_init();
148 $db->options(MYSQLI_OPT_LOCAL_INFILE, true);
149 $db->real_connect($globals->dbhost, $globals->dbuser, $globals->dbpwd, $globals->dbdb);
150 $db->autocommit(true);
151 $db->set_charset($globals->dbcharset);
152 foreach ($queries as $q) {
153 if (trim($q)) {
154 // coupe le fichier en requêtes individuelles
155 if (substr($q, 0, 2) == '--') {
156 // affiche les commentaires dans le report
157 $lines = explode("\n", $q);
158 $l = $lines[0];
159 $report[] = addslashes($l);
160 }
161 // exécute la requête
162 $res = $db->query(str_replace('{?}', $spoolpath, $q));
163 if ($res === false) {
164 throw new XDBException($q, $db->error);
165 }
166 }
167 }
168 $db->close();
169 // trouve le prochain fichier à exécuter
170 $nextfile = $file + 1;
171 } else {
172 $nextfile = 0;
173 }
174 if ($nextfile > 5) {
175 // tous les fichiers ont été exécutés, on passe à l'étape suivante
176 $next = 'adds1920';
177 } else {
178 // on passe au fichier suivant
179 $next = 'integrateSQL/' . $nextfile;
180 }
181 } elseif ($action == 'adds1920') {
182 // Adds promotion 1920 from AX db.
183 $report[] = 'Ajout de la promotion 1920';
184 $res = XDB::iterator('SELECT prenom, Nom_complet, ax_id
185 FROM fusionax_anciens
186 WHERE promotion_etude = 1920;');
187
188 $eduSchools = DirEnum::getOptions(DirEnum::EDUSCHOOLS);
189 $eduSchools = array_flip($eduSchools);
190 $eduDegrees = DirEnum::getOptions(DirEnum::EDUDEGREES);
191 $eduDegrees = array_flip($eduDegrees);
192 $degreeid = $eduDegrees[Profile::DEGREE_X];
193 $entry_year = 1920;
194 $grad_year = 1923;
195 $promo = 'X1920';
196 $hrpromo = '1920';
197 $sex = 'male';
198 $xorgId = 19200000;
199 $type = 'x';
200
201 while ($new = $res->next()) {
202 $firstname = $new['prenom'];
203 $lastname = $new['Nom_complet'];
204 $ax_id = $new['ax_id'];
205 $hrid = User::makeHrid($firstname, $lastname, $hrpromo);
206 $res1 = XDB::query('SELECT COUNT(*)
207 FROM accounts
208 WHERE hruid = {?}', $hrid);
209 $res2 = XDB::query('SELECT COUNT(*)
210 FROM profiles
211 WHERE hrpid = {?}', $hrid);
212 if (is_null($hrid) || $res1->fetchOneCell() > 0 || $res2->fetchOneCell() > 0) {
213 $report[] = $ax_id . ' non ajouté';
214 }
215 $fullName = $firstname . ' ' . $lastname;
216 $directoryName = $lastname . ' ' . $firstname;
217 ++$xorgId;
218
219 XDB::execute('INSERT INTO profiles (hrpid, xorg_id, ax_id, sex)
220 VALUES ({?}, {?}, {?}, {?})',
221 $hrid, $xorgId, $ax_id, $sex);
222 $pid = XDB::insertId();
223 XDB::execute('INSERT INTO profile_public_names (pid, lastname_initial, firstname_initial, lastname_main, firstname_main)
224 VALUES ({?}, {?}, {?}, {?}, {?})',
225 $pid, $lastname, $firstname, $lastname, $firstname);
226 XDB::execute('INSERT INTO profile_display (pid, yourself, public_name, private_name,
227 directory_name, short_name, sort_name, promo)
228 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})',
229 $pid, $firstname, $fullName, $fullName, $directoryName, $fullName, $directoryName, $promo);
230 XDB::execute('INSERT INTO profile_education (pid, eduid, degreeid, entry_year, grad_year, flags)
231 VALUES ({?}, {?}, {?}, {?}, {?}, {?})',
232 $pid, $eduSchools[Profile::EDU_X], $degreeid, $entry_year, $grad_year, 'primary');
233 XDB::execute('INSERT INTO accounts (hruid, type, is_admin, state, full_name, directory_name, display_name, lastname, firstname, sex)
234 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})',
235 $hrid, $type, 0, 'pending', $fullName, $directoryName, $firstname, $lastname, $firstname, $sex);
236 $uid = XDB::insertId();
237 XDB::execute('INSERT INTO account_profiles (uid, pid, perms)
238 VALUES ({?}, {?}, {?})',
239 $uid, $pid, 'owner');
240 }
241 $report[] = 'Promo 1920 ajoutée.';
242 $next = 'view';
243 } elseif ($action == 'view') {
244 XDB::execute('CREATE OR REPLACE ALGORITHM=MERGE VIEW fusionax_xorg_anciens AS
245 SELECT p.pid, p.ax_id, pd.promo, pd.private_name, pd.public_name,
246 pd.sort_name, pd.short_name, pd.directory_name
247 FROM profiles AS p
248 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)');
249 $next = 'clean';
250 } elseif ($action == 'clean') {
251 // nettoyage du fichier temporaire
252 //exec('rm -Rf ' . $spoolpath);
253 $report[] = 'Import finit.';
254 }
255 foreach($report as $t) {
256 // affiche les lignes de report
257 echo "$('#fusionax').append('" . $t . "<br/>');\n";
258 }
259 if (isset($next)) {
260 // lance le prochain script s'il y en a un
261 echo "$.getScript('fusionax/import/" . $next . "');";
262 }
263 // exit pour ne pas afficher la page template par défaut
264 exit;
265 }
266
267 function handler_view($page, $action = '')
268 {
269 $page->changeTpl('fusionax/view.tpl');
270 if ($action == 'create') {
271 XDB::execute('DROP VIEW IF EXISTS fusionax_deceased');
272 XDB::execute("CREATE VIEW fusionax_deceased AS
273 SELECT p.pid, a.ax_id, pd.private_name, pd.promo, p.deathdate AS deces_xorg, a.Date_deces AS deces_ax
274 FROM profiles AS p
275 INNER JOIN profile_display AS pd ON (p.pid = pd.pid)
276 INNER JOIN fusionax_anciens AS a ON (a.ax_id = p.ax_id)
277 WHERE p.deathdate != a.Date_deces OR (p.deathdate IS NULL AND a.Date_deces != '0000-00-00')");
278 XDB::execute('DROP VIEW IF EXISTS fusionax_promo');
279 XDB::execute("CREATE VIEW fusionax_promo AS
280 SELECT p.pid, p.ax_id, pd.private_name, pd.promo, pe.entry_year AS promo_etude_xorg, f.groupe_promo,
281 f.promotion_etude AS promo_etude_ax, pe.grad_year AS promo_sortie_xorg
282 FROM profiles AS p
283 INNER JOIN profile_display AS pd ON (p.pid = pd.pid)
284 INNER JOIN profile_education AS pe ON (p.pid = pe.pid AND FIND_IN_SET('primary', pe.flags))
285 INNER JOIN fusionax_anciens AS f ON (p.ax_id = f.ax_id)
286 WHERE (f.groupe_promo = 'X' AND pd.promo != CONCAT('X', f.promotion_etude)
287 AND !(f.promotion_etude = pe.entry_year + 1 AND pe.grad_year = pe.entry_year + 4)
288 AND !(f.promotion_etude = pe.entry_year + 2 AND pe.grad_year = pe.entry_year + 5)
289 AND f.promotion_etude != 0)
290 OR (f.groupe_promo = 'D' AND f.promotion_etude != pe.grad_year)
291 OR (f.groupe_promo = 'M' AND f.promotion_etude != pe.entry_year)
292 GROUP BY p.pid");
293 $page->trigSuccess('Les VIEW ont bien été créées.');
294 }
295 }
296
297 /* Mets à NULL le matricule_ax de ces camarades pour marquer le fait qu'ils ne figurent pas dans l'annuaire de l'AX */
298 private static function clear_wrong_in_xorg($pid)
299 {
300 $res = XDB::execute('UPDATE fusionax_xorg_anciens
301 SET ax_id = NULL
302 WHERE pid = {?}', $pid);
303 if (!$res) {
304 return 0;
305 }
306 return XDB::affectedRows() / 2;
307 }
308
309 /* Cherche les les anciens présents dans Xorg avec un matricule_ax ne correspondant à rien dans la base de l'AX
310 * (mises à part les promo 1921, 1922, 1923, 1924, 1925, 1927 qui ne figurent pas dans les données de l'AX)*/
311 private static function find_wrong_in_xorg($limit = 10)
312 {
313 return XDB::iterator('SELECT u.promo, u.pid, u.private_name
314 FROM fusionax_xorg_anciens AS u
315 WHERE NOT EXISTS (SELECT *
316 FROM fusionax_anciens AS f
317 WHERE f.ax_id = u.ax_id)
318 AND u.ax_id IS NOT NULL AND promo NOT IN (\'X1921\', \'X1922\', \'X1923\', \'X1924\', \'X1925\', \'X1927\')');
319 }
320
321 /** Lier les identifiants d'un ancien dans les deux annuaires
322 * @param user_id identifiant dans l'annuaire X.org
323 * @param matricule_ax identifiant dans l'annuaire de l'AX
324 * @return 0 si la liaison a échoué, 1 sinon
325 */
326 private static function link_by_ids($pid, $ax_id)
327 {
328 $res = XDB::execute('UPDATE fusionax_import AS i
329 INNER JOIN fusionax_xorg_anciens AS u
330 SET u.ax_id = i.ax_id,
331 i.pid = u.pid,
332 i.date_match_id = NOW()
333 WHERE i.ax_id = {?} AND u.pid = {?}
334 AND (u.ax_id != {?} OR u.ax_id IS NULL
335 OR i.pid != {?} OR i.pid IS NULL)',
336 $ax_id, $pid, $ax_id, $pid);
337 if (!$res) {
338 return 0;
339 }
340 return XDB::affectedRows() / 2;
341 }
342
343 /** Recherche automatique d'anciens à lier entre les deux annuaires
344 * @param limit nombre d'anciens à trouver au max
345 * @param sure si true, ne trouve que des anciens qui sont quasi sûrs
346 * @return un XOrgDBIterator sur les entrées avec display_name, promo,
347 * pid, ax_id et display_name_ax
348 */
349 private static function find_easy_to_link($limit = 10, $sure = false)
350 {
351 $easy_to_link = XDB::iterator("
352 SELECT u.private_name, u.promo, u.pid, ax.ax_id,
353 CONCAT(ax.prenom, ' ', ax.nom_complet, ' (', ax.groupe_promo, ax.promotion_etude, ')') AS display_name_ax,
354 COUNT(*) AS nbMatches
355 FROM fusionax_anciens AS ax
356 INNER JOIN fusionax_import AS i ON (i.ax_id = ax.ax_id AND i.pid IS NULL)
357 LEFT JOIN fusionax_xorg_anciens AS u ON (u.ax_id IS NULL
358 AND u.promo = CONCAT(ax.groupe_promo, ax.promotion_etude)
359 AND (CONCAT(ax.prenom, ' ', ax.nom_complet) = u.private_name
360 OR CONCAT(ax.prenom, ' ', ax.nom_complet) = u.public_name
361 OR CONCAT(ax.prenom, ' ', ax.nom_complet) = u.short_name))
362 GROUP BY u.pid
363 HAVING u.pid IS NOT NULL AND nbMatches = 1" . ($limit ? (' LIMIT ' . $limit) : ''));
364 if ($easy_to_link->total() > 0 || $sure) {
365 return $easy_to_link;
366 }
367 return XDB::iterator("
368 SELECT u.private_name, u.promo, u.pid, ax.ax_id,
369 CONCAT(ax.prenom, ' ', ax.nom_complet, ' (', ax.groupe_promo, ax.promotion_etude, ')') AS display_name_ax,
370 COUNT(*) AS nbMatches
371 FROM fusionax_anciens AS ax
372 INNER JOIN fusionax_import AS i ON (i.ax_id = ax.ax_id AND i.pid IS NULL)
373 LEFT JOIN fusionax_xorg_anciens AS u ON (u.ax_id IS NULL
374 AND (CONCAT(ax.prenom, ' ', ax.nom_complet) = u.private_name
375 OR CONCAT(ax.prenom, ' ', ax.nom_complet) = u.public_name
376 OR CONCAT(ax.prenom, ' ', ax.nom_complet) = u.short_name)
377 AND u.promo < CONCAT(ax.groupe_promo, ax.promotion_etude + 2)
378 AND u.promo > CONCAT(ax.groupe_promo, ax.promotion_etude - 2))
379 GROUP BY u.pid
380 HAVING u.pid IS NOT NULL AND nbMatches = 1" . ($limit ? (' LIMIT ' . $limit) : ''));
381 }
382
383 /** Module de mise en correspondance les ids */
384 function handler_ids($page, $part = 'main', $pid = null, $ax_id = null)
385 {
386 $nbToLink = 100;
387 $page->assign('xorg_title', 'Polytechnique.org - Fusion - Mise en correspondance simple');
388
389 if ($part == 'missingInAX') {
390 // locate all persons from this database that are not in AX's
391 $page->changeTpl('fusionax/idsMissingInAx.tpl');
392 $missingInAX = XDB::iterator('SELECT promo, pid, private_name
393 FROM fusionax_xorg_anciens
394 WHERE ax_id IS NULL
395 ORDER BY promo');
396 $page->assign('missingInAX', $missingInAX);
397 return;
398 }
399 if ($part == 'missingInXorg') {
400 // locate all persons from AX's database that are not here
401 $page->changeTpl('fusionax/idsMissingInXorg.tpl');
402 $missingInXorg = XDB::iterator("SELECT CONCAT(a.prenom, ' ', a.Nom_usuel) AS private_name,
403 CONCAT(a.groupe_promo, a.promotion_etude) AS promo, a.ax_id
404 FROM fusionax_import
405 INNER JOIN fusionax_anciens AS a USING (ax_id)
406 WHERE fusionax_import.pid IS NULL
407 ORDER BY promo");
408 $page->assign('missingInXorg', $missingInXorg);
409 return;
410 }
411 if ($part == 'wrongInXorg') {
412 // locate all persons from Xorg database that have a bad AX id
413 $page->changeTpl('fusionax/idswrongInXorg.tpl');
414 $wrongInXorg = FusionAxModule::find_wrong_in_xorg($nbToLink);
415 $page->assign('wrongInXorg', $wrongInXorg);
416 return;
417 }
418 if ($part == 'cleanwronginxorg') {
419 $linksToDo = FusionAxModule::find_wrong_in_xorg($nbToLink);
420 while ($l = $linksToDo->next()) {
421 FusionAxModule::clear_wrong_in_xorg($l['pid']);
422 }
423 pl_redirect('fusionax/ids/wrongInXorg');
424 }
425 if ($part == 'lier') {
426 if (Post::has('user_id') && Post::has('matricule_ax')) {
427 FusionAxModule::link_by_ids(Post::i('pid'), Post::v('ax_id'));
428 }
429 }
430 if ($part == 'link') {
431 FusionAxModule::link_by_ids($pid, $ax_id);
432 exit;
433 }
434 if ($part == 'linknext') {
435 $linksToDo = FusionAxModule::find_easy_to_link($nbToLink);
436 while ($l = $linksToDo->next()) {
437 FusionAxModule::link_by_ids($l['pid'], $l['ax_id']);
438 }
439 pl_redirect('fusionax/ids#autolink');
440 }
441 if ($part == 'linkall') {
442 $linksToDo = FusionAxModule::find_easy_to_link(0);
443 while ($l = $linksToDo->next()) {
444 FusionAxModule::link_by_ids($l['pid'], $l['ax_id']);
445 }
446 }
447 {
448 $page->changeTpl('fusionax/ids.tpl');
449 $missingInAX = XDB::query('SELECT COUNT(*)
450 FROM fusionax_xorg_anciens
451 WHERE ax_id IS NULL');
452 if ($missingInAX) {
453 $page->assign('nbMissingInAX', $missingInAX->fetchOneCell());
454 }
455 $missingInXorg = XDB::query('SELECT COUNT(*)
456 FROM fusionax_import
457 WHERE pid IS NULL');
458 if ($missingInXorg) {
459 $page->assign('nbMissingInXorg', $missingInXorg->fetchOneCell());
460 }
461 $wrongInXorg = FusionAxModule::find_wrong_in_xorg($nbToLink);
462 if ($wrongInXorg->total() > 0) {
463 $page->assign('wrongInXorg', $wrongInXorg->total());
464 }
465 $easyToLink = FusionAxModule::find_easy_to_link($nbToLink);
466 if ($easyToLink->total() > 0) {
467 $page->assign('nbMatch', $easyToLink->total());
468 $page->assign('easyToLink', $easyToLink);
469 }
470 }
471 }
472
473 function handler_deceased($page, $action = '')
474 {
475 if ($action == 'updateXorg') {
476 XDB::execute('UPDATE fusionax_deceased
477 SET deces_xorg = deces_ax
478 WHERE deces_xorg IS NULL');
479 }
480 if ($action == 'updateAX') {
481 XDB::execute('UPDATE fusionax_deceased
482 SET deces_ax = deces_xorg
483 WHERE deces_ax = "0000-00-00"');
484 }
485 if ($action == 'update') {
486 if (Post::has('pid') && Post::has('date')) {
487 XDB::execute('UPDATE fusionax_deceased
488 SET deces_ax = {?}, deces_xorg = {?}
489 WHERE pid = {?}',
490 Post::v('date'), Post::v('date'), Post::i('pid'));
491 }
492 }
493 $page->changeTpl('fusionax/deceased.tpl');
494 // deceased
495 $deceasedErrorsSql = XDB::query('SELECT COUNT(*) FROM fusionax_deceased');
496 $page->assign('deceasedErrors', $deceasedErrorsSql->fetchOneCell());
497 $res = XDB::iterator('SELECT pid, ax_id, promo, private_name, deces_ax
498 FROM fusionax_deceased
499 WHERE deces_xorg IS NULL
500 LIMIT 10');
501 $page->assign('nbDeceasedMissingInXorg', $res->total());
502 $page->assign('deceasedMissingInXorg', $res);
503 $res = XDB::iterator('SELECT pid, ax_id, promo, private_name, deces_xorg
504 FROM fusionax_deceased
505 WHERE deces_ax = "0000-00-00"
506 LIMIT 10');
507 $page->assign('nbDeceasedMissingInAX', $res->total());
508 $page->assign('deceasedMissingInAX', $res);
509 $res = XDB::iterator('SELECT pid, ax_id, promo, private_name, deces_xorg, deces_ax
510 FROM fusionax_deceased
511 WHERE deces_xorg != "0000-00-00" AND deces_ax != "0000-00-00"');
512 $page->assign('nbDeceasedDifferent', $res->total());
513 $page->assign('deceasedDifferent', $res);
514 }
515
516 function handler_promo($page, $action = '')
517 {
518 $page->changeTpl('fusionax/promo.tpl');
519 $res = XDB::iterator("SELECT pid, private_name, promo_etude_xorg, promo_sortie_xorg, promo_etude_ax, promo
520 FROM fusionax_promo
521 WHERE !(promo_etude_ax + 1 = promo_etude_xorg AND promo_etude_xorg + 3 = promo_sortie_xorg)
522 AND !(promo_etude_ax + 1 = promo_etude_xorg AND promo_etude_xorg + 4 = promo_sortie_xorg)
523 AND !(promo_etude_ax = promo_etude_xorg + 1) AND groupe_promo = 'X'
524 ORDER BY promo_etude_xorg");
525 $nbMissmatchingPromos = $res->total();
526 $page->assign('nbMissmatchingPromos', $res->total());
527 $page->assign('missmatchingPromos', $res);
528
529 $res = XDB::iterator("SELECT pid, private_name, promo_etude_xorg, promo_sortie_xorg, promo_etude_ax, promo
530 FROM fusionax_promo
531 WHERE promo_etude_ax = promo_etude_xorg + 1 AND groupe_promo = 'X'
532 ORDER BY promo_etude_xorg");
533 $nbMissmatchingPromos += $res->total();
534 $page->assign('nbMissmatchingPromos1', $res->total());
535 $page->assign('missmatchingPromos1', $res);
536
537 $res = XDB::iterator("SELECT pid, private_name, promo_etude_xorg, promo_sortie_xorg, promo_etude_ax, promo
538 FROM fusionax_promo
539 WHERE promo_etude_ax + 1 = promo_etude_xorg AND promo_etude_xorg + 3 = promo_sortie_xorg AND groupe_promo = 'X'
540 ORDER BY promo_etude_xorg");
541 $nbMissmatchingPromos += $res->total();
542 $page->assign('nbMissmatchingPromos2', $res->total());
543 $page->assign('missmatchingPromos2', $res);
544
545 $res = XDB::iterator("SELECT pid, private_name, promo_etude_xorg, promo_sortie_xorg, promo_etude_ax, promo
546 FROM fusionax_promo
547 WHERE promo_etude_ax + 1 = promo_etude_xorg AND promo_etude_xorg + 4 = promo_sortie_xorg AND groupe_promo = 'X'
548 ORDER BY promo_etude_xorg");
549 $nbMissmatchingPromos += $res->total();
550 $page->assign('nbMissmatchingPromos3', $res->total());
551 $page->assign('missmatchingPromos3', $res);
552
553 $res = XDB::iterator("SELECT pid, private_name, promo_etude_xorg, promo_sortie_xorg, promo_etude_ax, promo
554 FROM fusionax_promo
555 WHERE groupe_promo = 'M'
556 ORDER BY promo_etude_xorg");
557 $nbMissmatchingPromos += $res->total();
558 $page->assign('nbMissmatchingPromosM', $res->total());
559 $page->assign('missmatchingPromosM', $res);
560
561
562 $res = XDB::iterator("SELECT pid, private_name, promo_etude_xorg, promo_sortie_xorg, promo_etude_ax, promo
563 FROM fusionax_promo
564 WHERE groupe_promo = 'D'
565 ORDER BY promo_etude_xorg");
566 $nbMissmatchingPromos += $res->total();
567 $page->assign('nbMissmatchingPromosD', $res->total());
568 $page->assign('missmatchingPromosD', $res);
569
570 $page->assign('nbMissmatchingPromosTotal', $nbMissmatchingPromos);
571 }
572
573 private function format($string)
574 {
575 return preg_replace('/(\s+|\-)/', '', $string);
576 }
577
578 private function retrieve_firstnames()
579 {
580 $res = XDB::rawFetchAllAssoc('SELECT p.pid, p.ax_id, p.hrpid,
581 f.prenom, ppn.firstname_initial, ppn.firstname_main, ppn.firstname_ordinary
582 FROM fusionax_anciens AS f
583 INNER JOIN profiles AS p ON (f.ax_id = p.ax_id)
584 INNER JOIN profile_public_names AS ppn ON (p.pid = ppn.pid)
585 WHERE f.prenom NOT IN (ppn.firstname_initial, ppn.firstname_main, ppn.firstname_ordinary)');
586
587 $issues = array();
588 foreach ($res as $item) {
589 if (!($item['firstname_ordinary'] != '' || $item['firstname_main'] != $item['firstname_initial'])) {
590 $ax = $this->format(mb_strtolower(replace_accent($item['prenom'])));
591 $xorg = $this->format(mb_strtolower(replace_accent($item['firstname_main'])));
592 if ($ax != $xorg) {
593 $issues[] = $item;
594 }
595 }
596 }
597
598 return $issues;
599 }
600
601 function handler_names($page, $action = '', $csv = false)
602 {
603 $page->changeTpl('fusionax/names.tpl');
604
605 if ($action == 'first') {
606 $res = $this->retrieve_firstnames();
607 if ($csv) {
608 pl_cached_content_headers('text/x-csv', 'utf-8', 1, 'firstnames.csv');
609
610 $csv = fopen('php://output', 'w');
611 fputcsv($csv, array('pid', 'ax_id', 'hrpid', 'AX', 'initial', 'principal', 'ordinaire'), ';');
612 foreach ($res as $item) {
613 fputcsv($csv, $item, ';');
614 }
615 fclose($csv);
616 exit();
617 } else {
618 $page->assign('firstnameIssues', $res);
619 }
620 } elseif ($action == 'last' || $action == 'last3' || $action == 'last2' || $action == 'last1') {
621 $ax_patro = "(IF(f.partic_patro, CONCAT(f.partic_patro, CONCAT(' ', f.Nom_patronymique)), f.Nom_patronymique) NOT IN (ppn.lastname_initial, ppn.lastname_main, ppn.lastname_marital, ppn.lastname_ordinary))";
622 $ax_ordinary = "(IF(f.partic_nom, CONCAT(f.partic_nom, CONCAT(' ', f.Nom_usuel)), f.Nom_usuel) NOT IN (ppn.lastname_initial, ppn.lastname_main, ppn.lastname_marital, ppn.lastname_ordinary))";
623 $ax_full = "(f.Nom_complet NOT IN (ppn.lastname_initial, ppn.lastname_main, ppn.lastname_marital, ppn.lastname_ordinary))";
624
625 switch ($action) {
626 case 'last':
627 $where = $ax_patro . ' OR ' . $ax_ordinary . ' OR ' . $ax_full;
628 break;
629 case 'last3':
630 $where = $ax_patro . ' AND ' . $ax_ordinary . ' AND ' . $ax_full;
631 break;
632 case 'last2':
633 $where = '(' . $ax_patro . ' AND ' . $ax_ordinary . ' AND NOT ' . $ax_full . ') OR ('
634 . $ax_patro . ' AND NOT ' . $ax_ordinary . ' AND ' . $ax_full . ') OR ('
635 . 'NOT ' . $ax_patro . ' AND ' . $ax_ordinary . ' AND ' . $ax_full . ')';
636 break;
637 case 'last1':
638 $where = '(' . $ax_patro . ' AND NOT ' . $ax_ordinary . ' AND NOT ' . $ax_full . ') OR ('
639 . 'NOT ' . $ax_patro . ' AND NOT ' . $ax_ordinary . ' AND ' . $ax_full . ') OR ('
640 . 'NOT ' . $ax_patro . ' AND ' . $ax_ordinary . ' AND NOT ' . $ax_full . ')';
641 break;
642 }
643
644 $res = XDB::rawFetchAllAssoc('SELECT p.pid, p.ax_id, p.hrpid,
645 f.Nom_patronymique, f.Nom_usuel, f.Nom_complet,
646 ppn.lastname_initial, ppn.lastname_main, ppn.lastname_marital, ppn.lastname_ordinary
647 FROM fusionax_anciens AS f
648 INNER JOIN profiles AS p ON (f.ax_id = p.ax_id)
649 INNER JOIN profile_public_names AS ppn ON (p.pid = ppn.pid)
650 WHERE ' . $where);
651
652 if ($csv) {
653 function format($string)
654 {
655 $string = preg_replace('/\-/', ' ', $string);
656 return preg_replace('/\s+/', ' ', $string);
657 }
658
659
660 pl_cached_content_headers('text/x-csv', 'utf-8', 1, 'lastnames.csv');
661
662 $csv = fopen('php://output', 'w');
663 fputcsv($csv, array('pid', 'ax_id', 'hrpid', 'AX patro', 'AX usuel', 'AX complet', 'initial', 'principal', 'marital', 'ordinaire'), ';');
664 foreach ($res as $item) {
665 $ax = array(
666 'Nom_patronymique' => format(mb_strtolower(replace_accent($item['Nom_patronymique']))),
667 'Nom_usuel' => format(mb_strtolower(replace_accent($item['Nom_usuel']))),
668 'Nom_complet' => format(mb_strtolower(replace_accent($item['Nom_complet'])))
669 );
670 $xorg = array(
671 'lastname_initial' => format(mb_strtolower(replace_accent($item['lastname_initial']))),
672 'lastname_main' => format(mb_strtolower(replace_accent($item['lastname_main']))),
673 'lastname_ordinary' => format(mb_strtolower(replace_accent($item['lastname_ordinary'])))
674 );
675
676 if (!in_array($ax['Nom_patronymique'], $xorg) || !in_array($ax['Nom_usuel'], $xorg) || !in_array($ax['Nom_complet'], $xorg)) {
677 fputcsv($csv, $item, ';');
678 }
679 }
680 fclose($csv);
681 exit();
682 } else {
683 $page->assign('lastnameIssues', $res);
684 $page->assign('total', count($res));
685 $page->assign('issuesTypes', array(
686 'last' => "1, 2 ou 3 noms de l'AX manquant",
687 'last1' => "1 nom de l'AX manquant",
688 'last2' => "2 noms de l'AX manquant",
689 'last3' => "3 noms de l'AX manquant"
690 ));
691 }
692 } else {
693 $res = XDB::query('SELECT COUNT(*)
694 FROM fusionax_anciens AS f
695 INNER JOIN profiles AS p ON (f.ax_id = p.ax_id)');
696 $page->assign('total', $res->fetchOneCell());
697
698 $res = XDB::rawFetchOneCell("SELECT COUNT(*)
699 FROM fusionax_anciens AS f
700 INNER JOIN profiles AS p ON (f.ax_id = p.ax_id)
701 INNER JOIN profile_public_names AS ppn ON (p.pid = ppn.pid)
702 WHERE IF(f.partic_patro, CONCAT(f.partic_patro, CONCAT(' ', f.Nom_patronymique)), f.Nom_patronymique) NOT IN (ppn.lastname_initial, ppn.lastname_main, ppn.lastname_marital, ppn.lastname_ordinary)
703 OR IF(f.partic_nom, CONCAT(f.partic_nom, CONCAT(' ', f.Nom_usuel)), f.Nom_usuel) NOT IN (ppn.lastname_initial, ppn.lastname_main, ppn.lastname_marital, ppn.lastname_ordinary)
704 OR f.Nom_complet NOT IN (ppn.lastname_initial, ppn.lastname_main, ppn.lastname_marital, ppn.lastname_ordinary)");
705 $page->assign('lastnameIssues', $res);
706
707 $res = XDB::rawFetchOneCell('SELECT COUNT(*)
708 FROM fusionax_anciens AS f
709 INNER JOIN profiles AS p ON (f.ax_id = p.ax_id)
710 INNER JOIN profile_public_names AS ppn ON (p.pid = ppn.pid)
711 WHERE f.prenom NOT IN (ppn.firstname_initial, ppn.firstname_main, ppn.firstname_ordinary)');
712 $page->assign('firstnameIssues', count($this->retrieve_firstnames()));
713 }
714 $page->assign('action', $action);
715 }
716
717 function handler_edu($page, $action = '')
718 {
719 $page->changeTpl('fusionax/education.tpl');
720
721 $missingEducation = XDB::rawIterator("SELECT DISTINCT(f.Intitule_formation)
722 FROM fusionax_formations AS f
723 WHERE f.Intitule_formation != '' AND NOT EXISTS (SELECT *
724 FROM profile_education_enum AS e
725 WHERE f.Intitule_formation = e.name)");
726 $missingDegree = XDB::rawIterator("SELECT DISTINCT(f.Intitule_diplome)
727 FROM fusionax_formations AS f
728 WHERE f.Intitule_diplome != '' AND NOT EXISTS (SELECT *
729 FROM profile_education_degree_enum AS e
730 WHERE f.Intitule_diplome = e.abbreviation)");
731 $missingCouple = XDB::rawIterator("SELECT DISTINCT(f.Intitule_formation) AS edu, f.Intitule_diplome AS degree, ee.id AS eduid, de.id AS degreeid
732 FROM fusionax_formations AS f
733 INNER JOIN profile_education_enum AS ee ON (f.Intitule_formation = ee.name)
734 INNER JOIN profile_education_degree_enum AS de ON (f.Intitule_diplome = de.abbreviation)
735 WHERE f.Intitule_diplome != '' AND f.Intitule_formation != ''
736 AND NOT EXISTS (SELECT *
737 FROM profile_education_degree AS d
738 WHERE ee.id = d.eduid AND de.id = d.degreeid)");
739
740 $page->assign('missingEducation', $missingEducation);
741 $page->assign('missingDegree', $missingDegree);
742 $page->assign('missingCouple', $missingCouple);
743 $page->assign('missingEducationCount', $missingEducation->total());
744 $page->assign('missingDegreeCount', $missingDegree->total());
745 $page->assign('missingCoupleCount', $missingCouple->total());
746 }
747
748 function handler_corps($page)
749 {
750 $page->changeTpl('fusionax/corps.tpl');
751
752 $missingCorps = XDB::rawIterator('SELECT DISTINCT(f.corps_sortie) AS name
753 FROM fusionax_anciens AS f
754 WHERE NOT EXISTS (SELECT *
755 FROM profile_corps_enum AS c
756 WHERE f.corps_sortie = c.abbreviation)');
757 $missingGrade = XDB::rawIterator('SELECT DISTINCT(f.grade) AS name
758 FROM fusionax_anciens AS f
759 WHERE NOT EXISTS (SELECT *
760 FROM profile_corps_rank_enum AS c
761 WHERE f.grade = c.name)');
762
763 $page->assign('missingCorps', $missingCorps);
764 $page->assign('missingGrade', $missingGrade);
765 $page->assign('missingCorpsCount', $missingCorps->total());
766 $page->assign('missingGradeCount', $missingGrade->total());
767 }
768
769 function handler_issues_deathdate($page, $action = '')
770 {
771 $page->changeTpl('fusionax/deathdate_issues.tpl');
772 if ($action == 'edit') {
773 S::assert_xsrf_token();
774
775 $issues = XDB::rawIterRow('SELECT p.pid, pd.directory_name, pd.promo, pm.deathdate_ax, p.deathdate
776 FROM profile_merge_issues AS pm
777 INNER JOIN profiles AS p ON (pm.pid = p.pid)
778 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)
779 WHERE FIND_IN_SET(\'deathdate\', pm.issues)
780 ORDER BY pd.directory_name');
781 while (list($pid, $name, $promo, $deathAX, $deathXorg) = $issues->next()) {
782 $choiceAX = Post::has('AX_' . $pid);
783 $choiceXorg = Post::has('XORG_' . $pid);
784 if (!($choiceAX || $choiceXorg)) {
785 continue;
786 }
787
788 if ($choiceAX) {
789 XDB::execute('UPDATE profiles AS p
790 INNER JOIN profile_merge_issues AS pm ON (pm.pid = p.pid)
791 SET p.deathdate = pm.deathdate_ax, p.deathdate_rec = NOW()
792 WHERE p.pid = {?}', $pid);
793 }
794 XDB::execute("UPDATE profile_merge_issues
795 SET issues = REPLACE(issues, 'deathdate', '')
796 WHERE pid = {?}", $pid());
797 $page->trigSuccess("La date de décès de $name ($promo) a bien été corrigée.");
798 }
799 }
800
801 $issues = XDB::rawFetchAllAssoc('SELECT p.pid, p.hrpid, pd.directory_name, pd.promo, pm.deathdate_ax, p.deathdate
802 FROM profile_merge_issues AS pm
803 INNER JOIN profiles AS p ON (pm.pid = p.pid)
804 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)
805 WHERE FIND_IN_SET(\'deathdate\', pm.issues)
806 ORDER BY pd.directory_name');
807 $page->assign('issues', $issues);
808 $page->assign('total', count($issues));
809 }
810
811 function handler_issues_promo($page, $action = '')
812 {
813 $page->changeTpl('fusionax/promo_issues.tpl');
814 if ($action == 'edit') {
815 S::assert_xsrf_token();
816
817 $issues = XDB::rawIterRow('SELECT p.pid, pd.directory_name, pd.promo, pm.entry_year_ax, pe.entry_year, pe.grad_year
818 FROM profile_merge_issues AS pm
819 INNER JOIN profiles AS p ON (pm.pid = p.pid)
820 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)
821 INNER JOIN profile_education AS pe ON (pe.pid = p.pid AND FIND_IN_SET(\'primary\', pe.flags))
822 WHERE FIND_IN_SET(\'promo\', pm.issues)
823 ORDER BY pd.directory_name');
824 while (list($pid, $name, $promo, $deathAX, $deathXorgEntry, $deathXorgGrad) = $issues->next()) {
825 $choiceXorg = Post::has('XORG_' . $pid);
826 if (!(Post::has('display_' . $pid) && Post::has('entry_' . $pid) && Post::has('grad_' . $pid))) {
827 continue;
828 }
829
830 $display = Post::i('display_' . $pid);
831 $entry = Post::i('entry_' . $pid);
832 $grad = Post::i('grad_' . $pid);
833 if (!(($grad <= $entry + 5 && $grad >= $entry + 3) && ($display >= $entry && $display <= $grad - 3))) {
834 $page->trigError("La promotion de $name n'a pas été corrigée.");
835 continue;
836 }
837 XDB::execute('UPDATE profile_display
838 SET promo = {?}
839 WHERE pid = {?}', 'X' . $display, $pid);
840 XDB::execute('UPDATE profile_education
841 SET entry_year = {?}, grad_year = {?}
842 WHERE pid = {?} AND FIND_IN_SET(\'primary\', flags)', $entry, $grad, $pid);
843 $page->trigSuccess("La promotion de $name a bien été corrigée.");
844 }
845 }
846
847 $issues = XDB::rawFetchAllAssoc('SELECT p.pid, p.hrpid, pd.directory_name, pd.promo, pm.entry_year_ax, pe.entry_year, pe.grad_year
848 FROM profile_merge_issues AS pm
849 INNER JOIN profiles AS p ON (pm.pid = p.pid)
850 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)
851 INNER JOIN profile_education AS pe ON (pe.pid = p.pid AND FIND_IN_SET(\'primary\', pe.flags))
852 WHERE FIND_IN_SET(\'promo\', pm.issues)
853 ORDER BY pd.directory_name');
854 $page->assign('issues', $issues);
855 $page->assign('total', count($issues));
856 }
857
858 function handler_issues($page, $action = '')
859 {
860 static $issueList = array(
861 'name' => 'noms',
862 'phone' => 'téléphones',
863 'education' => 'formations',
864 'address' => 'adresses',
865 'job' => 'emplois'
866 );
867 static $typeList = array(
868 'name' => 'general',
869 'phone' => 'general',
870 'education' => 'general',
871 'address' => 'adresses',
872 'job' => 'emploi'
873 );
874
875 if (!array_key_exists($action, $issueList)) {
876 pl_redirect('fusionax');
877 } else {
878 $total = XDB::fetchOneCell('SELECT COUNT(*)
879 FROM profile_merge_issues
880 WHERE FIND_IN_SET({?}, issues)', $action);
881 if ($total == 0) {
882 pl_redirect('fusionax');
883 }
884
885 $issues = XDB::fetchAllAssoc('SELECT p.hrpid, pd.directory_name, pd.promo
886 FROM profile_merge_issues AS pm
887 INNER JOIN profiles AS p ON (pm.pid = p.pid)
888 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)
889 WHERE FIND_IN_SET({?}, pm.issues)
890 ORDER BY pd.directory_name
891 LIMIT 100', $action);
892
893 $page->changeTpl('fusionax/other_issues.tpl');
894 $page->assign('issues', $issues);
895 $page->assign('issue', $issueList[$action]);
896 $page->assign('type', $typeList[$action]);
897 $page->assign('total', $total);
898 }
899 }
900 }
901
902 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker fenc=utf-8:
903 ?>