Modes merge related updates.
[platal.git] / modules / fusionax.php
CommitLineData
b9ad0878
PC
1<?php
2/***************************************************************************
12262f13 3 * Copyright (C) 2003-2011 Polytechnique.org *
b9ad0878
PC
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
c15c0053 22/**
ddc4c642
SJ
23 * Module to merge data from AX database: this will only be used once on
24 * production site and should be removed afterwards.
c15c0053
PC
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 *
ddc4c642 30 * Datas are stored in an export file.
c15c0053 31 */
73be4434
SJ
32class FusionAxModule extends PLModule
33{
b9ad0878
PC
34 function handlers()
35 {
654caec5 36 if (Platal::globals()->merge->state == 'pending') {
12419b5b 37 return array(
bfe9f4c7
SJ
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')
12419b5b 47 );
654caec5 48 } elseif (Platal::globals()->merge->state == 'done') {
12419b5b 49 return array(
bfe9f4c7
SJ
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'),
12419b5b 54 );
654caec5 55 }
b9ad0878 56 }
c15c0053
PC
57
58
26ba053e 59 function handler_index($page)
b9ad0878 60 {
654caec5
SJ
61 if (Platal::globals()->merge->state == 'pending') {
62 $page->changeTpl('fusionax/index.tpl');
63 } elseif (Platal::globals()->merge->state == 'done') {
12419b5b
SJ
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 );
654caec5
SJ
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 != ''");
654caec5 83 $page->changeTpl('fusionax/issues.tpl');
12419b5b
SJ
84 $page->assign('issues', $issues);
85 $page->assign('issueList', $issueList);
654caec5 86 }
b9ad0878 87 }
22f043e4 88
73be4434 89 /** Import de l'annuaire de l'AX depuis l'export situé dans le home de jacou */
26ba053e 90 function handler_import($page, $action = 'index', $file = '')
b9ad0878
PC
91 {
92 if ($action == 'index') {
93 $page->changeTpl('fusionax/import.tpl');
b9ad0878
PC
94 return;
95 }
22f043e4 96
cc8ea8b2 97 // toutes les actions sont faites en ajax en utilisant jquery
ddc4c642 98 header('Content-type: text/javascript; charset=utf-8');
22f043e4 99
cc8ea8b2
PC
100 // log des actions
101 $report = array();
22f043e4 102
73be4434 103 $modulepath = realpath(dirname(__FILE__) . '/fusionax/') . '/';
ddc4c642 104 $spoolpath = realpath(dirname(__FILE__) . '/../spool/fusionax/') . '/';
22f043e4 105
b9ad0878 106 if ($action == 'launch') {
ddc4c642
SJ
107 if ($file == '') {
108 $report[] = 'Nom de fichier non renseigné.';
109 } elseif (!file_exists(dirname(__FILE__) . '/../spool/fusionax/' . $file)) {
110 $report[] = 'Le fichier ne se situe pas au bon endroit.';
111 } else {
112 // séparation de l'archive en fichiers par tables
113 $file = $spoolpath . $file;
ddc4c642
SJ
114 // Split export into specialised files
115 exec('grep "^AD" ' . $file . ' > ' . $spoolpath . 'Adresses.txt');
116 exec('grep "^AN" ' . $file . ' > ' . $spoolpath . 'Anciens.txt');
0efb08e6
SJ
117 exec('grep "^FO.[0-9]\{4\}[MD][0-9]\{3\}.Etudiant" ' . $file . ' > ' . $spoolpath . 'Formations_MD.txt');
118 exec('grep "^FO.[0-9]\{4\}[MD][0-9]\{3\}.Doct. de" ' . $file . ' >> ' . $spoolpath . 'Formations_MD.txt');
ddc4c642
SJ
119 exec('grep "^FO" ' . $file . ' > ' . $spoolpath . 'Formations.txt');
120 exec('grep "^AC" ' . $file . ' > ' . $spoolpath . 'Activites.txt');
121 exec('grep "^EN" ' . $file . ' > ' . $spoolpath . 'Entreprises.txt');
122 exec($modulepath . 'formation.pl');
123 exec('mv -f ' . $spoolpath . 'Formations_out.txt ' . $spoolpath . 'Formations.txt');
0efb08e6 124 exec('mv -f ' . $spoolpath . 'Formations_MD_out.txt ' . $spoolpath . 'Formations_MD.txt');
ddc4c642
SJ
125 $report[] = 'Fichier parsé.';
126 $report[] = 'Import dans la base en cours...';
127 $next = 'integrateSQL';
9a2876cb
SJ
128 XDB::execute("UPDATE profiles
129 SET ax_id = NULL
130 WHERE ax_id = ''");
ddc4c642 131 }
73be4434 132 } elseif ($action == 'integrateSQL') {
cc8ea8b2
PC
133 // intégration des données dans la base MySQL
134 // liste des fichiers sql à exécuter
135 $filesSQL = array(
ddc4c642
SJ
136 0 => 'Activites.sql',
137 1 => 'Adresses.sql',
138 2 => 'Anciens.sql',
139 3 => 'Formations.sql',
0efb08e6
SJ
140 4 => 'Entreprises.sql',
141 5 => 'Formations_MD.sql'
ddc4c642
SJ
142 );
143 if ($file != '') {
cc8ea8b2 144 // récupère le contenu du fichier sql
ddc4c642 145 $queries = explode(';', file_get_contents($modulepath . $filesSQL[$file]));
73be4434
SJ
146 foreach ($queries as $q) {
147 if (trim($q)) {
148 // coupe le fichier en requêtes individuelles
149 if (substr($q, 0, 2) == '--') {
150 // affiche les commentaires dans le report
151 $lines = explode("\n", $q);
152 $l = $lines[0];
153 $report[] = addslashes($l);
154 }
155 // exécute la requête
ddc4c642 156 XDB::execute(str_replace('{?}', $spoolpath, $q));
b9ad0878 157 }
b9ad0878 158 }
cc8ea8b2 159 // trouve le prochain fichier à exécuter
ddc4c642 160 $nextfile = $file + 1;
b9ad0878
PC
161 } else {
162 $nextfile = 0;
163 }
0efb08e6 164 if ($nextfile > 5) {
ddc4c642
SJ
165 // tous les fichiers ont été exécutés, on passe à l'étape suivante
166 $next = 'adds1920';
b9ad0878 167 } else {
cc8ea8b2 168 // on passe au fichier suivant
ddc4c642
SJ
169 $next = 'integrateSQL/' . $nextfile;
170 }
171 } elseif ($action == 'adds1920') {
172 // Adds promotion 1920 from AX db.
173 $report[] = 'Ajout de la promotion 1920';
174 $res = XDB::iterator('SELECT prenom, Nom_complet, ax_id
175 FROM fusionax_anciens
176 WHERE promotion_etude = 1920;');
177
ddc4c642
SJ
178 $eduSchools = DirEnum::getOptions(DirEnum::EDUSCHOOLS);
179 $eduSchools = array_flip($eduSchools);
180 $eduDegrees = DirEnum::getOptions(DirEnum::EDUDEGREES);
181 $eduDegrees = array_flip($eduDegrees);
182 $degreeid = $eduDegrees[Profile::DEGREE_X];
183 $entry_year = 1920;
184 $grad_year = 1923;
185 $promo = 'X1920';
186 $sex = PlUser::GENDER_MALE;
187 $xorgId = 19200000;
188 $type = 'x';
189
190 while (list($firstname, $lastname, $ax_id) = $res->next()) {
191 $hrid = self::getHrid($firstname, $lastname, $promo);
192 $res1 = XDB::query('SELECT COUNT(*)
193 FROM accounts
194 WHERE hruid = {?}', $hrid);
195 $res2 = XDB::query('SELECT COUNT(*)
196 FROM profiles
197 WHERE hrpid = {?}', $hrid);
198 if (is_null($hrid) || $res1->fetchOneCell() > 0 || $res2->fetchOneCell() > 0) {
199 $report[] = $ax_id . ' non ajouté';
200 }
201 $fullName = $firstname . ' ' . $lastname;
202 $directoryName = $lastname . ' ' . $firstname;
203 ++$xorgId;
204
00ba8a74
SJ
205 XDB::execute('INSERT INTO profiles (hrpid, xorg_id, ax_id, sex)
206 VALUES ({?}, {?}, {?}, {?})',
ddc4c642
SJ
207 $hrid, $xorgId, $ax_id, $sex);
208 $pid = XDB::insertId();
4caad881 209 XDB::execute('INSERT INTO profile_public_names (pid, lastname_initial, firstname_initial)
00ba8a74 210 VALUES ({?}, {?}, {?})',
4caad881 211 $pid, $lastname, $firstname);
00ba8a74
SJ
212 XDB::execute('INSERT INTO profile_display (pid, yourself, public_name, private_name,
213 directory_name, short_name, sort_name, promo)
214 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})',
ddc4c642 215 $pid, $firstname, $fullName, $fullName, $directoryName, $fullName, $directoryName, $promo);
00ba8a74
SJ
216 XDB::execute('INSERT INTO profile_education (pid, eduid, degreeid, entry_year, grad_year, flags)
217 VALUES ({?}, {?}, {?}, {?}, {?}, {?})',
ddc4c642 218 $pid, $eduSchools[Profile::EDU_X], $degreeid, $entry_year, $grad_year, 'primary');
ad1c9939
SJ
219 XDB::execute('INSERT INTO accounts (hruid, type, is_admin, state, full_name, directory_name, display_name, lastname, firstname, sex)
220 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})',
221 $hrid, $type, 0, 'active', $fullName, $directoryName, $firstname, $lastname, $firstname, $sex);
ddc4c642 222 $uid = XDB::insertId();
00ba8a74
SJ
223 XDB::execute('INSERT INTO account_profiles (uid, pid, perms)
224 VALUES ({?}, {?}, {?})',
ddc4c642 225 $uid, $pid, 'owner');
b9ad0878 226 }
ddc4c642
SJ
227 $report[] = 'Promo 1920 ajoutée.';
228 $next = 'view';
229 } elseif ($action == 'view') {
230 XDB::execute('CREATE OR REPLACE ALGORITHM=MERGE VIEW fusionax_xorg_anciens AS
231 SELECT p.pid, p.ax_id, pd.promo, pd.private_name, pd.public_name,
232 pd.sort_name, pd.short_name, pd.directory_name
233 FROM profiles AS p
ad1c9939 234 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)');
ddc4c642 235 $next = 'clean';
73be4434 236 } elseif ($action == 'clean') {
cc8ea8b2 237 // nettoyage du fichier temporaire
0efb08e6 238 //exec('rm -Rf ' . $spoolpath);
ddc4c642 239 $report[] = 'Import finit.';
b9ad0878 240 }
73be4434 241 foreach($report as $t) {
cc8ea8b2 242 // affiche les lignes de report
ddc4c642 243 echo "$('#fusionax').append('" . $t . "<br/>');\n";
73be4434 244 }
b9ad0878 245 if (isset($next)) {
cc8ea8b2 246 // lance le prochain script s'il y en a un
ddc4c642 247 echo "$.getScript('fusionax/import/" . $next . "');";
b9ad0878 248 }
cc8ea8b2 249 // exit pour ne pas afficher la page template par défaut
b9ad0878
PC
250 exit;
251 }
22f043e4 252
26ba053e 253 function handler_view($page, $action = '')
29459c49 254 {
29459c49
SJ
255 $page->changeTpl('fusionax/view.tpl');
256 if ($action == 'create') {
257 XDB::execute('DROP VIEW IF EXISTS fusionax_deceased');
723ea674 258 XDB::execute("CREATE VIEW fusionax_deceased AS
ddc4c642
SJ
259 SELECT p.pid, a.ax_id, pd.private_name, pd.promo, p.deathdate AS deces_xorg, a.Date_deces AS deces_ax
260 FROM profiles AS p
261 INNER JOIN profile_display AS pd ON (p.pid = pd.pid)
262 INNER JOIN fusionax_anciens AS a ON (a.ax_id = p.ax_id)
723ea674 263 WHERE p.deathdate != a.Date_deces OR (p.deathdate IS NULL AND a.Date_deces != '0000-00-00')");
29459c49 264 XDB::execute('DROP VIEW IF EXISTS fusionax_promo');
bb375055 265 XDB::execute("CREATE VIEW fusionax_promo AS
9a2876cb 266 SELECT p.pid, p.ax_id, pd.private_name, pd.promo, pe.entry_year AS promo_etude_xorg, f.groupe_promo,
ddc4c642
SJ
267 f.promotion_etude AS promo_etude_ax, pe.grad_year AS promo_sortie_xorg
268 FROM profiles AS p
269 INNER JOIN profile_display AS pd ON (p.pid = pd.pid)
270 INNER JOIN profile_education AS pe ON (p.pid = pe.pid)
271 INNER JOIN fusionax_anciens AS f ON (p.ax_id = f.ax_id)
bb375055
SJ
272 WHERE (f.groupe_promo = 'X' AND pd.promo != CONCAT('X', f.promotion_etude)
273 AND !(f.promotion_etude = pe.entry_year + 1 AND pe.grad_year = pe.entry_year + 4))
274 OR (f.groupe_promo = 'D' AND f.promotion_etude != pe.grad_year)
275 OR (f.groupe_promo = 'M' AND f.promotion_etude != pe.entry_year)
276 GROUP BY p.pid");
ddc4c642 277 $page->trigSuccess('Les VIEW ont bien été créées.');
29459c49
SJ
278 }
279 }
280
281 /* Mets à NULL le matricule_ax de ces camarades pour marquer le fait qu'ils ne figurent pas dans l'annuaire de l'AX */
ddc4c642 282 private static function clear_wrong_in_xorg($pid)
29459c49 283 {
ddc4c642
SJ
284 $res = XDB::execute('UPDATE fusionax_xorg_anciens
285 SET ax_id = NULL
286 WHERE pid = {?}', $pid);
29459c49
SJ
287 if (!$res) {
288 return 0;
289 }
290 return XDB::affectedRows() / 2;
291 }
292
aab2ffdd 293 /* Cherche les les anciens présents dans Xorg avec un matricule_ax ne correspondant à rien dans la base de l'AX
9a2876cb 294 * (mises à part les promo 1921, 1922, 1923, 1924, 1925, 1927 qui ne figurent pas dans les données de l'AX)*/
29459c49
SJ
295 private static function find_wrong_in_xorg($limit = 10)
296 {
ddc4c642 297 return XDB::iterator('SELECT u.promo, u.pid, u.private_name
29459c49
SJ
298 FROM fusionax_xorg_anciens AS u
299 WHERE NOT EXISTS (SELECT *
300 FROM fusionax_anciens AS f
ddc4c642 301 WHERE f.ax_id = u.ax_id)
9a2876cb 302 AND u.ax_id IS NOT NULL AND promo NOT IN (\'X1921\', \'X1922\', \'X1923\', \'X1924\', \'X1925\', \'X1927\')');
29459c49
SJ
303 }
304
b65beb64
PC
305 /** Lier les identifiants d'un ancien dans les deux annuaires
306 * @param user_id identifiant dans l'annuaire X.org
307 * @param matricule_ax identifiant dans l'annuaire de l'AX
308 * @return 0 si la liaison a échoué, 1 sinon
22f043e4 309 */
ddc4c642 310 private static function link_by_ids($pid, $ax_id)
b9ad0878 311 {
ddc4c642 312 $res = XDB::execute('UPDATE fusionax_import AS i
73be4434 313 INNER JOIN fusionax_xorg_anciens AS u
ddc4c642
SJ
314 SET u.ax_id = i.ax_id,
315 i.pid = u.pid,
73be4434 316 i.date_match_id = NOW()
ddc4c642
SJ
317 WHERE i.ax_id = {?} AND u.pid = {?}
318 AND (u.ax_id != {?} OR u.ax_id IS NULL
319 OR i.pid != {?} OR i.pid IS NULL)',
320 $ax_id, $pid, $ax_id, $pid);
73be4434 321 if (!$res) {
b9ad0878
PC
322 return 0;
323 }
73be4434 324 return XDB::affectedRows() / 2;
b9ad0878 325 }
22f043e4 326
b65beb64
PC
327 /** Recherche automatique d'anciens à lier entre les deux annuaires
328 * @param limit nombre d'anciens à trouver au max
329 * @param sure si true, ne trouve que des anciens qui sont quasi sûrs
e8591429 330 * @return un XOrgDBIterator sur les entrées avec display_name, promo,
ddc4c642 331 * pid, ax_id et display_name_ax
22f043e4 332 */
b65beb64 333 private static function find_easy_to_link($limit = 10, $sure = false)
b9ad0878 334 {
e8591429 335 $easy_to_link = XDB::iterator("
ddc4c642 336 SELECT u.private_name, u.promo, u.pid, ax.ax_id,
ad1c9939 337 CONCAT(ax.prenom, ' ', ax.nom_complet, ' (', ax.groupe_promo, ax.promotion_etude, ')') AS display_name_ax,
73be4434 338 COUNT(*) AS nbMatches
29459c49 339 FROM fusionax_anciens AS ax
ddc4c642
SJ
340 INNER JOIN fusionax_import AS i ON (i.ax_id = ax.ax_id AND i.pid IS NULL)
341 LEFT JOIN fusionax_xorg_anciens AS u ON (u.ax_id IS NULL
ad1c9939 342 AND u.promo = CONCAT(ax.groupe_promo, ax.promotion_etude)
ddc4c642
SJ
343 AND (CONCAT(ax.prenom, ' ', ax.nom_complet) = u.private_name
344 OR CONCAT(ax.prenom, ' ', ax.nom_complet) = u.public_name
345 OR CONCAT(ax.prenom, ' ', ax.nom_complet) = u.short_name))
346 GROUP BY u.pid
347 HAVING u.pid IS NOT NULL AND nbMatches = 1" . ($limit ? (' LIMIT ' . $limit) : ''));
b65beb64
PC
348 if ($easy_to_link->total() > 0 || $sure) {
349 return $easy_to_link;
350 }
73be4434 351 return XDB::iterator("
ddc4c642 352 SELECT u.private_name, u.promo, u.pid, ax.ax_id,
ad1c9939 353 CONCAT(ax.prenom, ' ', ax.nom_complet, ' (', ax.groupe_promo, ax.promotion_etude, ')') AS display_name_ax,
73be4434 354 COUNT(*) AS nbMatches
29459c49 355 FROM fusionax_anciens AS ax
ddc4c642
SJ
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 (CONCAT(ax.prenom, ' ', ax.nom_complet) = u.private_name
359 OR CONCAT(ax.prenom, ' ', ax.nom_complet) = u.public_name
360 OR CONCAT(ax.prenom, ' ', ax.nom_complet) = u.short_name)
ad1c9939
SJ
361 AND u.promo < CONCAT(ax.groupe_promo, ax.promotion_etude + 2)
362 AND u.promo > CONCAT(ax.groupe_promo, ax.promotion_etude - 2))
ddc4c642
SJ
363 GROUP BY u.pid
364 HAVING u.pid IS NOT NULL AND nbMatches = 1" . ($limit ? (' LIMIT ' . $limit) : ''));
b9ad0878 365 }
22f043e4 366
b65beb64 367 /** Module de mise en correspondance les ids */
26ba053e 368 function handler_ids($page, $part = 'main', $pid = null, $ax_id = null)
b9ad0878 369 {
29459c49 370 $nbToLink = 100;
29459c49 371 $page->assign('xorg_title', 'Polytechnique.org - Fusion - Mise en correspondance simple');
ddc4c642 372
73be4434 373 if ($part == 'missingInAX') {
b9ad0878
PC
374 // locate all persons from this database that are not in AX's
375 $page->changeTpl('fusionax/idsMissingInAx.tpl');
ddc4c642 376 $missingInAX = XDB::iterator('SELECT promo, pid, private_name
29459c49 377 FROM fusionax_xorg_anciens
ad1c9939
SJ
378 WHERE ax_id IS NULL
379 ORDER BY promo');
b9ad0878
PC
380 $page->assign('missingInAX', $missingInAX);
381 return;
382 }
73be4434 383 if ($part == 'missingInXorg') {
b9ad0878
PC
384 // locate all persons from AX's database that are not here
385 $page->changeTpl('fusionax/idsMissingInXorg.tpl');
ddc4c642 386 $missingInXorg = XDB::iterator("SELECT CONCAT(a.prenom, ' ', a.Nom_usuel) AS private_name,
ad1c9939 387 CONCAT(a.groupe_promo, a.promotion_etude) AS promo, a.ax_id
73be4434 388 FROM fusionax_import
ddc4c642 389 INNER JOIN fusionax_anciens AS a USING (ax_id)
ad1c9939
SJ
390 WHERE fusionax_import.pid IS NULL
391 ORDER BY promo");
b9ad0878
PC
392 $page->assign('missingInXorg', $missingInXorg);
393 return;
394 }
29459c49
SJ
395 if ($part == 'wrongInXorg') {
396 // locate all persons from Xorg database that have a bad AX id
397 $page->changeTpl('fusionax/idswrongInXorg.tpl');
398 $wrongInXorg = FusionAxModule::find_wrong_in_xorg($nbToLink);
399 $page->assign('wrongInXorg', $wrongInXorg);
400 return;
401 }
402 if ($part == 'cleanwronginxorg') {
403 $linksToDo = FusionAxModule::find_wrong_in_xorg($nbToLink);
404 while ($l = $linksToDo->next()) {
ddc4c642 405 FusionAxModule::clear_wrong_in_xorg($l['pid']);
29459c49
SJ
406 }
407 pl_redirect('fusionax/ids/wrongInXorg');
408 }
409 if ($part == 'lier') {
410 if (Post::has('user_id') && Post::has('matricule_ax')) {
ddc4c642 411 FusionAxModule::link_by_ids(Post::i('pid'), Post::v('ax_id'));
29459c49
SJ
412 }
413 }
73be4434 414 if ($part == 'link') {
ddc4c642 415 FusionAxModule::link_by_ids($pid, $ax_id);
b65beb64 416 exit;
b9ad0878 417 }
73be4434 418 if ($part == 'linknext') {
29459c49 419 $linksToDo = FusionAxModule::find_easy_to_link($nbToLink);
73be4434 420 while ($l = $linksToDo->next()) {
ddc4c642 421 FusionAxModule::link_by_ids($l['pid'], $l['ax_id']);
b9ad0878 422 }
b65beb64 423 pl_redirect('fusionax/ids#autolink');
b9ad0878 424 }
73be4434 425 if ($part == 'linkall') {
b9ad0878 426 $linksToDo = FusionAxModule::find_easy_to_link(0);
73be4434 427 while ($l = $linksToDo->next()) {
ddc4c642 428 FusionAxModule::link_by_ids($l['pid'], $l['ax_id']);
b9ad0878
PC
429 }
430 }
431 {
432 $page->changeTpl('fusionax/ids.tpl');
73be4434 433 $missingInAX = XDB::query('SELECT COUNT(*)
ddc4c642
SJ
434 FROM fusionax_xorg_anciens
435 WHERE ax_id IS NULL');
73be4434 436 if ($missingInAX) {
b9ad0878
PC
437 $page->assign('nbMissingInAX', $missingInAX->fetchOneCell());
438 }
73be4434 439 $missingInXorg = XDB::query('SELECT COUNT(*)
ddc4c642
SJ
440 FROM fusionax_import
441 WHERE pid IS NULL');
73be4434
SJ
442 if ($missingInXorg) {
443 $page->assign('nbMissingInXorg', $missingInXorg->fetchOneCell());
b9ad0878 444 }
29459c49
SJ
445 $wrongInXorg = FusionAxModule::find_wrong_in_xorg($nbToLink);
446 if ($wrongInXorg->total() > 0) {
447 $page->assign('wrongInXorg', $wrongInXorg->total());
448 }
449 $easyToLink = FusionAxModule::find_easy_to_link($nbToLink);
450 if ($easyToLink->total() > 0) {
451 $page->assign('nbMatch', $easyToLink->total());
b9ad0878
PC
452 $page->assign('easyToLink', $easyToLink);
453 }
454 }
455 }
22f043e4 456
26ba053e 457 function handler_deceased($page, $action = '')
b9ad0878 458 {
29459c49
SJ
459 if ($action == 'updateXorg') {
460 XDB::execute('UPDATE fusionax_deceased
461 SET deces_xorg = deces_ax
22648cc5 462 WHERE deces_xorg IS NULL');
29459c49
SJ
463 }
464 if ($action == 'updateAX') {
465 XDB::execute('UPDATE fusionax_deceased
466 SET deces_ax = deces_xorg
467 WHERE deces_ax = "0000-00-00"');
468 }
469 if ($action == 'update') {
ddc4c642 470 if (Post::has('pid') && Post::has('date')) {
29459c49
SJ
471 XDB::execute('UPDATE fusionax_deceased
472 SET deces_ax = {?}, deces_xorg = {?}
ddc4c642
SJ
473 WHERE pid = {?}',
474 Post::v('date'), Post::v('date'), Post::i('pid'));
29459c49
SJ
475 }
476 }
477 $page->changeTpl('fusionax/deceased.tpl');
b9ad0878 478 // deceased
73be4434
SJ
479 $deceasedErrorsSql = XDB::query('SELECT COUNT(*) FROM fusionax_deceased');
480 $page->assign('deceasedErrors', $deceasedErrorsSql->fetchOneCell());
ddc4c642
SJ
481 $res = XDB::iterator('SELECT pid, ax_id, promo, private_name, deces_ax
482 FROM fusionax_deceased
22648cc5 483 WHERE deces_xorg IS NULL
29459c49
SJ
484 LIMIT 10');
485 $page->assign('nbDeceasedMissingInXorg', $res->total());
486 $page->assign('deceasedMissingInXorg', $res);
ddc4c642
SJ
487 $res = XDB::iterator('SELECT pid, ax_id, promo, private_name, deces_xorg
488 FROM fusionax_deceased
489 WHERE deces_ax = "0000-00-00"
29459c49
SJ
490 LIMIT 10');
491 $page->assign('nbDeceasedMissingInAX', $res->total());
492 $page->assign('deceasedMissingInAX', $res);
ddc4c642
SJ
493 $res = XDB::iterator('SELECT pid, ax_id, promo, private_name, deces_xorg, deces_ax
494 FROM fusionax_deceased
495 WHERE deces_xorg != "0000-00-00" AND deces_ax != "0000-00-00"');
29459c49
SJ
496 $page->assign('nbDeceasedDifferent', $res->total());
497 $page->assign('deceasedDifferent', $res);
b9ad0878 498 }
c7eac294 499
26ba053e 500 function handler_promo($page, $action = '')
c7eac294
SJ
501 {
502 $page->changeTpl('fusionax/promo.tpl');
9a2876cb 503 $res = XDB::iterator("SELECT pid, private_name, promo_etude_xorg, promo_sortie_xorg, promo_etude_ax, promo
bb375055 504 FROM usionax_promo
a3f12425
SJ
505 WHERE !(promo_etude_ax + 1 = promo_etude_xorg AND promo_etude_xorg + 3 = promo_sortie_xorg)
506 AND !(promo_etude_ax + 1 = promo_etude_xorg AND promo_etude_xorg + 4 = promo_sortie_xorg)
9a2876cb
SJ
507 AND !(promo_etude_ax = promo_etude_xorg + 1) AND groupe_promo = 'X'
508 ORDER BY promo_etude_xorg");
c7eac294 509 $nbMissmatchingPromos = $res->total();
a3f12425
SJ
510 $page->assign('nbMissmatchingPromos', $res->total());
511 $page->assign('missmatchingPromos', $res);
512
9a2876cb 513 $res = XDB::iterator("SELECT pid, private_name, promo_etude_xorg, promo_sortie_xorg, promo_etude_ax, promo
a3f12425 514 FROM fusionax_promo
9a2876cb
SJ
515 WHERE promo_etude_ax = promo_etude_xorg + 1 AND groupe_promo = 'X'
516 ORDER BY promo_etude_xorg");
a3f12425 517 $nbMissmatchingPromos += $res->total();
c7eac294
SJ
518 $page->assign('nbMissmatchingPromos1', $res->total());
519 $page->assign('missmatchingPromos1', $res);
a3f12425 520
9a2876cb 521 $res = XDB::iterator("SELECT pid, private_name, promo_etude_xorg, promo_sortie_xorg, promo_etude_ax, promo
c7eac294 522 FROM fusionax_promo
9a2876cb
SJ
523 WHERE promo_etude_ax + 1 = promo_etude_xorg AND promo_etude_xorg + 3 = promo_sortie_xorg AND groupe_promo = 'X'
524 ORDER BY promo_etude_xorg");
c7eac294
SJ
525 $nbMissmatchingPromos += $res->total();
526 $page->assign('nbMissmatchingPromos2', $res->total());
527 $page->assign('missmatchingPromos2', $res);
a3f12425 528
9a2876cb 529 $res = XDB::iterator("SELECT pid, private_name, promo_etude_xorg, promo_sortie_xorg, promo_etude_ax, promo
a3f12425 530 FROM fusionax_promo
9a2876cb
SJ
531 WHERE promo_etude_ax + 1 = promo_etude_xorg AND promo_etude_xorg + 4 = promo_sortie_xorg AND groupe_promo = 'X'
532 ORDER BY promo_etude_xorg");
a3f12425
SJ
533 $nbMissmatchingPromos += $res->total();
534 $page->assign('nbMissmatchingPromos3', $res->total());
535 $page->assign('missmatchingPromos3', $res);
536
bb375055
SJ
537 $res = XDB::iterator("SELECT pid, private_name, promo_etude_xorg, promo_sortie_xorg, promo_etude_ax, promo
538 FROM fusionax_promo
539 WHERE groupe_promo = 'M'
540 ORDER BY promo_etude_xorg");
541 $nbMissmatchingPromos += $res->total();
542 $page->assign('nbMissmatchingPromosM', $res->total());
543 $page->assign('missmatchingPromosM', $res);
544
545
546 $res = XDB::iterator("SELECT pid, private_name, promo_etude_xorg, promo_sortie_xorg, promo_etude_ax, promo
547 FROM fusionax_promo
548 WHERE groupe_promo = 'D'
549 ORDER BY promo_etude_xorg");
550 $nbMissmatchingPromos += $res->total();
551 $page->assign('nbMissmatchingPromosD', $res->total());
552 $page->assign('missmatchingPromosD', $res);
553
a3f12425
SJ
554 $page->assign('nbMissmatchingPromosTotal', $nbMissmatchingPromos);
555 }
556
26ba053e 557 function handler_names($page, $action = '')
a3f12425
SJ
558 {
559 $page->changeTpl('fusionax/names.tpl');
560
561 $res = XDB::query('SELECT COUNT(*)
562 FROM fusionax_anciens AS f
563 INNER JOIN profiles AS p ON (f.ax_id = p.ax_id)');
564 $page->assign('total', $res->fetchOneCell());
565
4caad881 566 $res = XDB::rawFetchOneCell("SELECT COUNT(*)
bb375055
SJ
567 FROM fusionax_anciens AS f
568 INNER JOIN profiles AS p ON (f.ax_id = p.ax_id)
569 INNER JOIN profile_public_names AS ppn ON (p.pid = ppn.pid)
570 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)
571 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)
572 OR f.Nom_complet NOT IN (ppn.lastname_initial, ppn.lastname_main, ppn.lastname_marital, ppn.lastname_ordinary)");
573 $page->assign('lastnameIssues', $res);
a3f12425 574
4caad881 575 $res = XDB::rawFetchOneCell('SELECT COUNT(*)
bb375055
SJ
576 FROM fusionax_anciens AS f
577 INNER JOIN profiles AS p ON (f.ax_id = p.ax_id)
578 INNER JOIN profile_public_names AS ppn ON (p.pid = ppn.pid)
579 WHERE f.prenom NOT IN (ppn.firstname_initial, ppn.firstname_main, ppn.firstname_ordinary)');
580 $page->assign('firstnameIssues', $res);
a3f12425 581
c7eac294 582 }
12419b5b 583
26ba053e 584 function handler_edu($page, $action = '')
2fad6caa
SJ
585 {
586 $page->changeTpl('fusionax/education.tpl');
587
95b1a6d8 588 $missingEducation = XDB::rawIterator("SELECT DISTINCT(f.Intitule_formation)
2fad6caa 589 FROM fusionax_formations AS f
95b1a6d8
SJ
590 WHERE f.Intitule_formation != '' AND NOT EXISTS (SELECT *
591 FROM profile_education_enum AS e
592 WHERE f.Intitule_formation = e.name)");
593 $missingDegree = XDB::rawIterator("SELECT DISTINCT(f.Intitule_diplome)
2fad6caa 594 FROM fusionax_formations AS f
95b1a6d8
SJ
595 WHERE f.Intitule_diplome != '' AND NOT EXISTS (SELECT *
596 FROM profile_education_degree_enum AS e
597 WHERE f.Intitule_diplome = e.abbreviation)");
598 $missingCouple = XDB::rawIterator("SELECT DISTINCT(f.Intitule_formation) AS edu, f.Intitule_diplome AS degree, ee.id AS eduid, de.id AS degreeid
2fad6caa 599 FROM fusionax_formations AS f
95b1a6d8
SJ
600 INNER JOIN profile_education_enum AS ee ON (f.Intitule_formation = ee.name)
601 INNER JOIN profile_education_degree_enum AS de ON (f.Intitule_diplome = de.abbreviation)
2fad6caa
SJ
602 WHERE f.Intitule_diplome != '' AND f.Intitule_formation != ''
603 AND NOT EXISTS (SELECT *
604 FROM profile_education_degree AS d
605 WHERE ee.id = d.eduid AND de.id = d.degreeid)");
606
607 $page->assign('missingEducation', $missingEducation);
608 $page->assign('missingDegree', $missingDegree);
609 $page->assign('missingCouple', $missingCouple);
610 $page->assign('missingEducationCount', $missingEducation->total());
611 $page->assign('missingDegreeCount', $missingDegree->total());
612 $page->assign('missingCoupleCount', $missingCouple->total());
613 }
614
26ba053e 615 function handler_corps($page)
551e00c1
SJ
616 {
617 $page->changeTpl('fusionax/corps.tpl');
618
619 $missingCorps = XDB::rawIterator('SELECT DISTINCT(f.corps_sortie) AS name
620 FROM fusionax_anciens AS f
621 WHERE NOT EXISTS (SELECT *
622 FROM profile_corps_enum AS c
623 WHERE f.corps_sortie = c.abbreviation)');
624 $missingGrade = XDB::rawIterator('SELECT DISTINCT(f.grade) AS name
625 FROM fusionax_anciens AS f
626 WHERE NOT EXISTS (SELECT *
627 FROM profile_corps_rank_enum AS c
628 WHERE f.grade = c.name)');
629
630 $page->assign('missingCorps', $missingCorps);
631 $page->assign('missingGrade', $missingGrade);
632 $page->assign('missingCorpsCount', $missingCorps->total());
633 $page->assign('missingGradeCount', $missingGrade->total());
634 }
635
26ba053e 636 function handler_issues_deathdate($page, $action = '')
12419b5b
SJ
637 {
638 $page->changeTpl('fusionax/deathdate_issues.tpl');
639 if ($action == 'edit') {
640 S::assert_xsrf_token();
641
642 $issues = XDB::rawIterRow('SELECT p.pid, pd.directory_name, pd.promo, pm.deathdate_ax, p.deathdate
643 FROM profile_merge_issues AS pm
644 INNER JOIN profiles AS p ON (pm.pid = p.pid)
645 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)
646 WHERE FIND_IN_SET(\'deathdate\', pm.issues)
647 ORDER BY pd.directory_name');
648 while (list($pid, $name, $promo, $deathAX, $deathXorg) = $issues->next()) {
649 $choiceAX = Post::has('AX_' . $pid);
650 $choiceXorg = Post::has('XORG_' . $pid);
651 if (!($choiceAX || $choiceXorg)) {
652 continue;
653 }
654
655 if ($choiceAX) {
656 XDB::execute('UPDATE profiles AS p
657 INNER JOIN profile_merge_issues AS pm ON (pm.pid = p.pid)
658 SET p.deathdate = pm.deathdate_ax, p.deathdate_rec = NOW()
659 WHERE p.pid = {?}', $pid);
660 }
661 XDB::execute("UPDATE profile_merge_issues
662 SET issues = REPLACE(issues, 'deathdate', '')
663 WHERE pid = {?}", $pid());
664 $page->trigSuccess("La date de décès de $name ($promo) a bien été corrigée.");
665 }
666 }
667
668 $issues = XDB::rawFetchAllAssoc('SELECT p.pid, p.hrpid, pd.directory_name, pd.promo, pm.deathdate_ax, p.deathdate
669 FROM profile_merge_issues AS pm
670 INNER JOIN profiles AS p ON (pm.pid = p.pid)
671 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)
672 WHERE FIND_IN_SET(\'deathdate\', pm.issues)
673 ORDER BY pd.directory_name');
674 $page->assign('issues', $issues);
675 $page->assign('total', count($issues));
676 }
677
26ba053e 678 function handler_issues_promo($page, $action = '')
12419b5b
SJ
679 {
680 $page->changeTpl('fusionax/promo_issues.tpl');
681 if ($action == 'edit') {
682 S::assert_xsrf_token();
683
684 $issues = XDB::rawIterRow('SELECT p.pid, pd.directory_name, pd.promo, pm.entry_year_ax, pe.entry_year, pe.grad_year
685 FROM profile_merge_issues AS pm
686 INNER JOIN profiles AS p ON (pm.pid = p.pid)
687 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)
688 INNER JOIN profile_education AS pe ON (pe.pid = p.pid AND FIND_IN_SET(\'primary\', pe.flags))
689 WHERE FIND_IN_SET(\'promo\', pm.issues)
690 ORDER BY pd.directory_name');
691 while (list($pid, $name, $promo, $deathAX, $deathXorgEntry, $deathXorgGrad) = $issues->next()) {
692 $choiceXorg = Post::has('XORG_' . $pid);
693 if (!(Post::has('display_' . $pid) && Post::has('entry_' . $pid) && Post::has('grad_' . $pid))) {
694 continue;
695 }
696
697 $display = Post::i('display_' . $pid);
698 $entry = Post::i('entry_' . $pid);
699 $grad = Post::i('grad_' . $pid);
700 if (!(($grad <= $entry + 5 && $grad >= $entry + 3) && ($display >= $entry && $display <= $grad - 3))) {
701 $page->trigError("La promotion de $name n'a pas été corrigée.");
702 continue;
703 }
704 XDB::execute('UPDATE profile_display
705 SET promo = {?}
706 WHERE pid = {?}', 'X' . $display, $pid);
707 XDB::execute('UPDATE profile_education
708 SET entry_year = {?}, grad_year = {?}
709 WHERE pid = {?} AND FIND_IN_SET(\'primary\', flags)', $entry, $grad, $pid);
710 $page->trigSuccess("La promotion de $name a bien été corrigée.");
711 }
712 }
713
714 $issues = XDB::rawFetchAllAssoc('SELECT p.pid, p.hrpid, pd.directory_name, pd.promo, pm.entry_year_ax, pe.entry_year, pe.grad_year
715 FROM profile_merge_issues AS pm
716 INNER JOIN profiles AS p ON (pm.pid = p.pid)
717 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)
718 INNER JOIN profile_education AS pe ON (pe.pid = p.pid AND FIND_IN_SET(\'primary\', pe.flags))
719 WHERE FIND_IN_SET(\'promo\', pm.issues)
720 ORDER BY pd.directory_name');
721 $page->assign('issues', $issues);
722 $page->assign('total', count($issues));
723 }
724
26ba053e 725 function handler_issues($page, $action = '')
12419b5b
SJ
726 {
727 static $issueList = array(
728 'name' => 'noms',
729 'phone' => 'téléphones',
730 'education' => 'formations',
731 'address' => 'adresses',
732 'job' => 'emplois'
733 );
d20f50cf
SJ
734 static $typeList = array(
735 'name' => 'general',
736 'phone' => 'general',
737 'education' => 'general',
738 'address' => 'adresses',
739 'job' => 'emploi'
740 );
12419b5b
SJ
741
742 if (!array_key_exists($action, $issueList)) {
743 pl_redirect('fusionax');
744 } else {
745 $total = XDB::fetchOneCell('SELECT COUNT(*)
746 FROM profile_merge_issues
747 WHERE FIND_IN_SET({?}, issues)', $action);
748 if ($total == 0) {
749 pl_redirect('fusionax');
750 }
751
752 $issues = XDB::fetchAllAssoc('SELECT p.hrpid, pd.directory_name, pd.promo
753 FROM profile_merge_issues AS pm
754 INNER JOIN profiles AS p ON (pm.pid = p.pid)
755 INNER JOIN profile_display AS pd ON (pd.pid = p.pid)
756 WHERE FIND_IN_SET({?}, pm.issues)
757 ORDER BY pd.directory_name
758 LIMIT 100', $action);
759
760 $page->changeTpl('fusionax/other_issues.tpl');
761 $page->assign('issues', $issues);
762 $page->assign('issue', $issueList[$action]);
d20f50cf 763 $page->assign('type', $typeList[$action]);
12419b5b
SJ
764 $page->assign('total', $total);
765 }
766 }
b9ad0878 767}
e8591429 768
a3f12425
SJ
769// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
770?>