Fixes deprecated features in PHP 5.3.x.
[platal.git] / modules / email.php
CommitLineData
81b5b746 1<?php
2/***************************************************************************
12262f13 3 * Copyright (C) 2003-2011 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(
2914271e
FB
27 'emails' => $this->make_hook('emails', AUTH_COOKIE, 'mail'),
28 'emails/alias' => $this->make_hook('alias', AUTH_MDP, 'mail'),
29 'emails/antispam' => $this->make_hook('antispam', AUTH_MDP, 'mail'),
eb5a266d 30 'emails/broken' => $this->make_hook('broken', AUTH_COOKIE),
2914271e
FB
31 'emails/redirect' => $this->make_hook('redirect', AUTH_MDP, 'mail'),
32 'emails/send' => $this->make_hook('send', AUTH_MDP, 'mail'),
eb5a266d 33 'emails/antispam/submit' => $this->make_hook('submit', AUTH_COOKIE),
2914271e 34 'emails/test' => $this->make_hook('test', AUTH_COOKIE, 'mail', NO_AUTH),
9e570fe0 35
eb5a266d
SJ
36 'emails/rewrite/in' => $this->make_hook('rewrite_in', AUTH_PUBLIC),
37 'emails/rewrite/out' => $this->make_hook('rewrite_out', AUTH_PUBLIC),
3d17e48f 38
eb5a266d 39 'emails/imap/in' => $this->make_hook('imap_in', AUTH_PUBLIC),
2ee43273 40
eb5a266d
SJ
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'),
67e06366 44 'admin/emails/broken' => $this->make_hook('broken_addr', AUTH_MDP, 'admin'),
81b5b746 45 );
46 }
47
26ba053e 48 function handler_emails($page, $action = null, $email = null)
81b5b746 49 {
50 global $globals;
e97e9b8f 51 require_once 'emails.inc.php';
81b5b746 52
53 $page->changeTpl('emails/index.tpl');
46f272fe 54 $page->setTitle('Mes emails');
81b5b746 55
2d997414 56 $user = S::user();
81b5b746 57
2d997414 58 // Apply the bestalias change request.
b7582015 59 if ($action == 'best' && $email) {
46504fb3
VZ
60 if (!S::has_xsrf_token()) {
61 return PL_FORBIDDEN;
62 }
63
2d997414
VZ
64 XDB::execute("UPDATE aliases
65 SET flags = TRIM(BOTH ',' FROM REPLACE(CONCAT(',', flags, ','), ',bestalias,', ','))
fe13bc1d 66 WHERE uid = {?}", $user->id());
2d997414
VZ
67 XDB::execute("UPDATE aliases
68 SET flags = CONCAT_WS(',', IF(flags = '', NULL, flags), 'bestalias')
fe13bc1d 69 WHERE uid = {?} AND alias = {?}", $user->id(), $email);
2d997414
VZ
70
71 // As having a non-null bestalias value is critical in
72 // plat/al's code, we do an a posteriori check on the
73 // validity of the bestalias.
74 fix_bestalias($user);
81b5b746 75 }
76
2d997414 77 // Fetch and display aliases.
81b5b746 78 $sql = "SELECT alias, (type='a_vie') AS a_vie,
79 (alias REGEXP '\\\\.[0-9]{2}$') AS cent_ans,
80 FIND_IN_SET('bestalias',flags) AS best, expire
81 FROM aliases
fe13bc1d 82 WHERE uid = {?} AND type!='homonyme'
81b5b746 83 ORDER BY LENGTH(alias)";
2d997414 84 $page->assign('aliases', XDB::iterator($sql, $user->id()));
81b5b746 85
2d997414 86 // Check for homonyms.
777c5910 87 $page->assign('homonyme', $user->homonyme);
e1547442 88
2d997414
VZ
89 // Display active redirections.
90 $redirect = new Redirect($user);
e97e9b8f 91 $page->assign('mails', $redirect->active_emails());
81b5b746 92
2d997414 93 // Display, when available, the @alias_dom email alias.
08cce2ff 94 $res = XDB::query(
81b5b746 95 "SELECT alias
96 FROM virtual AS v
97 INNER JOIN virtual_redirect AS vr USING(vid)
eaf30d86 98 WHERE (redirect={?} OR redirect={?})
81b5b746 99 AND alias LIKE '%@{$globals->mail->alias_dom}'",
2d997414
VZ
100 $user->forlifeEmail(),
101 // TODO: remove this über-ugly hack. The issue is that you need
102 // to remove all @m4x.org addresses in virtual_redirect first.
103 $user->login() . '@' . $globals->mail->domain2);
81b5b746 104 $page->assign('melix', $res->fetchOneCell());
81b5b746 105 }
106
26ba053e 107 function handler_alias($page, $action = null, $value = null)
81b5b746 108 {
81b5b746 109 global $globals;
110
111 $page->changeTpl('emails/alias.tpl');
46f272fe 112 $page->setTitle('Alias melix.net');
81b5b746 113
2d997414
VZ
114 $user = S::user();
115 $page->assign('demande', AliasReq::get_request($user->id()));
81b5b746 116
2d997414 117 // Remove the email alias.
40d428d8
VZ
118 if ($action == 'delete' && $value) {
119 S::assert_xsrf_token();
120
08cce2ff 121 XDB::execute(
2d997414
VZ
122 "DELETE virtual, virtual_redirect
123 FROM virtual
124 INNER JOIN virtual_redirect USING (vid)
125 WHERE alias = {?} AND (redirect = {?} OR redirect = {?})",
3e53a496 126 $value, $user->forlifeEmail(), $user->m4xForlifeEmail());
81b5b746 127 }
128
2d997414 129 // Fetch existing @alias_dom aliases.
3e53a496
FB
130 $alias = $user->emailAlias();
131 $visibility = $user->hasProfile() && $user->profile()->alias_pub;
5b6768e6
FB
132 $page->assign('actuel', $alias);
133 $page->assign('user', $user);
134 $page->assign('mail_public', $visibility);
81b5b746 135
40d428d8
VZ
136 if ($action == 'ask' && Env::has('alias') && Env::has('raison')) {
137 S::assert_xsrf_token();
81b5b746 138
40d428d8 139 //Si l'utilisateur vient de faire une damande
5e2307dc 140 $alias = Env::v('alias');
141 $raison = Env::v('raison');
6a4f0f01 142 $public = (Env::v('public', 'off') == 'on') ? 'public' : 'private';
81b5b746 143
144 $page->assign('r_alias', $alias);
145 $page->assign('r_raison', $raison);
146 if ($public == 'public') {
147 $page->assign('r_public', true);
148 }
149
a7de4ef7 150 //Quelques vérifications sur l'alias (caractères spéciaux)
3e53a496 151 if (!preg_match("/^[a-zA-Z0-9\-.]{3,20}$/", $alias)) {
a7d35093
FB
152 $page->trigError("L'adresse demandée n'est pas valide."
153 . " Vérifie qu'elle comporte entre 3 et 20 caractères"
154 . " et qu'elle ne contient que des lettres non accentuées,"
155 . " des chiffres ou les caractères - et .");
fd8f77de 156 return;
81b5b746 157 } else {
3e53a496
FB
158 $alias_mail = $alias.'@'.$globals->mail->alias_dom;
159
a7de4ef7 160 //vérifier que l'alias n'est pas déja pris
3e53a496
FB
161 $res = XDB::query('SELECT COUNT(*)
162 FROM virtual
163 WHERE alias={?}',
164 $alias_mail);
81b5b746 165 if ($res->fetchOneCell() > 0) {
3e53a496
FB
166 $page->trigError("L'alias $alias_mail a déja été attribué.
167 Tu ne peux donc pas l'obtenir.");
fd8f77de 168 return;
81b5b746 169 }
170
a7de4ef7 171 //vérifier que l'alias n'est pas déja en demande
7b094a73 172 $it = Validate::iterate('alias');
81b5b746 173 while($req = $it->next()) {
7b094a73 174 if ($req->alias == $alias_mail) {
3e53a496 175 $page->trigError("L'alias $alias_mail a déja été demandé.
81b5b746 176 Tu ne peux donc pas l'obtenir pour l'instant.");
fd8f77de 177 return ;
81b5b746 178 }
179 }
180
a7de4ef7 181 //Insertion de la demande dans la base, écrase les requêtes précédente
2d997414 182 $myalias = new AliasReq($user, $alias, $raison, $public);
81b5b746 183 $myalias->submit();
184 $page->assign('success',$alias);
fd8f77de 185 return;
81b5b746 186 }
46504fb3
VZ
187 } elseif ($action == 'set' && ($value == 'public' || $value == 'private')) {
188 if (!S::has_xsrf_token()) {
189 return PL_FORBIDDEN;
190 }
191
3e53a496
FB
192 if ($user->hasProfile()) {
193 XDB::execute("UPDATE profiles
194 SET alias_pub = {?}
aab2ffdd 195 WHERE pid = {?}",
3e53a496 196 $value, $user->profile()->id());
81b5b746 197 }
3e53a496 198 $visibility = ($value == 'public');
8446dbd3 199 exit;
81b5b746 200 }
201
3e53a496
FB
202 $page->assign('actuel', $alias);
203 $page->assign('user', $user);
204 $page->assign('mail_public', $visibility);
81b5b746 205 }
206
26ba053e 207 function handler_redirect($page, $action = null, $email = null)
81b5b746 208 {
209 global $globals;
210
211 require_once 'emails.inc.php';
212
213 $page->changeTpl('emails/redirect.tpl');
214
2d997414
VZ
215 $user = S::user();
216 $page->assign_by_ref('user', $user);
217 $page->assign('eleve', $user->promo() >= date("Y") - 5);
3b83212e 218
2d997414 219 $redirect = new Redirect($user);
81b5b746 220
6d6b65bf 221 // FS#703 : $_GET is urldecoded twice, hence
222 // + (the data) => %2B (in the url) => + (first decoding) => ' ' (second decoding)
223 // Since there can be no spaces in emails, we can fix this with :
224 $email = str_replace(' ', '+', $email);
225
2d997414 226 // Apply email redirection change requests.
1060c854 227 $result = SUCCESS;
81b5b746 228 if ($action == 'remove' && $email) {
1060c854 229 $result = $redirect->delete_email($email);
81b5b746 230 }
e1547442
FB
231
232 if ($action == 'active' && $email) {
233 $redirect->modify_one_email($email, true);
234 }
235
236 if ($action == 'inactive' && $email) {
237 $redirect->modify_one_email($email, false);
238 }
239
240 if ($action == 'rewrite' && $email) {
241 $rewrite = @func_get_arg(3);
242 $redirect->modify_one_email_redirect($email, $rewrite);
243 }
244
40d428d8
VZ
245 if (Env::has('emailop')) {
246 S::assert_xsrf_token();
247
5e2307dc 248 $actifs = Env::v('emails_actifs', Array());
b7582015 249 print_r(Env::v('emails_rewrite'));
5e2307dc 250 if (Env::v('emailop') == "ajouter" && Env::has('email')) {
0fbd1f3f 251 $error_email = false;
b715c1e1 252 $new_email = Env::v('email');
6ea6d9c1 253 if ($new_email == "new@example.org") {
b715c1e1
SJ
254 $new_email = Env::v('email_new');
255 }
aef0283b
VZ
256 $result = $redirect->add_email($new_email);
257 if ($result == ERROR_INVALID_EMAIL) {
0fbd1f3f 258 $error_email = true;
b715c1e1
SJ
259 $page->assign('email', $new_email);
260 }
aef0283b 261 $page->assign('retour', $result);
0fbd1f3f 262 $page->assign('error_email', $error_email);
81b5b746 263 } elseif (empty($actifs)) {
1060c854 264 $result = ERROR_INACTIVE_REDIRECTION;
81b5b746 265 } elseif (is_array($actifs)) {
1060c854 266 $result = $redirect->modify_email($actifs, Env::v('emails_rewrite', Array()));
81b5b746 267 }
268 }
269
1060c854 270 switch ($result) {
44b071c2
SJ
271 case ERROR_INACTIVE_REDIRECTION:
272 $page->trigError('Tu ne peux pas avoir aucune adresse de redirection active, sinon ton adresse '
4478f95e 273 . $user->forlifeEmail() . ' ne fonctionnerait plus.');
44b071c2
SJ
274 break;
275 case ERROR_INVALID_EMAIL:
0fbd1f3f 276 $page->trigError('Erreur : l\'email n\'est pas valide.');
44b071c2
SJ
277 break;
278 case ERROR_LOOP_EMAIL:
4478f95e 279 $page->trigError('Erreur : ' . $user->forlifeEmail()
44b071c2
SJ
280 . ' ne doit pas être renvoyé vers lui-même, ni vers son équivalent en '
281 . $globals->mail->domain2 . ' ni vers polytechnique.edu.');
282 break;
283 }
284
2d997414 285 // Fetch the @alias_dom email alias, if any.
08cce2ff 286 $res = XDB::query(
81b5b746 287 "SELECT alias
288 FROM virtual
289 INNER JOIN virtual_redirect USING(vid)
290 WHERE (redirect={?} OR redirect={?})
eaf30d86 291 AND alias LIKE '%@{$globals->mail->alias_dom}'",
2d997414
VZ
292 $user->forlifeEmail(),
293 // TODO: remove this über-ugly hack. The issue is that you need
294 // to remove all @m4x.org addresses in virtual_redirect first.
295 $user->login() . '@' . $globals->mail->domain2);
81b5b746 296 $melix = $res->fetchOneCell();
297 if ($melix) {
298 list($melix) = explode('@', $melix);
299 $page->assign('melix',$melix);
300 }
301
2d997414 302 // Fetch existing email aliases.
08cce2ff 303 $res = XDB::query(
81b5b746 304 "SELECT alias,expire
305 FROM aliases
fe13bc1d 306 WHERE uid={?} AND (type='a_vie' OR type='alias')
2d997414 307 ORDER BY !FIND_IN_SET('usage',flags), LENGTH(alias)", $user->id());
81b5b746 308 $page->assign('alias', $res->fetchAllAssoc());
2d997414 309 $page->assign('emails', $redirect->emails);
aab4661d 310
2d997414 311 // Display GoogleApps acount information.
f5c4bf30 312 require_once 'googleapps.inc.php';
2d997414 313 $page->assign('googleapps', GoogleAppsAccount::account_status($user->id()));
b715c1e1
SJ
314
315 require_once 'emails.combobox.inc.php';
316 fill_email_combobox($page);
81b5b746 317 }
318
26ba053e 319 function handler_antispam($page, $statut_filtre = null)
81b5b746 320 {
321 require_once 'emails.inc.php';
8f201b69
FB
322 $wp = new PlWikiPage('Xorg.Antispam');
323 $wp->buildCache();
81b5b746 324
325 $page->changeTpl('emails/antispam.tpl');
326
ea280814
SJ
327 $user = S::user();
328 $bogo = new Bogo($user);
b7582015 329 if (isset($statut_filtre)) {
11ed26e5 330 $bogo->change($statut_filtre + 0);
81b5b746 331 }
2d997414 332 $page->assign('filtre', $bogo->level());
81b5b746 333 }
334
26ba053e 335 function handler_submit($page)
62ce6356 336 {
8f201b69
FB
337 $wp = new PlWikiPage('Xorg.Mails');
338 $wp->buildCache();
62ce6356 339 $page->changeTpl('emails/submit_spam.tpl');
340
40d428d8
VZ
341 if (Post::has('send_email')) {
342 S::assert_xsrf_token();
343
f3df6d38 344 $upload = PlUpload::get($_FILES['mail'], S::user()->login(), 'spam.submit', true);
15603084 345 if (!$upload) {
a7d35093 346 $page->trigError('Une erreur a été rencontrée lors du transfert du fichier');
62ce6356 347 return;
348 }
15603084 349 $mime = $upload->contentType();
62ce6356 350 if ($mime != 'text/x-mail' && $mime != 'message/rfc822') {
15603084 351 $upload->clear();
faefdbb7 352 $page->trigError('Le fichier ne contient pas un email complet');
62ce6356 353 return;
354 }
2d997414
VZ
355 $type = (Post::v('type') == 'spam' ? 'spam' : 'nonspam');
356
62ce6356 357 global $globals;
2d997414 358 $box = $type . '@' . $globals->mail->domain;
62ce6356 359 $mailer = new PlMailer();
360 $mailer->addTo($box);
2d997414
VZ
361 $mailer->setFrom('"' . S::user()->fullName() . '" <web@' . $globals->mail->domain . '>');
362 $mailer->setTxtBody($type . ' soumis par ' . S::user()->login() . ' via le web');
363 $mailer->addUploadAttachment($upload, $type . '.mail');
62ce6356 364 $mailer->send();
a7d35093 365 $page->trigSuccess('Le message a été transmis à ' . $box);
15603084 366 $upload->clear();
62ce6356 367 }
368 }
369
26ba053e 370 function handler_send($page)
81b5b746 371 {
81b5b746 372 $page->changeTpl('emails/send.tpl');
373
46f272fe 374 $page->setTitle('Envoyer un email');
81b5b746 375
376 // action si on recoit un formulaire
3360c04f 377 if (Post::has('save')) {
46504fb3
VZ
378 if (!S::has_xsrf_token()) {
379 return PL_FORBIDDEN;
380 }
381
3360c04f
FB
382 unset($_POST['save']);
383 if (trim(preg_replace('/-- .*/', '', Post::v('contenu'))) != "") {
384 $_POST['to_contacts'] = explode(';', @$_POST['to_contacts']);
385 $_POST['cc_contacts'] = explode(';', @$_POST['cc_contacts']);
386 $data = serialize($_POST);
00ba8a74
SJ
387 XDB::execute('INSERT INTO email_send_save (uid, data)
388 VALUES ({?}, {?})
389 ON DUPLICATE KEY UPDATE data = VALUES(data)',
48e683dd 390 S::user()->id('uid'), $data);
3360c04f
FB
391 }
392 exit;
40d428d8
VZ
393 } else if (Env::v('submit') == 'Envoyer') {
394 S::assert_xsrf_token();
395
91a14f73 396 function getEmails($aliases)
397 {
398 if (!is_array($aliases)) {
399 return null;
400 }
2d5264c6
FB
401 $uf = new UserFilter(new UFC_Hrpid($aliases));
402 $users = $uf->iterUsers();
91a14f73 403 $ret = array();
2d5264c6
FB
404 while ($user = $users->next()) {
405 $ret[] = $user->forlife;
91a14f73 406 }
407 return join(', ', $ret);
408 }
409
5e68682e 410 $error = false;
da419622 411 foreach ($_FILES as &$file) {
f3df6d38 412 if ($file['name'] && !PlUpload::get($file, S::user()->login(), 'emails.send', false)) {
a7d35093 413 $page->trigError(PlUpload::$lastError);
5e68682e
FB
414 $error = true;
415 break;
da419622 416 }
417 }
418
5e68682e
FB
419 if (!$error) {
420 XDB::execute("DELETE FROM email_send_save
48e683dd
FB
421 WHERE uid = {?}",
422 S::user()->id());
5e68682e
FB
423
424 $to2 = getEmails(Env::v('to_contacts'));
425 $cc2 = getEmails(Env::v('cc_contacts'));
426 $txt = str_replace('^M', '', Env::v('contenu'));
3c7b9bad
SJ
427 $to = str_replace(';', ',', Env::t('to'));
428 $subj = Env::t('sujet');
429 $from = Env::t('from');
430 $cc = str_replace(';', ',', Env::t('cc'));
431 $bcc = str_replace(';', ',', Env::t('bcc'));
5e68682e 432
6ff4f8c0
SJ
433 $email_regex = '/^[a-z0-9.\-+_\$]+@([\-.+_]?[a-z0-9])+$/i';
434 foreach (explode(',', $to . ',' . $cc . ',' . $bcc) as $email) {
435 $email = trim($email);
436 if ($email != '' && !preg_match($email_regex, $email)) {
437 $page->trigError("L'adresse email " . $email . ' est erronée.');
438 $error = true;
439 }
440 }
5e68682e 441 if (empty($to) && empty($cc) && empty($to2) && empty($bcc) && empty($cc2)) {
a7d35093 442 $page->trigError("Indique au moins un destinataire.");
6ff4f8c0
SJ
443 $error = true;
444 }
445
446 if ($error) {
f3df6d38 447 $page->assign('uploaded_f', PlUpload::listFilenames(S::user()->login(), 'emails.send'));
5e68682e
FB
448 } else {
449 $mymail = new PlMailer();
450 $mymail->setFrom($from);
451 $mymail->setSubject($subj);
452 if (!empty($to)) { $mymail->addTo($to); }
453 if (!empty($cc)) { $mymail->addCc($cc); }
454 if (!empty($bcc)) { $mymail->addBcc($bcc); }
455 if (!empty($to2)) { $mymail->addTo($to2); }
456 if (!empty($cc2)) { $mymail->addCc($cc2); }
f3df6d38 457 $files =& PlUpload::listFiles(S::user()->login(), 'emails.send');
5e68682e
FB
458 foreach ($files as $name=>&$upload) {
459 $mymail->addUploadAttachment($upload, $name);
460 }
461 if (Env::v('nowiki')) {
462 $mymail->setTxtBody(wordwrap($txt, 78, "\n"));
463 } else {
464 $mymail->setWikiBody($txt);
465 }
466 if ($mymail->send()) {
faefdbb7 467 $page->trigSuccess("Ton email a bien été envoyé.");
2d997414 468 $_REQUEST = array('bcc' => S::user()->bestEmail());
f3df6d38 469 PlUpload::clear(S::user()->login(), 'emails.send');
5e68682e 470 } else {
a7d35093 471 $page->trigError("Erreur lors de l'envoi du courriel, réessaye.");
f3df6d38 472 $page->assign('uploaded_f', PlUpload::listFilenames(S::user()->login(), 'emails.send'));
5e68682e 473 }
81b5b746 474 }
475 }
476 } else {
3360c04f
FB
477 $res = XDB::query("SELECT data
478 FROM email_send_save
479 WHERE uid = {?}", S::i('uid'));
480 if ($res->numRows() == 0) {
f3df6d38 481 PlUpload::clear(S::user()->login(), 'emails.send');
2d997414 482 $_REQUEST['bcc'] = S::user()->bestEmail();
3360c04f
FB
483 } else {
484 $data = unserialize($res->fetchOneCell());
485 $_REQUEST = array_merge($_REQUEST, $data);
486 }
81b5b746 487 }
488
2d5264c6
FB
489 $uf = new UserFilter(new PFC_And(new UFC_Contact(S::user()),
490 new UFC_Registered()),
491 UserFilter::sortByName());
492 $contacts = $uf->getProfiles();
48e683dd 493 $page->assign('contacts', $contacts);
5e68682e 494 $page->assign('maxsize', ini_get('upload_max_filesize') . 'o');
2d997414 495 $page->assign('user', S::user());
81b5b746 496 }
497
26ba053e 498 function handler_test($page, $hruid = null)
5ff3f06b 499 {
e4ecada4
VZ
500 require_once 'emails.inc.php';
501
46504fb3
VZ
502 if (!S::has_xsrf_token()) {
503 return PL_FORBIDDEN;
504 }
d0c3e04d
VZ
505
506 // Retrieves the User object for the test email recipient.
dd70cd28 507 if (S::admin() && $hruid) {
d0c3e04d
VZ
508 $user = User::getSilent($hruid);
509 } else {
510 $user = S::user();
511 }
512 if (!$user) {
513 return PL_NOT_FOUND;
5ff3f06b 514 }
e4ecada4 515
d0c3e04d 516 // Sends the test email.
12a587df 517 $redirect = new Redirect($user);
e4ecada4
VZ
518
519 $mailer = new PlMailer('emails/test.mail.tpl');
d0c3e04d 520 $mailer->assign('email', $user->bestEmail());
e4ecada4 521 $mailer->assign('redirects', $redirect->active_emails());
d0c3e04d
VZ
522 $mailer->assign('display_name', $user->displayName());
523 $mailer->assign('sexe', $user->isFemale());
524 $mailer->send($user->isEmailFormatHtml());
5ff3f06b
FB
525 exit;
526 }
527
26ba053e 528 function handler_rewrite_in($page, $mail, $hash)
3d17e48f
FB
529 {
530 $page->changeTpl('emails/rewrite.tpl');
531 $page->assign('option', 'in');
532 if (empty($mail) || empty($hash)) {
533 return PL_NOT_FOUND;
534 }
535 $pos = strrpos($mail, '_');
536 if ($pos === false) {
537 return PL_NOT_FOUND;
538 }
539 $mail{$pos} = '@';
540 $res = XDB::query("SELECT COUNT(*)
541 FROM emails
542 WHERE email = {?} AND hash = {?}",
543 $mail, $hash);
544 $count = intval($res->fetchOneCell());
545 if ($count > 0) {
546 XDB::query("UPDATE emails
547 SET allow_rewrite = true, hash = NULL
548 WHERE email = {?} AND hash = {?}",
549 $mail, $hash);
550 $page->trigSuccess("Réécriture activée pour l'adresse " . $mail);
551 return;
552 }
553 return PL_NOT_FOUND;
554 }
555
26ba053e 556 function handler_rewrite_out($page, $mail, $hash)
3d17e48f
FB
557 {
558 $page->changeTpl('emails/rewrite.tpl');
559 $page->assign('option', 'out');
560 if (empty($mail) || empty($hash)) {
561 return PL_NOT_FOUND;
562 }
563 $pos = strrpos($mail, '_');
564 if ($pos === false) {
565 return PL_NOT_FOUND;
566 }
567 $mail{$pos} = '@';
568 $res = XDB::query("SELECT COUNT(*)
569 FROM emails
570 WHERE email = {?} AND hash = {?}",
571 $mail, $hash);
572 $count = intval($res->fetchOneCell());
573 if ($count > 0) {
574 global $globals;
575 $res = XDB::query("SELECT e.email, e.rewrite, a.alias
576 FROM emails AS e
fe13bc1d 577 INNER JOIN aliases AS a ON (a.uid = e.uid AND a.type = 'a_vie')
3d17e48f
FB
578 WHERE e.email = {?} AND e.hash = {?}",
579 $mail, $hash);
580 XDB::query("UPDATE emails
581 SET allow_rewrite = false, hash = NULL
582 WHERE email = {?} AND hash = {?}",
583 $mail, $hash);
584 list($mail, $rewrite, $forlife) = $res->fetchOneRow();
585 $mail = new PlMailer();
586 $mail->setFrom("webmaster@" . $globals->mail->domain);
587 $mail->addTo("support@" . $globals->mail->domain);
588 $mail->setSubject("Tentative de détournement de correspondance via le rewrite");
589 $mail->setTxtBody("$forlife a tenté un rewrite de $mail vers $rewrite. Cette demande a été rejetée via le web");
590 $mail->send();
591 $page->trigWarning("Un mail d'alerte a été envoyé à l'équipe de " . $globals->core->sitename);
592 return;
593 }
594 return PL_NOT_FOUND;
595 }
596
26ba053e 597 function handler_imap_in($page, $hash = null, $login = null)
2ee43273
FB
598 {
599 $page->changeTpl('emails/imap_register.tpl');
12a587df 600 $user = null;
2ee43273 601 if (!empty($hash) || !empty($login)) {
12a587df
VZ
602 $user = User::getSilent($login);
603 if ($user) {
1bf36cd1
SJ
604 $req = XDB::query('SELECT 1
605 FROM newsletter_ins
606 WHERE uid = {?} AND hash = {?}',
607 $user->id(), $hash);
12a587df
VZ
608 if ($req->numRows() == 0) {
609 $user = null;
610 }
611 }
2ee43273
FB
612 }
613
614 require_once('emails.inc.php');
615 $page->assign('ok', false);
12a587df
VZ
616 if (S::logged() && (is_null($user) || $user->id() == S::i('uid'))) {
617 $storage = new EmailStorage(S::user(), 'imap');
2ee43273
FB
618 $storage->activate();
619 $page->assign('ok', true);
2ab3486b
SJ
620 $page->assign('yourself', S::user()->displayName());
621 $page->assign('sexe', S::user()->isFemale());
12a587df
VZ
622 } else if (!S::logged() && $user) {
623 $storage = new EmailStorage($user, 'imap');
2ee43273
FB
624 $storage->activate();
625 $page->assign('ok', true);
2ab3486b 626 $page->assign('yourself', $user->displayName());
12a587df 627 $page->assign('sexe', $user->isFemale());
2ee43273
FB
628 }
629 }
630
26ba053e 631 function handler_broken($page, $warn = null, $email = null)
81b5b746 632 {
633 require_once 'emails.inc.php';
8f201b69
FB
634 $wp = new PlWikiPage('Xorg.PatteCassée');
635 $wp->buildCache();
81b5b746 636
637 global $globals;
638
639 $page->changeTpl('emails/broken.tpl');
640
40d428d8 641 if ($warn == 'warn' && $email) {
d4b25d1a 642 S::assert_xsrf_token();
40d428d8 643
81b5b746 644 $email = valide_email($email);
a7de4ef7 645 // vérifications d'usage
2c93e70e
FB
646 $uid = XDB::fetchOneCell("SELECT uid
647 FROM emails
648 WHERE email = {?}", $email);
649 if ($uid) {
650 $dest = User::getWithUID($uid);
651
652 $mail = new PlMailer('emails/broken-web.mail.tpl');
653 $mail->assign('email', $email);
654 $mail->assign('request', S::user());
655 $mail->sendTo($dest);
6bb2f79a 656 $page->trigSuccess('Email envoyé&nbsp;!');
81b5b746 657 }
40d428d8
VZ
658 } elseif (Post::has('email')) {
659 S::assert_xsrf_token();
660
5e2307dc 661 $email = valide_email(Post::v('email'));
81b5b746 662
663 list(,$fqdn) = explode('@', $email);
664 $fqdn = strtolower($fqdn);
40d428d8 665 if ($fqdn == 'polytechnique.org' || $fqdn == 'melix.org' || $fqdn == 'm4x.org' || $fqdn == 'melix.net') {
81b5b746 666 $page->assign('neuneu', true);
667 } else {
668 $page->assign('email',$email);
8b230d50
SJ
669 $x = XDB::fetchOneAssoc("SELECT e1.uid, e1.panne != 0 AS panne, a.hruid,
670 (COUNT(e2.uid) + IF(FIND_IN_SET('googleapps', eo.storage), 1, 0)) AS nb_mails
671 FROM emails AS e1
2c93e70e 672 INNER JOIN email_options AS eo ON (eo.uid = e1.uid)
8b230d50
SJ
673 INNER JOIN accounts AS a ON (e1.uid = a.uid)
674 LEFT JOIN emails AS e2 ON (e1.uid = e2.uid
675 AND FIND_IN_SET('active', e2.flags)
676 AND e1.email != e2.email)
2c93e70e
FB
677 WHERE e1.email = {?}
678 GROUP BY e1.uid", $email);
679 if ($x) {
a7de4ef7 680 // on écrit dans la base que l'adresse est cassée
81b5b746 681 if (!$x['panne']) {
2c93e70e
FB
682 XDB::execute("UPDATE emails
683 SET panne=NOW(), last=NOW(), panne_level = 1
684 WHERE email = {?}", $email);
74938c82 685 } else {
2c93e70e
FB
686 XDB::execute("UPDATE emails
687 SET panne_level = 1
688 WHERE email = {?} AND panne_level = 0", $email);
81b5b746 689 }
2c93e70e 690 $x['user'] = User::getWithUID($x['uid']);
81b5b746 691 $page->assign_by_ref('x', $x);
692 }
693 }
694 }
695 }
9e570fe0 696
26ba053e 697 function handler_duplicated($page, $action = 'list', $email = null)
9e570fe0 698 {
699 $page->changeTpl('emails/duplicated.tpl');
700
701 $states = array('pending' => 'En attente...',
a7de4ef7 702 'safe' => 'Pas d\'inquiétude',
9e570fe0 703 'unsafe' => 'Recherches en cours',
704 'dangerous' => 'Usurpations par cette adresse');
705 $page->assign('states', $states);
706
40d428d8
VZ
707 if (Post::has('action')) {
708 S::assert_xsrf_token();
46504fb3 709 }
9e570fe0 710 switch (Post::v('action')) {
46504fb3 711 case 'create':
9e570fe0 712 if (trim(Post::v('emailN')) != '') {
06f4daf9 713 Xdb::execute('INSERT IGNORE INTO email_watch (email, state, detection, last, uid, description)
9e570fe0 714 VALUES ({?}, {?}, CURDATE(), NOW(), {?}, {?})',
715 trim(Post::v('emailN')), Post::v('stateN'), S::i('uid'), Post::v('descriptionN'));
716 };
717 break;
718
46504fb3 719 case 'edit':
06f4daf9 720 Xdb::execute('UPDATE email_watch
9e570fe0 721 SET state = {?}, last = NOW(), uid = {?}, description = {?}
722 WHERE email = {?}', Post::v('stateN'), S::i('uid'), Post::v('descriptionN'), Post::v('emailN'));
723 break;
724
46504fb3 725 default:
9e570fe0 726 if ($action == 'delete' && !is_null($email)) {
06f4daf9 727 Xdb::execute('DELETE FROM email_watch WHERE email = {?}', $email);
9e570fe0 728 }
729 }
730 if ($action != 'create' && $action != 'edit') {
731 $action = 'list';
732 }
733 $page->assign('action', $action);
734
735 if ($action == 'list') {
736 $sql = "SELECT w.email, w.detection, w.state, a.alias AS forlife
06f4daf9 737 FROM email_watch AS w
ca6d07f4 738 LEFT JOIN emails AS e USING(email)
fe13bc1d 739 LEFT JOIN aliases AS a ON (a.uid = e.uid AND a.type = 'a_vie')
9e570fe0 740 ORDER BY w.state, w.email, a.alias";
741 $it = Xdb::iterRow($sql);
742
743 $table = array();
744 $props = array();
745 while (list($email, $date, $state, $forlife) = $it->next()) {
746 if (count($props) == 0 || $props['mail'] != $email) {
747 if (count($props) > 0) {
748 $table[] = $props;
749 }
750 $props = array('mail' => $email,
751 'detection' => $date,
752 'state' => $state,
753 'users' => array($forlife));
754 } else {
755 $props['users'][] = $forlife;
756 }
757 }
758 if (count($props) > 0) {
759 $table[] = $props;
760 }
761 $page->assign('table', $table);
762 } elseif ($action == 'edit') {
763 $sql = "SELECT w.detection, w.state, w.last, w.description,
764 a1.alias AS edit, a2.alias AS forlife
06f4daf9 765 FROM email_watch AS w
fe13bc1d 766 LEFT JOIN aliases AS a1 ON (a1.uid = w.uid AND a1.type = 'a_vie')
9615c895 767 LEFT JOIN emails AS e ON (w.email = e.email)
fe13bc1d 768 LEFT JOIN aliases AS a2 ON (a2.uid = e.uid AND a2.type = 'a_vie')
9e570fe0 769 WHERE w.email = {?}
770 ORDER BY a2.alias";
771 $it = Xdb::iterRow($sql, $email);
772
773 $props = array();
774 while (list($detection, $state, $last, $description, $edit, $forlife) = $it->next()) {
775 if (count($props) == 0) {
776 $props = array('mail' => $email,
777 'detection' => $detection,
778 'state' => $state,
779 'last' => $last,
780 'description' => $description,
781 'edit' => $edit,
782 'users' => array($forlife));
783 } else {
784 $props['users'][] = $forlife;
785 }
786 }
787 $page->assign('doublon', $props);
788 }
789 }
d4b25d1a 790
26ba053e 791 function handler_lost($page, $action = 'list', $email = null)
7727ffc7 792 {
793 $page->changeTpl('emails/lost.tpl');
eaf30d86 794
d4b25d1a 795 $page->assign('lost_emails',
73682f22
SJ
796 XDB::iterator('SELECT a.uid, a.hruid, pd.promo
797 FROM accounts AS a
798 INNER JOIN email_options AS eo ON (eo.uid = a.uid)
799 LEFT JOIN emails AS e ON (a.uid = e.uid AND FIND_IN_SET(\'active\', e.flags))
800 LEFT JOIN account_profiles AS ap ON (ap.uid = a.uid AND FIND_IN_SET(\'owner\', perms))
801 LEFT JOIN profile_display AS pd ON (ap.pid = pd.pid)
802 WHERE e.uid IS NULL AND FIND_IN_SET(\'googleapps\', eo.storage) = 0
803 AND a.state = \'active\'
804 ORDER BY pd.promo, a.hruid'));
7727ffc7 805 }
67e06366 806
26ba053e 807 function handler_broken_addr($page)
67e06366
SJ
808 {
809 require_once 'emails.inc.php';
810 $page->changeTpl('emails/broken_addr.tpl');
811
812 if (Env::has('sort_broken')) {
813 S::assert_xsrf_token();
814
815 $list = trim(Env::v('list'));
816 if ($list == '') {
817 $page->trigError('La liste est vide.');
818 } else {
819 $valid_emails = array();
820 $invalid_emails = array();
821 $broken_list = explode("\n", $list);
822 sort($broken_list);
823 foreach ($broken_list as $orig_email) {
35a22488
SJ
824 $orig_email = trim($orig_email);
825 if ($orig_email != '') {
826 $email = valide_email($orig_email);
827 if (empty($email) || $email == '@') {
828 $invalid_emails[] = trim($orig_email) . ': invalid email';
829 } elseif (!in_array($email, $valid_emails)) {
830 $res = XDB::query('SELECT COUNT(*)
831 FROM emails
832 WHERE email = {?}', $email);
833 if ($res->fetchOneCell() > 0) {
834 $valid_emails[] = $email;
835 } else {
836 $invalid_emails[] = "$orig_email: no such redirection";
837 }
67e06366
SJ
838 }
839 }
840 }
841
842 $page->assign('valid_emails', $valid_emails);
843 $page->assign('invalid_emails', $invalid_emails);
844 }
845 }
846
847 if (Env::has('process_broken')) {
848 S::assert_xsrf_token();
849
850 $list = trim(Env::v('list'));
851 if ($list == '') {
852 $page->trigError('La liste est vide.');
853 } else {
67e06366
SJ
854 $broken_user_list = array();
855 $broken_list = explode("\n", $list);
856 sort($broken_list);
857 foreach ($broken_list as $orig_email) {
858 $email = valide_email(trim($orig_email));
859 if (empty($email) || $email == '@') {
860 continue;
861 }
862
863 $sel = XDB::query(
864 "SELECT e1.uid, e1.panne != 0 AS panne, count(e2.uid) AS nb_mails,
a06602ae 865 acc.full_name, a.alias
67e06366
SJ
866 FROM emails AS e1
867 LEFT JOIN emails AS e2 ON (e1.uid = e2.uid AND FIND_IN_SET('active', e2.flags)
868 AND e1.email != e2.email)
a06602ae 869 INNER JOIN accounts AS acc ON (e1.uid = acc.uid)
fe13bc1d 870 INNER JOIN aliases AS a ON (acc.uid = a.uid AND FIND_IN_SET('bestalias', a.flags))
67e06366
SJ
871 WHERE e1.email = {?}
872 GROUP BY e1.uid", $email);
873
874 if ($x = $sel->fetchOneAssoc()) {
875 if (!$x['panne']) {
876 XDB::execute('UPDATE emails
877 SET panne=NOW(), last=NOW(), panne_level = 1
878 WHERE email = {?}',
879 $email);
880 } else {
881 XDB::execute('UPDATE emails
882 SET last = CURDATE(), panne_level = panne_level + 1
883 WHERE email = {?}
884 AND DATE_ADD(last, INTERVAL 14 DAY) < CURDATE()',
885 $email);
886 }
887
888 if (!empty($x['nb_mails'])) {
889 $mail = new PlMailer('emails/broken.mail.tpl');
a06602ae 890 $mail->addTo("\"{$x['full_name']}\" <{$x['alias']}@"
69199978 891 . Platal::globals()->mail->domain . '>');
67e06366
SJ
892 $mail->assign('x', $x);
893 $mail->assign('email', $email);
894 $mail->send();
895 }
896
897 if (!isset($broken_user_list[$x['alias']])) {
898 $broken_user_list[$x['alias']] = array($email);
899 } else {
900 $broken_user_list[$x['alias']][] = $email;
901 }
902 }
903 }
904
905 XDB::execute("UPDATE emails
906 SET panne_level = panne_level - 1
907 WHERE flags = 'active' AND panne_level > 1
908 AND DATE_ADD(last, INTERVAL 1 MONTH) < CURDATE()");
909 XDB::execute("UPDATE emails
910 SET panne_level = 0
911 WHERE flags = 'active' AND panne_level = 1
912 AND DATE_ADD(last, INTERVAL 1 YEAR) < CURDATE()");
913
914 // Output the list of users with recently broken addresses,
915 // along with the count of valid redirections.
35a22488 916 require_once 'notifs.inc.php';
023c46fb 917 pl_cached_content_headers('text/x-csv', 1);
67e06366
SJ
918
919 $csv = fopen('php://output', 'w');
7b58e5e4 920 fputcsv($csv, array('nom', 'promo', 'alias', 'bounce', 'nbmails', 'url', 'corps', 'job', 'networking'), ';');
67e06366
SJ
921 foreach ($broken_user_list as $alias => $mails) {
922 $sel = Xdb::query(
7b58e5e4 923 "SELECT acc.uid, count(DISTINCT(e.email)) AS nb_mails,
a06602ae 924 IFNULL(pd.public_name, acc.full_name) AS fullname,
7b58e5e4
SJ
925 IFNULL(pd.promo, 0) AS promo, IFNULL(pce.name, 'Aucun') AS corps,
926 IFNULL(pje.name, 'Aucun') AS job, GROUP_CONCAT(pn.address SEPARATOR ', ') AS networking
927 FROM aliases AS a
928 INNER JOIN accounts AS acc ON (a.uid = acc.uid)
929 LEFT JOIN emails AS e ON (e.uid = acc.uid
930 AND FIND_IN_SET('active', e.flags) AND e.panne = 0)
931 LEFT JOIN account_profiles AS ap ON (acc.uid = ap.uid AND FIND_IN_SET('owner', ap.perms))
932 LEFT JOIN profile_display AS pd ON (pd.pid = ap.pid)
933 LEFT JOIN profile_corps AS pc ON (pc.pid = ap.pid)
934 LEFT JOIN profile_corps_enum AS pce ON (pc.current_corpsid = pce.id)
935 LEFT JOIN profile_job AS pj ON (pj.pid = ap.pid)
936 LEFT JOIN profile_job_enum AS pje ON (pj.jobid = pje.id)
937 LEFT JOIN profile_networking AS pn ON (pn.pid = ap.pid)
67e06366 938 WHERE a.alias = {?}
a06602ae 939 GROUP BY acc.uid", $alias);
67e06366
SJ
940
941 if ($x = $sel->fetchOneAssoc()) {
ae6cd633 942 if ($x['nb_mails'] == 0) {
e03a98e9
SJ
943 $user = User::getSilentWithUID($x['uid']);
944 $profile = $user->profile();
945 WatchProfileUpdate::register($profile, 'broken');
ae6cd633 946 }
a06602ae 947 fputcsv($csv, array($x['fullname'], $x['promo'], $alias,
6139d6cb 948 join(',', $mails), $x['nb_mails'],
7b58e5e4
SJ
949 'https://www.polytechnique.org/marketing/broken/' . $alias,
950 $x['corps'], $x['job'], $x['networking']), ';');
67e06366
SJ
951 }
952 }
953 fclose($csv);
954 exit;
955 }
956 }
957 }
81b5b746 958}
959
a7de4ef7 960// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
81b5b746 961?>