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