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