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