Port AliasRequest.
[platal.git] / modules / email.php
... / ...
CommitLineData
1<?php
2/***************************************************************************
3 * Copyright (C) 2003-2008 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
22class EmailModule extends PLModule
23{
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),
33 'emails/antispam/submit' => $this->make_hook('submit', AUTH_COOKIE),
34 'emails/test' => $this->make_hook('test', AUTH_COOKIE, 'user', NO_AUTH),
35
36 'emails/rewrite/in' => $this->make_hook('rewrite_in', AUTH_PUBLIC),
37 'emails/rewrite/out' => $this->make_hook('rewrite_out', AUTH_PUBLIC),
38
39 'emails/imap/in' => $this->make_hook('imap_in', AUTH_PUBLIC),
40
41 'admin/emails/duplicated' => $this->make_hook('duplicated', AUTH_MDP, 'admin'),
42 'admin/emails/watch' => $this->make_hook('duplicated', AUTH_MDP, 'admin'),
43 'admin/emails/lost' => $this->make_hook('lost', AUTH_MDP, 'admin'),
44 );
45 }
46
47 function handler_emails(&$page, $action = null, $email = null)
48 {
49 global $globals;
50 require_once 'emails.inc.php';
51
52 $page->changeTpl('emails/index.tpl');
53 $page->setTitle('Mes emails');
54
55 $user = S::user();
56
57 // Apply the bestalias change request.
58 if ($action == 'best' && $email) {
59 if (!S::has_xsrf_token()) {
60 return PL_FORBIDDEN;
61 }
62
63 XDB::execute("UPDATE aliases
64 SET flags = TRIM(BOTH ',' FROM REPLACE(CONCAT(',', flags, ','), ',bestalias,', ','))
65 WHERE id = {?}", $user->id());
66 XDB::execute("UPDATE aliases
67 SET flags = CONCAT_WS(',', IF(flags = '', NULL, flags), 'bestalias')
68 WHERE id = {?} AND alias = {?}", $user->id(), $email);
69
70 // As having a non-null bestalias value is critical in
71 // plat/al's code, we do an a posteriori check on the
72 // validity of the bestalias.
73 fix_bestalias($user);
74 }
75
76 // Fetch and display aliases.
77 $sql = "SELECT alias, (type='a_vie') AS a_vie,
78 (alias REGEXP '\\\\.[0-9]{2}$') AS cent_ans,
79 FIND_IN_SET('bestalias',flags) AS best, expire
80 FROM aliases
81 WHERE id = {?} AND type!='homonyme'
82 ORDER BY LENGTH(alias)";
83 $page->assign('aliases', XDB::iterator($sql, $user->id()));
84
85 // Check for homonyms.
86 $homonyme = XDB::query(
87 "SELECT alias
88 FROM aliases
89 INNER JOIN homonymes ON (id = homonyme_id)
90 WHERE user_id = {?} AND type = 'homonyme'", $user->id());
91 $page->assign('homonyme', $homonyme->fetchOneCell());
92
93 // Display active redirections.
94 $redirect = new Redirect($user);
95 $page->assign('mails', $redirect->active_emails());
96
97 // Display, when available, the @alias_dom email alias.
98 $res = XDB::query(
99 "SELECT alias
100 FROM virtual AS v
101 INNER JOIN virtual_redirect AS vr USING(vid)
102 WHERE (redirect={?} OR redirect={?})
103 AND alias LIKE '%@{$globals->mail->alias_dom}'",
104 $user->forlifeEmail(),
105 // TODO: remove this über-ugly hack. The issue is that you need
106 // to remove all @m4x.org addresses in virtual_redirect first.
107 $user->login() . '@' . $globals->mail->domain2);
108 $page->assign('melix', $res->fetchOneCell());
109 }
110
111 function handler_alias(&$page, $action = null, $value = null)
112 {
113 require_once 'validations.inc.php';
114
115 global $globals;
116
117 $page->changeTpl('emails/alias.tpl');
118 $page->setTitle('Alias melix.net');
119
120 $user = S::user();
121 $page->assign('demande', AliasReq::get_request($user->id()));
122
123 // Remove the email alias.
124 if ($action == 'delete' && $value) {
125 S::assert_xsrf_token();
126
127 XDB::execute(
128 "DELETE virtual, virtual_redirect
129 FROM virtual
130 INNER JOIN virtual_redirect USING (vid)
131 WHERE alias = {?} AND (redirect = {?} OR redirect = {?})",
132 $value, $user->forlifeEmail(), $user->m4xForlifeEmail());
133 }
134
135 // Fetch existing @alias_dom aliases.
136 $alias = $user->emailAlias();
137 $visibility = $user->hasProfile() && $user->profile()->alias_pub;
138
139 if ($action == 'ask' && Env::has('alias') && Env::has('raison')) {
140 S::assert_xsrf_token();
141
142 //Si l'utilisateur vient de faire une damande
143 $alias = Env::v('alias');
144 $raison = Env::v('raison');
145 $public = (Env::v('public', 'off') == 'on') ? 'public' : 'private';
146
147 $page->assign('r_alias', $alias);
148 $page->assign('r_raison', $raison);
149 if ($public == 'public') {
150 $page->assign('r_public', true);
151 }
152
153 //Quelques vérifications sur l'alias (caractères spéciaux)
154 if (!preg_match("/^[a-zA-Z0-9\-.]{3,20}$/", $alias)) {
155 $page->trigError("L'adresse demandée n'est pas valide."
156 . " Vérifie qu'elle comporte entre 3 et 20 caractères"
157 . " et qu'elle ne contient que des lettres non accentuées,"
158 . " des chiffres ou les caractères - et .");
159 return;
160 } else {
161 $alias_mail = $alias.'@'.$globals->mail->alias_dom;
162
163 //vérifier que l'alias n'est pas déja pris
164 $res = XDB::query('SELECT COUNT(*)
165 FROM virtual
166 WHERE alias={?}',
167 $alias_mail);
168 if ($res->fetchOneCell() > 0) {
169 $page->trigError("L'alias $alias_mail a déja été attribué.
170 Tu ne peux donc pas l'obtenir.");
171 return;
172 }
173
174 //vérifier que l'alias n'est pas déja en demande
175 $it = new ValidateIterator();
176 while($req = $it->next()) {
177 if ($req->type == 'alias' and $req->alias == $alias_mail) {
178 $page->trigError("L'alias $alias_mail a déja été demandé.
179 Tu ne peux donc pas l'obtenir pour l'instant.");
180 return ;
181 }
182 }
183
184 //Insertion de la demande dans la base, écrase les requêtes précédente
185 $myalias = new AliasReq($user, $alias, $raison, $public);
186 $myalias->submit();
187 $page->assign('success',$alias);
188 return;
189 }
190 } elseif ($action == 'set' && ($value == 'public' || $value == 'private')) {
191 if (!S::has_xsrf_token()) {
192 return PL_FORBIDDEN;
193 }
194
195 if ($user->hasProfile()) {
196 XDB::execute("UPDATE profiles
197 SET alias_pub = {?}
198 WHERE pid = {?}",
199 $value, $user->profile()->id());
200 }
201 $visibility = ($value == 'public');
202 }
203
204 $page->assign('actuel', $alias);
205 $page->assign('user', $user);
206 $page->assign('mail_public', $visibility);
207 }
208
209 function handler_redirect(&$page, $action = null, $email = null)
210 {
211 global $globals;
212
213 require_once 'emails.inc.php';
214
215 $page->changeTpl('emails/redirect.tpl');
216
217 $user = S::user();
218 $page->assign_by_ref('user', $user);
219 $page->assign('eleve', $user->promo() >= date("Y") - 5);
220
221 $redirect = new Redirect($user);
222
223 // FS#703 : $_GET is urldecoded twice, hence
224 // + (the data) => %2B (in the url) => + (first decoding) => ' ' (second decoding)
225 // Since there can be no spaces in emails, we can fix this with :
226 $email = str_replace(' ', '+', $email);
227
228 // Apply email redirection change requests.
229 if ($action == 'remove' && $email) {
230 $retour = $redirect->delete_email($email);
231 }
232
233 if ($action == 'active' && $email) {
234 $redirect->modify_one_email($email, true);
235 }
236
237 if ($action == 'inactive' && $email) {
238 $redirect->modify_one_email($email, false);
239 }
240
241 if ($action == 'rewrite' && $email) {
242 $rewrite = @func_get_arg(3);
243 $redirect->modify_one_email_redirect($email, $rewrite);
244 }
245
246 if (Env::has('emailop')) {
247 S::assert_xsrf_token();
248
249 $actifs = Env::v('emails_actifs', Array());
250 print_r(Env::v('emails_rewrite'));
251 if (Env::v('emailop') == "ajouter" && Env::has('email')) {
252 $new_email = Env::v('email');
253 if ($new_email == "new@example.org") {
254 $new_email = Env::v('email_new');
255 }
256 $retour = $redirect->add_email($new_email);
257 if ($retour == ERROR_INVALID_EMAIL) {
258 $page->assign('email', $new_email);
259 }
260 $page->assign('retour', $retour);
261 } elseif (empty($actifs)) {
262 $retour = ERROR_INACTIVE_REDIRECTION;
263 } elseif (is_array($actifs)) {
264 $retour = $redirect->modify_email($actifs, Env::v('emails_rewrite', Array()));
265 }
266 }
267
268 switch ($retour) {
269 case ERROR_INACTIVE_REDIRECTION:
270 $page->trigError('Tu ne peux pas avoir aucune adresse de redirection active, sinon ton adresse '
271 . $user->forlifeEmail() . ' ne fonctionnerait plus.');
272 break;
273 case ERROR_INVALID_EMAIL:
274 $page->trigError('Erreur: l\'email n\'est pas valide.');
275 break;
276 case ERROR_LOOP_EMAIL:
277 $page->trigError('Erreur : ' . $user->forlifeEmail()
278 . ' ne doit pas être renvoyé vers lui-même, ni vers son équivalent en '
279 . $globals->mail->domain2 . ' ni vers polytechnique.edu.');
280 break;
281 }
282
283 // Fetch the @alias_dom email alias, if any.
284 $res = XDB::query(
285 "SELECT alias
286 FROM virtual
287 INNER JOIN virtual_redirect USING(vid)
288 WHERE (redirect={?} OR redirect={?})
289 AND alias LIKE '%@{$globals->mail->alias_dom}'",
290 $user->forlifeEmail(),
291 // TODO: remove this über-ugly hack. The issue is that you need
292 // to remove all @m4x.org addresses in virtual_redirect first.
293 $user->login() . '@' . $globals->mail->domain2);
294 $melix = $res->fetchOneCell();
295 if ($melix) {
296 list($melix) = explode('@', $melix);
297 $page->assign('melix',$melix);
298 }
299
300 // Fetch existing email aliases.
301 $res = XDB::query(
302 "SELECT alias,expire
303 FROM aliases
304 WHERE id={?} AND (type='a_vie' OR type='alias')
305 ORDER BY !FIND_IN_SET('usage',flags), LENGTH(alias)", $user->id());
306 $page->assign('alias', $res->fetchAllAssoc());
307 $page->assign('emails', $redirect->emails);
308
309 // Display GoogleApps acount information.
310 require_once 'googleapps.inc.php';
311 $page->assign('googleapps', GoogleAppsAccount::account_status($user->id()));
312
313 require_once 'emails.combobox.inc.php';
314 fill_email_combobox($page);
315 }
316
317 function handler_antispam(&$page, $statut_filtre = null)
318 {
319 require_once 'emails.inc.php';
320 $wp = new PlWikiPage('Xorg.Antispam');
321 $wp->buildCache();
322
323 $page->changeTpl('emails/antispam.tpl');
324
325 $bogo = new Bogo(S::user());
326 if (isset($statut_filtre)) {
327 $bogo->change($statut_filtre + 0);
328 }
329 $page->assign('filtre', $bogo->level());
330 }
331
332 function handler_submit(&$page)
333 {
334 $wp = new PlWikiPage('Xorg.Mails');
335 $wp->buildCache();
336 $page->changeTpl('emails/submit_spam.tpl');
337
338 if (Post::has('send_email')) {
339 S::assert_xsrf_token();
340
341 $upload = PlUpload::get($_FILES['mail'], S::user()->login(), 'spam.submit', true);
342 if (!$upload) {
343 $page->trigError('Une erreur a été rencontrée lors du transfert du fichier');
344 return;
345 }
346 $mime = $upload->contentType();
347 if ($mime != 'text/x-mail' && $mime != 'message/rfc822') {
348 $upload->clear();
349 $page->trigError('Le fichier ne contient pas un email complet');
350 return;
351 }
352 $type = (Post::v('type') == 'spam' ? 'spam' : 'nonspam');
353
354 global $globals;
355 $box = $type . '@' . $globals->mail->domain;
356 $mailer = new PlMailer();
357 $mailer->addTo($box);
358 $mailer->setFrom('"' . S::user()->fullName() . '" <web@' . $globals->mail->domain . '>');
359 $mailer->setTxtBody($type . ' soumis par ' . S::user()->login() . ' via le web');
360 $mailer->addUploadAttachment($upload, $type . '.mail');
361 $mailer->send();
362 $page->trigSuccess('Le message a été transmis à ' . $box);
363 $upload->clear();
364 }
365 }
366
367 function handler_send(&$page)
368 {
369 $page->changeTpl('emails/send.tpl');
370 $page->addJsLink('ajax.js');
371
372 $page->setTitle('Envoyer un email');
373
374 // action si on recoit un formulaire
375 if (Post::has('save')) {
376 if (!S::has_xsrf_token()) {
377 return PL_FORBIDDEN;
378 }
379
380 unset($_POST['save']);
381 if (trim(preg_replace('/-- .*/', '', Post::v('contenu'))) != "") {
382 $_POST['to_contacts'] = explode(';', @$_POST['to_contacts']);
383 $_POST['cc_contacts'] = explode(';', @$_POST['cc_contacts']);
384 $data = serialize($_POST);
385 XDB::execute("REPLACE INTO email_send_save
386 VALUES ({?}, {?})", S::i('uid'), $data);
387 }
388 exit;
389 } else if (Env::v('submit') == 'Envoyer') {
390 S::assert_xsrf_token();
391
392 function getEmails($aliases)
393 {
394 if (!is_array($aliases)) {
395 return null;
396 }
397 $rel = Env::v('contacts');
398 $ret = array();
399 foreach ($aliases as $alias) {
400 $ret[$alias] = $rel[$alias];
401 }
402 return join(', ', $ret);
403 }
404
405 $error = false;
406 foreach ($_FILES as &$file) {
407 if ($file['name'] && !PlUpload::get($file, S::user()->login(), 'emails.send', false)) {
408 $page->trigError(PlUpload::$lastError);
409 $error = true;
410 break;
411 }
412 }
413
414 if (!$error) {
415 XDB::execute("DELETE FROM email_send_save
416 WHERE uid = {?}", S::i('uid'));
417
418 $to2 = getEmails(Env::v('to_contacts'));
419 $cc2 = getEmails(Env::v('cc_contacts'));
420 $txt = str_replace('^M', '', Env::v('contenu'));
421 $to = Env::v('to');
422 $subj = Env::v('sujet');
423 $from = Env::v('from');
424 $cc = trim(Env::v('cc'));
425 $bcc = trim(Env::v('bcc'));
426
427 if (empty($to) && empty($cc) && empty($to2) && empty($bcc) && empty($cc2)) {
428 $page->trigError("Indique au moins un destinataire.");
429 $page->assign('uploaded_f', PlUpload::listFilenames(S::user()->login(), 'emails.send'));
430 } else {
431 $mymail = new PlMailer();
432 $mymail->setFrom($from);
433 $mymail->setSubject($subj);
434 if (!empty($to)) { $mymail->addTo($to); }
435 if (!empty($cc)) { $mymail->addCc($cc); }
436 if (!empty($bcc)) { $mymail->addBcc($bcc); }
437 if (!empty($to2)) { $mymail->addTo($to2); }
438 if (!empty($cc2)) { $mymail->addCc($cc2); }
439 $files =& PlUpload::listFiles(S::user()->login(), 'emails.send');
440 foreach ($files as $name=>&$upload) {
441 $mymail->addUploadAttachment($upload, $name);
442 }
443 if (Env::v('nowiki')) {
444 $mymail->setTxtBody(wordwrap($txt, 78, "\n"));
445 } else {
446 $mymail->setWikiBody($txt);
447 }
448 if ($mymail->send()) {
449 $page->trigSuccess("Ton email a bien été envoyé.");
450 $_REQUEST = array('bcc' => S::user()->bestEmail());
451 PlUpload::clear(S::user()->login(), 'emails.send');
452 } else {
453 $page->trigError("Erreur lors de l'envoi du courriel, réessaye.");
454 $page->assign('uploaded_f', PlUpload::listFilenames(S::user()->login(), 'emails.send'));
455 }
456 }
457 }
458 } else {
459 $res = XDB::query("SELECT data
460 FROM email_send_save
461 WHERE uid = {?}", S::i('uid'));
462 if ($res->numRows() == 0) {
463 PlUpload::clear(S::user()->login(), 'emails.send');
464 $_REQUEST['bcc'] = S::user()->bestEmail();
465 } else {
466 $data = unserialize($res->fetchOneCell());
467 $_REQUEST = array_merge($_REQUEST, $data);
468 }
469 }
470
471 $res = XDB::query(
472 "SELECT ac.full_name, a.alias as forlife
473 FROM accounts AS ac
474 INNER JOIN contacts AS c ON (ac.uid = c.contact)
475 INNER JOIN aliases AS a ON (ac.uid = a.id AND FIND_IN_SET('bestalias', a.flags))
476 WHERE c.uid = {?}
477 ORDER BY ac.full_name", S::i('uid'));
478 $page->assign('contacts', $res->fetchAllAssoc());
479 $page->assign('maxsize', ini_get('upload_max_filesize') . 'o');
480 $page->assign('user', S::user());
481 }
482
483 function handler_test(&$page, $hruid = null)
484 {
485 require_once 'emails.inc.php';
486
487 if (!S::has_xsrf_token()) {
488 return PL_FORBIDDEN;
489 }
490
491 // Retrieves the User object for the test email recipient.
492 if (S::has_perms() && $hruid) {
493 $user = User::getSilent($hruid);
494 } else {
495 $user = S::user();
496 }
497 if (!$user) {
498 return PL_NOT_FOUND;
499 }
500
501 // Sends the test email.
502 $redirect = new Redirect($user);
503
504 $mailer = new PlMailer('emails/test.mail.tpl');
505 $mailer->assign('email', $user->bestEmail());
506 $mailer->assign('redirects', $redirect->active_emails());
507 $mailer->assign('display_name', $user->displayName());
508 $mailer->assign('sexe', $user->isFemale());
509 $mailer->send($user->isEmailFormatHtml());
510 exit;
511 }
512
513 function handler_rewrite_in(&$page, $mail, $hash)
514 {
515 $page->changeTpl('emails/rewrite.tpl');
516 $page->assign('option', 'in');
517 if (empty($mail) || empty($hash)) {
518 return PL_NOT_FOUND;
519 }
520 $pos = strrpos($mail, '_');
521 if ($pos === false) {
522 return PL_NOT_FOUND;
523 }
524 $mail{$pos} = '@';
525 $res = XDB::query("SELECT COUNT(*)
526 FROM emails
527 WHERE email = {?} AND hash = {?}",
528 $mail, $hash);
529 $count = intval($res->fetchOneCell());
530 if ($count > 0) {
531 XDB::query("UPDATE emails
532 SET allow_rewrite = true, hash = NULL
533 WHERE email = {?} AND hash = {?}",
534 $mail, $hash);
535 $page->trigSuccess("Réécriture activée pour l'adresse " . $mail);
536 return;
537 }
538 return PL_NOT_FOUND;
539 }
540
541 function handler_rewrite_out(&$page, $mail, $hash)
542 {
543 $page->changeTpl('emails/rewrite.tpl');
544 $page->assign('option', 'out');
545 if (empty($mail) || empty($hash)) {
546 return PL_NOT_FOUND;
547 }
548 $pos = strrpos($mail, '_');
549 if ($pos === false) {
550 return PL_NOT_FOUND;
551 }
552 $mail{$pos} = '@';
553 $res = XDB::query("SELECT COUNT(*)
554 FROM emails
555 WHERE email = {?} AND hash = {?}",
556 $mail, $hash);
557 $count = intval($res->fetchOneCell());
558 if ($count > 0) {
559 global $globals;
560 $res = XDB::query("SELECT e.email, e.rewrite, a.alias
561 FROM emails AS e
562 INNER JOIN aliases AS a ON (a.id = e.uid AND a.type = 'a_vie')
563 WHERE e.email = {?} AND e.hash = {?}",
564 $mail, $hash);
565 XDB::query("UPDATE emails
566 SET allow_rewrite = false, hash = NULL
567 WHERE email = {?} AND hash = {?}",
568 $mail, $hash);
569 list($mail, $rewrite, $forlife) = $res->fetchOneRow();
570 $mail = new PlMailer();
571 $mail->setFrom("webmaster@" . $globals->mail->domain);
572 $mail->addTo("support@" . $globals->mail->domain);
573 $mail->setSubject("Tentative de détournement de correspondance via le rewrite");
574 $mail->setTxtBody("$forlife a tenté un rewrite de $mail vers $rewrite. Cette demande a été rejetée via le web");
575 $mail->send();
576 $page->trigWarning("Un mail d'alerte a été envoyé à l'équipe de " . $globals->core->sitename);
577 return;
578 }
579 return PL_NOT_FOUND;
580 }
581
582 function handler_imap_in(&$page, $hash = null, $login = null)
583 {
584 $page->changeTpl('emails/imap_register.tpl');
585 $user = null;
586 if (!empty($hash) || !empty($login)) {
587 $user = User::getSilent($login);
588 if ($user) {
589 $req = XDB::query("SELECT 1 FROM newsletter_ins WHERE user_id = {?} AND hash = {?}", $user->id(), $hash);
590 if ($req->numRows() == 0) {
591 $user = null;
592 }
593 }
594 }
595
596 require_once('emails.inc.php');
597 $page->assign('ok', false);
598 if (S::logged() && (is_null($user) || $user->id() == S::i('uid'))) {
599 $storage = new EmailStorage(S::user(), 'imap');
600 $storage->activate();
601 $page->assign('ok', true);
602 $page->assign('prenom', S::v('prenom'));
603 $page->assign('sexe', S::v('femme'));
604 } else if (!S::logged() && $user) {
605 $storage = new EmailStorage($user, 'imap');
606 $storage->activate();
607 $page->assign('ok', true);
608 $page->assign('prenom', $user->displayName());
609 $page->assign('sexe', $user->isFemale());
610 }
611 }
612
613 function handler_broken(&$page, $warn = null, $email = null)
614 {
615 require_once 'emails.inc.php';
616 $wp = new PlWikiPage('Xorg.PatteCassée');
617 $wp->buildCache();
618
619 global $globals;
620
621 $page->changeTpl('emails/broken.tpl');
622
623 if ($warn == 'warn' && $email) {
624 S::assert_xsrf_token();
625
626 $email = valide_email($email);
627 // vérifications d'usage
628 $sel = XDB::query("SELECT uid FROM emails WHERE email = {?}", $email);
629 if (($uid = $sel->fetchOneCell())) {
630 $dest = User::getSilent($uid);
631
632 // envoi du mail
633 $message = "Bonjour !
634
635Cet email a été généré automatiquement par le service de patte cassée de
636Polytechnique.org car un autre utilisateur, " . S::user()->fullName() . ",
637nous a signalé qu'en t'envoyant un email, il avait reçu un message d'erreur
638indiquant que ton adresse de redirection $email
639ne fonctionnait plus !
640
641Nous te suggérons de vérifier cette adresse, et le cas échéant de mettre
642à jour sur le site <{$globals->baseurl}/emails> tes adresses
643de redirection...
644
645Pour plus de renseignements sur le service de patte cassée, n'hésite pas à
646consulter la page <{$globals->baseurl}/emails/broken>.
647
648
649À bientôt sur Polytechnique.org !
650L'équipe d'administration <support@" . $globals->mail->domain . '>';
651
652 $mail = new PlMailer();
653 $mail->setFrom('"Polytechnique.org" <support@' . $globals->mail->domain . '>');
654 $mail->addTo($dest->bestEmail());
655 $mail->setSubject("Une de tes adresse de redirection Polytechnique.org ne marche plus !!");
656 $mail->setTxtBody($message);
657 $mail->send();
658 $page->trigSuccess("Email envoyé !");
659 }
660 } elseif (Post::has('email')) {
661 S::assert_xsrf_token();
662
663 $email = valide_email(Post::v('email'));
664
665 list(,$fqdn) = explode('@', $email);
666 $fqdn = strtolower($fqdn);
667 if ($fqdn == 'polytechnique.org' || $fqdn == 'melix.org' || $fqdn == 'm4x.org' || $fqdn == 'melix.net') {
668 $page->assign('neuneu', true);
669 } else {
670 $page->assign('email',$email);
671 $sel = XDB::query(
672 "SELECT e1.uid, e1.panne != 0 AS panne,
673 (count(e2.uid) + IF(FIND_IN_SET('googleapps', u.mail_storage), 1, 0)) AS nb_mails,
674 u.nom, u.prenom, u.promo, u.hruid
675 FROM emails as e1
676 LEFT JOIN emails as e2 ON(e1.uid = e2.uid
677 AND FIND_IN_SET('active', e2.flags)
678 AND e1.email != e2.email)
679 INNER JOIN auth_user_md5 as u ON(e1.uid = u.user_id)
680 WHERE e1.email = {?}
681 GROUP BY e1.uid", $email);
682 if ($x = $sel->fetchOneAssoc()) {
683 // on écrit dans la base que l'adresse est cassée
684 if (!$x['panne']) {
685 XDB::execute("UPDATE emails
686 SET panne=NOW(),
687 last=NOW(),
688 panne_level = 1
689 WHERE email = {?}", $email);
690 } else {
691 XDB::execute("UPDATE emails
692 SET panne_level = 1
693 WHERE email = {?} AND panne_level = 0", $email);
694 }
695 $page->assign_by_ref('x', $x);
696 }
697 }
698 }
699 }
700
701 function handler_duplicated(&$page, $action = 'list', $email = null)
702 {
703 $page->changeTpl('emails/duplicated.tpl');
704
705 $states = array('pending' => 'En attente...',
706 'safe' => 'Pas d\'inquiétude',
707 'unsafe' => 'Recherches en cours',
708 'dangerous' => 'Usurpations par cette adresse');
709 $page->assign('states', $states);
710
711 if (Post::has('action')) {
712 S::assert_xsrf_token();
713 }
714 switch (Post::v('action')) {
715 case 'create':
716 if (trim(Post::v('emailN')) != '') {
717 Xdb::execute('INSERT IGNORE INTO emails_watch (email, state, detection, last, uid, description)
718 VALUES ({?}, {?}, CURDATE(), NOW(), {?}, {?})',
719 trim(Post::v('emailN')), Post::v('stateN'), S::i('uid'), Post::v('descriptionN'));
720 };
721 break;
722
723 case 'edit':
724 Xdb::execute('UPDATE emails_watch
725 SET state = {?}, last = NOW(), uid = {?}, description = {?}
726 WHERE email = {?}', Post::v('stateN'), S::i('uid'), Post::v('descriptionN'), Post::v('emailN'));
727 break;
728
729 default:
730 if ($action == 'delete' && !is_null($email)) {
731 Xdb::execute('DELETE FROM emails_watch WHERE email = {?}', $email);
732 }
733 }
734 if ($action != 'create' && $action != 'edit') {
735 $action = 'list';
736 }
737 $page->assign('action', $action);
738
739 if ($action == 'list') {
740 $sql = "SELECT w.email, w.detection, w.state, a.alias AS forlife
741 FROM emails_watch AS w
742 LEFT JOIN emails AS e USING(email)
743 LEFT JOIN aliases AS a ON (a.id = e.uid AND a.type = 'a_vie')
744 ORDER BY w.state, w.email, a.alias";
745 $it = Xdb::iterRow($sql);
746
747 $table = array();
748 $props = array();
749 while (list($email, $date, $state, $forlife) = $it->next()) {
750 if (count($props) == 0 || $props['mail'] != $email) {
751 if (count($props) > 0) {
752 $table[] = $props;
753 }
754 $props = array('mail' => $email,
755 'detection' => $date,
756 'state' => $state,
757 'users' => array($forlife));
758 } else {
759 $props['users'][] = $forlife;
760 }
761 }
762 if (count($props) > 0) {
763 $table[] = $props;
764 }
765 $page->assign('table', $table);
766 } elseif ($action == 'edit') {
767 $sql = "SELECT w.detection, w.state, w.last, w.description,
768 a1.alias AS edit, a2.alias AS forlife
769 FROM emails_watch AS w
770 LEFT JOIN aliases AS a1 ON (a1.id = w.uid AND a1.type = 'a_vie')
771 LEFT JOIN emails AS e ON (w.email = e.email)
772 LEFT JOIN aliases AS a2 ON (a2.id = e.uid AND a2.type = 'a_vie')
773 WHERE w.email = {?}
774 ORDER BY a2.alias";
775 $it = Xdb::iterRow($sql, $email);
776
777 $props = array();
778 while (list($detection, $state, $last, $description, $edit, $forlife) = $it->next()) {
779 if (count($props) == 0) {
780 $props = array('mail' => $email,
781 'detection' => $detection,
782 'state' => $state,
783 'last' => $last,
784 'description' => $description,
785 'edit' => $edit,
786 'users' => array($forlife));
787 } else {
788 $props['users'][] = $forlife;
789 }
790 }
791 $page->assign('doublon', $props);
792 }
793 }
794 function handler_lost(&$page, $action = 'list', $email = null)
795 {
796 $page->changeTpl('emails/lost.tpl');
797
798 $page->assign('lost_emails', XDB::iterator("
799 SELECT u.user_id, u.hruid
800 FROM auth_user_md5 AS u
801 LEFT JOIN emails AS e ON (u.user_id = e.uid AND FIND_IN_SET('active', e.flags))
802 WHERE e.uid IS NULL AND FIND_IN_SET('googleapps', u.mail_storage) = 0 AND
803 u.deces = 0 AND u.perms IN ('user', 'admin', 'disabled')
804 ORDER BY u.promo DESC, u.nom, u.prenom"));
805 }
806}
807
808// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
809?>