Replace %HASH% in the newsletter with $hash/$login.
[platal.git] / modules / email.php
CommitLineData
81b5b746 1<?php
2/***************************************************************************
179afa7f 3 * Copyright (C) 2003-2008 Polytechnique.org *
81b5b746 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
22class EmailModule extends PLModule
23{
81b5b746 24 function handlers()
25 {
26 return array(
27 'emails' => $this->make_hook('emails', AUTH_COOKIE),
28 'emails/alias' => $this->make_hook('alias', AUTH_MDP),
29 'emails/antispam' => $this->make_hook('antispam', AUTH_MDP),
30 'emails/broken' => $this->make_hook('broken', AUTH_COOKIE),
31 'emails/redirect' => $this->make_hook('redirect', AUTH_MDP),
32 'emails/send' => $this->make_hook('send', AUTH_MDP),
62ce6356 33 'emails/antispam/submit' => $this->make_hook('submit', AUTH_COOKIE),
9c0a8f8c 34 'emails/test' => $this->make_hook('test', AUTH_COOKIE, 'user', NO_AUTH),
9e570fe0 35
7727ffc7 36 'admin/emails/duplicated' => $this->make_hook('duplicated', AUTH_MDP, 'admin'),
f141945d 37 'admin/emails/watch' => $this->make_hook('duplicated', AUTH_MDP, 'admin'),
5ff3f06b 38 'admin/emails/lost' => $this->make_hook('lost', AUTH_MDP, 'admin'),
81b5b746 39 );
40 }
41
b7582015 42 function handler_emails(&$page, $action = null, $email = null)
81b5b746 43 {
44 global $globals;
e97e9b8f 45 require_once 'emails.inc.php';
81b5b746 46
47 $page->changeTpl('emails/index.tpl');
48 $page->assign('xorg_title','Polytechnique.org - Mes emails');
49
cab08090 50 $uid = S::v('uid');
81b5b746 51
b7582015 52 if ($action == 'best' && $email) {
81b5b746 53 // bestalias is the first bit : 1
54 // there will be maximum 8 bits in flags : 255
08cce2ff 55 XDB::execute("UPDATE aliases SET flags=flags & (255 - 1) WHERE id={?}", $uid);
56 XDB::execute("UPDATE aliases SET flags=flags | 1 WHERE id={?} AND alias={?}",
b7582015 57 $uid, $email);
81b5b746 58 }
59
a7de4ef7 60 // on regarde si on a affaire à un homonyme
81b5b746 61 $sql = "SELECT alias, (type='a_vie') AS a_vie,
62 (alias REGEXP '\\\\.[0-9]{2}$') AS cent_ans,
63 FIND_IN_SET('bestalias',flags) AS best, expire
64 FROM aliases
65 WHERE id = {?} AND type!='homonyme'
66 ORDER BY LENGTH(alias)";
08cce2ff 67 $page->assign('aliases', XDB::iterator($sql, $uid));
81b5b746 68
e97e9b8f
VZ
69 $homonyme = XDB::query("SELECT alias FROM aliases INNER JOIN homonymes ON (id = homonyme_id) WHERE user_id = {?} AND type = 'homonyme'", $uid);
70 $page->assign('homonyme', $homonyme->fetchOneCell());
e1547442 71
aab4661d 72 // Affichage des redirections de l'utilisateur.
e97e9b8f
VZ
73 $redirect = new Redirect($uid);
74 $page->assign('mails', $redirect->active_emails());
81b5b746 75
76 // on regarde si l'utilisateur a un alias et si oui on l'affiche !
cab08090 77 $forlife = S::v('forlife');
08cce2ff 78 $res = XDB::query(
81b5b746 79 "SELECT alias
80 FROM virtual AS v
81 INNER JOIN virtual_redirect AS vr USING(vid)
eaf30d86 82 WHERE (redirect={?} OR redirect={?})
81b5b746 83 AND alias LIKE '%@{$globals->mail->alias_dom}'",
84 $forlife.'@'.$globals->mail->domain, $forlife.'@'.$globals->mail->domain2);
85 $page->assign('melix', $res->fetchOneCell());
81b5b746 86 }
87
88 function handler_alias(&$page, $action = null, $value = null)
89 {
90 require_once 'validations.inc.php';
91
92 global $globals;
93
94 $page->changeTpl('emails/alias.tpl');
95 $page->assign('xorg_title','Polytechnique.org - Alias melix.net');
96
cab08090 97 $uid = S::v('uid');
98 $forlife = S::v('forlife');
81b5b746 99
100 $page->assign('demande', AliasReq::get_request($uid));
101
a5361008 102 if ($action == 'delete' && $value) {
81b5b746 103 //Suppression d'un alias
08cce2ff 104 XDB::execute(
81b5b746 105 'DELETE virtual, virtual_redirect
106 FROM virtual
107 INNER JOIN virtual_redirect USING (vid)
108 WHERE alias = {?} AND (redirect = {?} OR redirect = {?})', $value,
109 $forlife.'@'.$globals->mail->domain, $forlife.'@'.$globals->mail->domain2);
110 }
111
a7de4ef7 112 //Récupération des alias éventuellement existants
08cce2ff 113 $res = XDB::query(
81b5b746 114 "SELECT alias, emails_alias_pub
115 FROM auth_user_quick, virtual
116 INNER JOIN virtual_redirect USING(vid)
117 WHERE ( redirect={?} OR redirect= {?} )
eaf30d86 118 AND alias LIKE '%@{$globals->mail->alias_dom}' AND user_id = {?}",
81b5b746 119 $forlife.'@'.$globals->mail->domain,
cab08090 120 $forlife.'@'.$globals->mail->domain2, S::v('uid'));
81b5b746 121 list($alias, $visibility) = $res->fetchOneRow();
122 $page->assign('actuel', $alias);
123
124 if ($action == 'ask' && Env::has('alias') and Env::has('raison')) {
125 //Si l'utilisateur vient de faire une damande
126
5e2307dc 127 $alias = Env::v('alias');
128 $raison = Env::v('raison');
129 $public = (Env::v('public', 'off') == 'on')?"public":"private";
81b5b746 130
131 $page->assign('r_alias', $alias);
132 $page->assign('r_raison', $raison);
133 if ($public == 'public') {
134 $page->assign('r_public', true);
135 }
136
a7de4ef7 137 //Quelques vérifications sur l'alias (caractères spéciaux)
81b5b746 138 if (!preg_match( "/^[a-zA-Z0-9\-.]{3,20}$/", $alias)) {
a7de4ef7 139 $page->trig("L'adresse demandée n'est pas valide.
140 Vérifie qu'elle comporte entre 3 et 20 caractères
141 et qu'elle ne contient que des lettres non accentuées,
142 des chiffres ou les caractères - et .");
fd8f77de 143 return;
81b5b746 144 } else {
a7de4ef7 145 //vérifier que l'alias n'est pas déja pris
08cce2ff 146 $res = XDB::query('SELECT COUNT(*) FROM virtual WHERE alias={?}',
81b5b746 147 $alias.'@'.$globals->mail->alias_dom);
148 if ($res->fetchOneCell() > 0) {
a7de4ef7 149 $page->trig("L'alias $alias@{$globals->mail->alias_dom} a déja été attribué.
81b5b746 150 Tu ne peux donc pas l'obtenir.");
fd8f77de 151 return;
81b5b746 152 }
153
a7de4ef7 154 //vérifier que l'alias n'est pas déja en demande
81b5b746 155 $it = new ValidateIterator ();
156 while($req = $it->next()) {
1f07f6c2 157 if ($req->type == "alias" and $req->alias == $alias . '@' . $globals->mail->alias_dom) {
a7de4ef7 158 $page->trig("L'alias $alias@{$globals->mail->alias_dom} a déja été demandé.
81b5b746 159 Tu ne peux donc pas l'obtenir pour l'instant.");
fd8f77de 160 return ;
81b5b746 161 }
162 }
163
a7de4ef7 164 //Insertion de la demande dans la base, écrase les requêtes précédente
81b5b746 165 $myalias = new AliasReq($uid, $alias, $raison, $public);
166 $myalias->submit();
167 $page->assign('success',$alias);
fd8f77de 168 return;
81b5b746 169 }
170 }
171 elseif ($action == 'set'
172 && ($value == 'public' || $value == 'private'))
173 {
174 if ($value == 'public') {
08cce2ff 175 XDB::execute("UPDATE auth_user_quick SET emails_alias_pub = 'public'
cab08090 176 WHERE user_id = {?}", S::v('uid'));
81b5b746 177 } else {
08cce2ff 178 XDB::execute("UPDATE auth_user_quick SET emails_alias_pub = 'private'
cab08090 179 WHERE user_id = {?}", S::v('uid'));
81b5b746 180 }
181
182 $visibility = $value;
183 }
184
185 $page->assign('mail_public', ($visibility == 'public'));
81b5b746 186 }
187
188 function handler_redirect(&$page, $action = null, $email = null)
189 {
190 global $globals;
191
192 require_once 'emails.inc.php';
193
194 $page->changeTpl('emails/redirect.tpl');
195
cab08090 196 $uid = S::v('uid');
197 $forlife = S::v('forlife');
81b5b746 198
3b83212e 199 $page->assign('eleve', S::i('promo') >= date("Y") - 5);
200
cab08090 201 $redirect = new Redirect(S::v('uid'));
81b5b746 202
6d6b65bf 203 // FS#703 : $_GET is urldecoded twice, hence
204 // + (the data) => %2B (in the url) => + (first decoding) => ' ' (second decoding)
205 // Since there can be no spaces in emails, we can fix this with :
206 $email = str_replace(' ', '+', $email);
207
81b5b746 208 if ($action == 'remove' && $email) {
b7582015 209 $retour = $redirect->delete_email($email);
210 $page->assign('retour', $retour);
81b5b746 211 }
e1547442
FB
212
213 if ($action == 'active' && $email) {
214 $redirect->modify_one_email($email, true);
215 }
216
217 if ($action == 'inactive' && $email) {
218 $redirect->modify_one_email($email, false);
219 }
220
221 if ($action == 'rewrite' && $email) {
222 $rewrite = @func_get_arg(3);
223 $redirect->modify_one_email_redirect($email, $rewrite);
224 }
225
81b5b746 226 if (Env::has('emailop')) {
5e2307dc 227 $actifs = Env::v('emails_actifs', Array());
b7582015 228 print_r(Env::v('emails_rewrite'));
5e2307dc 229 if (Env::v('emailop') == "ajouter" && Env::has('email')) {
230 $page->assign('retour', $redirect->add_email(Env::v('email')));
81b5b746 231 } elseif (empty($actifs)) {
232 $page->assign('retour', ERROR_INACTIVE_REDIRECTION);
233 } elseif (is_array($actifs)) {
234 $page->assign('retour', $redirect->modify_email($actifs,
5e2307dc 235 Env::v('emails_rewrite',Array())));
81b5b746 236 }
237 }
238
08cce2ff 239 $res = XDB::query(
81b5b746 240 "SELECT alias
241 FROM virtual
242 INNER JOIN virtual_redirect USING(vid)
243 WHERE (redirect={?} OR redirect={?})
eaf30d86 244 AND alias LIKE '%@{$globals->mail->alias_dom}'",
81b5b746 245 $forlife.'@'.$globals->mail->domain, $forlife.'@'.$globals->mail->domain2);
246 $melix = $res->fetchOneCell();
247 if ($melix) {
248 list($melix) = explode('@', $melix);
249 $page->assign('melix',$melix);
250 }
251
08cce2ff 252 $res = XDB::query(
81b5b746 253 "SELECT alias,expire
254 FROM aliases
255 WHERE id={?} AND (type='a_vie' OR type='alias')
256 ORDER BY !FIND_IN_SET('usage',flags), LENGTH(alias)", $uid);
bb0727ea 257
81b5b746 258 $page->assign('alias', $res->fetchAllAssoc());
259 $page->assign('emails',$redirect->emails);
aab4661d 260
f5c4bf30
VZ
261 require_once 'googleapps.inc.php';
262 $page->assign('googleapps', GoogleAppsAccount::account_status($uid));
81b5b746 263 }
264
b7582015 265 function handler_antispam(&$page, $statut_filtre = null)
81b5b746 266 {
267 require_once 'emails.inc.php';
841cfb97 268 require_once('wiki.inc.php');
269 wiki_require_page('Xorg.Antispam');
81b5b746 270
271 $page->changeTpl('emails/antispam.tpl');
272
cab08090 273 $bogo = new Bogo(S::v('uid'));
b7582015 274 if (isset($statut_filtre)) {
11ed26e5 275 $bogo->change($statut_filtre + 0);
81b5b746 276 }
277 $page->assign('filtre',$bogo->level());
81b5b746 278 }
279
62ce6356 280 function handler_submit(&$page)
281 {
4b9ba601 282 require_once('wiki.inc.php');
283 wiki_require_page('Xorg.Mails');
62ce6356 284 $page->changeTpl('emails/submit_spam.tpl');
285
286 if (Post::has('send_email')) {
15603084 287 $upload = PlUpload::get($_FILES['mail'], S::v('forlife'), 'spam.submit', true);
288 if (!$upload) {
a7de4ef7 289 $page->trig('Une erreur a été rencontrée lors du transfert du fichier');
62ce6356 290 return;
291 }
15603084 292 $mime = $upload->contentType();
62ce6356 293 if ($mime != 'text/x-mail' && $mime != 'message/rfc822') {
15603084 294 $upload->clear();
62ce6356 295 $page->trig('Le fichier ne contient pas un mail complet');
296 return;
297 }
298 global $globals;
299 $box = Post::v('type') . '@' . $globals->mail->domain;
300 $mailer = new PlMailer();
301 $mailer->addTo($box);
302 $mailer->setFrom('"' . S::v('prenom') . ' ' . S::v('nom') . '" <web@' . $globals->mail->domain . '>');
303 $mailer->setTxtBody(Post::v('type') . ' soumis par ' . S::v('forlife') . ' via le web');
15603084 304 $mailer->addUploadAttachment($upload, Post::v('type') . '.mail');
62ce6356 305 $mailer->send();
a7de4ef7 306 $page->trig('Le message a été transmis à ' . $box);
15603084 307 $upload->clear();
62ce6356 308 }
309 }
310
81b5b746 311 function handler_send(&$page)
312 {
313 global $globals;
81b5b746 314 $page->changeTpl('emails/send.tpl');
da419622 315 $page->addJsLink('ajax.js');
81b5b746 316
317 $page->assign('xorg_title','Polytechnique.org - Envoyer un email');
318
319 // action si on recoit un formulaire
3360c04f
FB
320 if (Post::has('save')) {
321 unset($_POST['save']);
322 if (trim(preg_replace('/-- .*/', '', Post::v('contenu'))) != "") {
323 $_POST['to_contacts'] = explode(';', @$_POST['to_contacts']);
324 $_POST['cc_contacts'] = explode(';', @$_POST['cc_contacts']);
325 $data = serialize($_POST);
326 XDB::execute("REPLACE INTO email_send_save
327 VALUES ({?}, {?})", S::i('uid'), $data);
328 }
329 exit;
330 } else if (Env::v('submit') == 'Envoyer') {
91a14f73 331 function getEmails($aliases)
332 {
333 if (!is_array($aliases)) {
334 return null;
335 }
336 $rel = Env::v('contacts');
337 $ret = array();
338 foreach ($aliases as $alias) {
339 $ret[$alias] = $rel[$alias];
340 }
341 return join(', ', $ret);
342 }
343
5e68682e 344 $error = false;
da419622 345 foreach ($_FILES as &$file) {
f3fb8eda 346 if ($file['name'] && !PlUpload::get($file, S::v('forlife'), 'emails.send', false)) {
5e68682e
FB
347 $page->trig(PlUpload::$lastError);
348 $error = true;
349 break;
da419622 350 }
351 }
352
5e68682e
FB
353 if (!$error) {
354 XDB::execute("DELETE FROM email_send_save
355 WHERE uid = {?}", S::i('uid'));
356
357 $to2 = getEmails(Env::v('to_contacts'));
358 $cc2 = getEmails(Env::v('cc_contacts'));
359 $txt = str_replace('^M', '', Env::v('contenu'));
360 $to = Env::v('to');
361 $subj = Env::v('sujet');
362 $from = Env::v('from');
363 $cc = trim(Env::v('cc'));
364 $bcc = trim(Env::v('bcc'));
365
366 if (empty($to) && empty($cc) && empty($to2) && empty($bcc) && empty($cc2)) {
367 $page->trig("Indique au moins un destinataire.");
da419622 368 $page->assign('uploaded_f', PlUpload::listFilenames(S::v('forlife'), 'emails.send'));
5e68682e
FB
369 } else {
370 $mymail = new PlMailer();
371 $mymail->setFrom($from);
372 $mymail->setSubject($subj);
373 if (!empty($to)) { $mymail->addTo($to); }
374 if (!empty($cc)) { $mymail->addCc($cc); }
375 if (!empty($bcc)) { $mymail->addBcc($bcc); }
376 if (!empty($to2)) { $mymail->addTo($to2); }
377 if (!empty($cc2)) { $mymail->addCc($cc2); }
378 $files =& PlUpload::listFiles(S::v('forlife'), 'emails.send');
379 foreach ($files as $name=>&$upload) {
380 $mymail->addUploadAttachment($upload, $name);
381 }
382 if (Env::v('nowiki')) {
383 $mymail->setTxtBody(wordwrap($txt, 78, "\n"));
384 } else {
385 $mymail->setWikiBody($txt);
386 }
387 if ($mymail->send()) {
388 $page->trig("Ton mail a bien été envoyé.");
389 $_REQUEST = array('bcc' => S::v('bestalias').'@'.$globals->mail->domain);
390 PlUpload::clear(S::v('forlife'), 'emails.send');
391 } else {
392 $page->trig("Erreur lors de l'envoi du courriel, réessaye.");
393 $page->assign('uploaded_f', PlUpload::listFilenames(S::v('forlife'), 'emails.send'));
394 }
81b5b746 395 }
396 }
397 } else {
3360c04f
FB
398 $res = XDB::query("SELECT data
399 FROM email_send_save
400 WHERE uid = {?}", S::i('uid'));
401 if ($res->numRows() == 0) {
402 PlUpload::clear(S::v('forlife'), 'emails.send');
403 $_REQUEST['bcc'] = S::v('bestalias').'@'.$globals->mail->domain;
404 } else {
405 $data = unserialize($res->fetchOneCell());
406 $_REQUEST = array_merge($_REQUEST, $data);
407 }
81b5b746 408 }
409
08cce2ff 410 $res = XDB::query(
81b5b746 411 "SELECT u.prenom, u.nom, u.promo, a.alias as forlife
412 FROM auth_user_md5 AS u
413 INNER JOIN contacts AS c ON (u.user_id = c.contact)
414 INNER JOIN aliases AS a ON (u.user_id=a.id AND FIND_IN_SET('bestalias',a.flags))
415 WHERE c.uid = {?}
cab08090 416 ORDER BY u.nom, u.prenom", S::v('uid'));
81b5b746 417 $page->assign('contacts', $res->fetchAllAssoc());
5e68682e 418 $page->assign('maxsize', ini_get('upload_max_filesize') . 'o');
81b5b746 419 }
420
5ff3f06b
FB
421 function handler_test(&$page, $forlife = null)
422 {
423 global $globals;
e4ecada4
VZ
424 require_once 'emails.inc.php';
425
5ff3f06b
FB
426 if (!S::has_perms() || !$forlife) {
427 $forlife = S::v('bestalias');
428 }
e4ecada4
VZ
429
430 $res = XDB::query("SELECT FIND_IN_SET('femme', u.flags), prenom, user_id
5ff3f06b
FB
431 FROM auth_user_md5 AS u
432 INNER JOIN aliases AS a ON (a.id = u.user_id)
433 WHERE a.alias = {?}", $forlife);
e4ecada4
VZ
434 list($sexe, $prenom, $uid) = $res->fetchOneRow();
435 $redirect = new Redirect($uid);
436
437 $mailer = new PlMailer('emails/test.mail.tpl');
438 $mailer->assign('email', $forlife . '@' . $globals->mail->domain);
439 $mailer->assign('redirects', $redirect->active_emails());
5ff3f06b
FB
440 $mailer->assign('sexe', $sexe);
441 $mailer->assign('prenom', $prenom);
442 $mailer->send();
443 exit;
444 }
445
81b5b746 446 function handler_broken(&$page, $warn = null, $email = null)
447 {
448 require_once 'emails.inc.php';
4b9ba601 449 require_once('wiki.inc.php');
a7de4ef7 450 wiki_require_page('Xorg.PatteCassée');
81b5b746 451
452 global $globals;
453
454 $page->changeTpl('emails/broken.tpl');
455
456 if ($warn == 'warn' && $email) {
457 $email = valide_email($email);
a7de4ef7 458 // vérifications d'usage
08cce2ff 459 $sel = XDB::query(
81b5b746 460 "SELECT e.uid, a.alias
461 FROM emails AS e
462 INNER JOIN auth_user_md5 AS u ON e.uid = u.user_id
463 INNER JOIN aliases AS a ON (e.uid = a.id AND type!='homonyme'
464 AND FIND_IN_SET('bestalias',a.flags))
465 WHERE e.email={?}", $email);
466
467 if (list($uid, $dest) = $sel->fetchOneRow()) {
468 // envoi du mail
469 $message = "Bonjour !
470
a7de4ef7 471Ce mail a été généré automatiquement par le service de patte cassée de
cab08090 472Polytechnique.org car un autre utilisateur, ".S::v('prenom').' '.S::v('nom').",
a7de4ef7 473nous a signalé qu'en t'envoyant un mail, il avait reçu un message d'erreur
81b5b746 474indiquant que ton adresse de redirection $email
475ne fonctionnait plus !
476
a7de4ef7 477Nous te suggérons de vérifier cette adresse, et le cas échéant de mettre
478à jour sur le site <{$globals->baseurl}/emails> tes adresses
81b5b746 479de redirection...
480
a7de4ef7 481Pour plus de rensignements sur le service de patte cassée, n'hésites pas à
2c388954 482consulter la page <{$globals->baseurl}/emails/broken>.
81b5b746 483
484
a7de4ef7 485A bientôt sur Polytechnique.org !
1d55fe45 486L'équipe d'administration <support@" . $globals->mail->domain . '>';
81b5b746 487
1e33266a 488 $mail = new PlMailer();
1d55fe45 489 $mail->setFrom('"Polytechnique.org" <support@' . $globals->mail->domain . '>');
490 $mail->addTo("$dest@" . $globals->mail->domain);
81b5b746 491 $mail->setSubject("Une de tes adresse de redirection Polytechnique.org ne marche plus !!");
492 $mail->setTxtBody($message);
493 $mail->send();
a7de4ef7 494 $page->trig("Mail envoyé ! :o)");
81b5b746 495 }
496 } elseif (Post::has('email')) {
5e2307dc 497 $email = valide_email(Post::v('email'));
81b5b746 498
499 list(,$fqdn) = explode('@', $email);
500 $fqdn = strtolower($fqdn);
501 if ($fqdn == 'polytechnique.org' || $fqdn == 'melix.org'
502 || $fqdn == 'm4x.org' || $fqdn == 'melix.net')
503 {
504 $page->assign('neuneu', true);
505 } else {
506 $page->assign('email',$email);
08cce2ff 507 $sel = XDB::query(
81b5b746 508 "SELECT e1.uid, e1.panne != 0 AS panne, count(e2.uid) AS nb_mails,
4b9ba601 509 u.nom, u.prenom, u.promo, a.alias AS forlife
81b5b746 510 FROM emails as e1
eaf30d86 511 LEFT JOIN emails as e2 ON(e1.uid = e2.uid
81b5b746 512 AND FIND_IN_SET('active', e2.flags)
513 AND e1.email != e2.email)
514 INNER JOIN auth_user_md5 as u ON(e1.uid = u.user_id)
4b9ba601 515 INNER JOIN aliases AS a ON (a.id = e1.uid AND a.type = 'a_vie')
81b5b746 516 WHERE e1.email = {?}
517 GROUP BY e1.uid", $email);
518 if ($x = $sel->fetchOneAssoc()) {
a7de4ef7 519 // on écrit dans la base que l'adresse est cassée
81b5b746 520 if (!$x['panne']) {
74938c82 521 XDB::execute("UPDATE emails
522 SET panne=NOW(),
523 last=NOW(),
524 panne_level = 1
525 WHERE email = {?}", $email);
526 } else {
527 XDB::execute("UPDATE emails
528 SET panne_level = 1
4b9ba601 529 WHERE email = {?} AND panne_level = 0", $email);
81b5b746 530 }
531 $page->assign_by_ref('x', $x);
532 }
533 }
534 }
535 }
9e570fe0 536
537 function handler_duplicated(&$page, $action = 'list', $email = null)
538 {
539 $page->changeTpl('emails/duplicated.tpl');
540
541 $states = array('pending' => 'En attente...',
a7de4ef7 542 'safe' => 'Pas d\'inquiétude',
9e570fe0 543 'unsafe' => 'Recherches en cours',
544 'dangerous' => 'Usurpations par cette adresse');
545 $page->assign('states', $states);
546
547 switch (Post::v('action')) {
548 case 'create':
549 if (trim(Post::v('emailN')) != '') {
550 Xdb::execute('INSERT IGNORE INTO emails_watch (email, state, detection, last, uid, description)
551 VALUES ({?}, {?}, CURDATE(), NOW(), {?}, {?})',
552 trim(Post::v('emailN')), Post::v('stateN'), S::i('uid'), Post::v('descriptionN'));
553 };
554 break;
555
556 case 'edit':
557 Xdb::execute('UPDATE emails_watch
558 SET state = {?}, last = NOW(), uid = {?}, description = {?}
559 WHERE email = {?}', Post::v('stateN'), S::i('uid'), Post::v('descriptionN'), Post::v('emailN'));
560 break;
561
562 default:
563 if ($action == 'delete' && !is_null($email)) {
564 Xdb::execute('DELETE FROM emails_watch WHERE email = {?}', $email);
565 }
566 }
567 if ($action != 'create' && $action != 'edit') {
568 $action = 'list';
569 }
570 $page->assign('action', $action);
571
572 if ($action == 'list') {
573 $sql = "SELECT w.email, w.detection, w.state, a.alias AS forlife
574 FROM emails_watch AS w
ca6d07f4 575 LEFT JOIN emails AS e USING(email)
576 LEFT JOIN aliases AS a ON (a.id = e.uid AND a.type = 'a_vie')
9e570fe0 577 ORDER BY w.state, w.email, a.alias";
578 $it = Xdb::iterRow($sql);
579
580 $table = array();
581 $props = array();
582 while (list($email, $date, $state, $forlife) = $it->next()) {
583 if (count($props) == 0 || $props['mail'] != $email) {
584 if (count($props) > 0) {
585 $table[] = $props;
586 }
587 $props = array('mail' => $email,
588 'detection' => $date,
589 'state' => $state,
590 'users' => array($forlife));
591 } else {
592 $props['users'][] = $forlife;
593 }
594 }
595 if (count($props) > 0) {
596 $table[] = $props;
597 }
598 $page->assign('table', $table);
599 } elseif ($action == 'edit') {
600 $sql = "SELECT w.detection, w.state, w.last, w.description,
601 a1.alias AS edit, a2.alias AS forlife
602 FROM emails_watch AS w
eaf30d86 603 LEFT JOIN aliases AS a1 ON (a1.id = w.uid AND a1.type = 'a_vie')
9615c895 604 LEFT JOIN emails AS e ON (w.email = e.email)
ca6d07f4 605 LEFT JOIN aliases AS a2 ON (a2.id = e.uid AND a2.type = 'a_vie')
9e570fe0 606 WHERE w.email = {?}
607 ORDER BY a2.alias";
608 $it = Xdb::iterRow($sql, $email);
609
610 $props = array();
611 while (list($detection, $state, $last, $description, $edit, $forlife) = $it->next()) {
612 if (count($props) == 0) {
613 $props = array('mail' => $email,
614 'detection' => $detection,
615 'state' => $state,
616 'last' => $last,
617 'description' => $description,
618 'edit' => $edit,
619 'users' => array($forlife));
620 } else {
621 $props['users'][] = $forlife;
622 }
623 }
624 $page->assign('doublon', $props);
625 }
626 }
7727ffc7 627 function handler_lost(&$page, $action = 'list', $email = null)
628 {
629 $page->changeTpl('emails/lost.tpl');
eaf30d86 630
7727ffc7 631 $page->assign('lost_emails', XDB::iterator('
0e5ec860
VZ
632 SELECT u.user_id, a.alias
633 FROM auth_user_md5 AS u
634 INNER JOIN aliases AS a ON (a.id = u.user_id AND a.type = "a_vie")
635 LEFT JOIN emails AS e ON (u.user_id=e.uid AND FIND_IN_SET("active",e.flags))
636 WHERE e.uid IS NULL AND
637 FIND_IN_SET("googleapps", u.mail_storage) = 0 AND
638 u.deces = 0
639 ORDER BY u.promo DESC, u.nom, u.prenom'));
7727ffc7 640 }
81b5b746 641}
642
a7de4ef7 643// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
81b5b746 644?>