Non significant spaces suck.
[platal.git] / modules / email.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2007 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22 class EmailModule extends PLModule
23 {
24 function handlers()
25 {
26 return array(
27 'emails' => $this->make_hook('emails', AUTH_COOKIE),
28 'emails/alias' => $this->make_hook('alias', AUTH_MDP),
29 'emails/antispam' => $this->make_hook('antispam', AUTH_MDP),
30 'emails/broken' => $this->make_hook('broken', AUTH_COOKIE),
31 'emails/redirect' => $this->make_hook('redirect', AUTH_MDP),
32 'emails/send' => $this->make_hook('send', AUTH_MDP),
33 'emails/antispam/submit' => $this->make_hook('submit', AUTH_COOKIE),
34
35 'admin/emails/duplicated' => $this->make_hook('duplicated', AUTH_MDP, 'admin'),
36 'admin/emails/watch' => $this->make_hook('duplicated', AUTH_MDP, 'admin'),
37 'admin/emails/lost' => $this->make_hook('lost', AUTH_MDP, 'admin'),
38 );
39 }
40
41 function handler_emails(&$page, $action = null, $email = null)
42 {
43 global $globals;
44
45 $page->changeTpl('emails/index.tpl');
46 $page->assign('xorg_title','Polytechnique.org - Mes emails');
47
48 $uid = S::v('uid');
49
50 if ($action == 'best' && $email) {
51 // bestalias is the first bit : 1
52 // there will be maximum 8 bits in flags : 255
53 XDB::execute("UPDATE aliases SET flags=flags & (255 - 1) WHERE id={?}", $uid);
54 XDB::execute("UPDATE aliases SET flags=flags | 1 WHERE id={?} AND alias={?}",
55 $uid, $email);
56 }
57
58 // on regarde si on a affaire à un homonyme
59 $sql = "SELECT alias, (type='a_vie') AS a_vie,
60 (alias REGEXP '\\\\.[0-9]{2}$') AS cent_ans,
61 FIND_IN_SET('bestalias',flags) AS best, expire
62 FROM aliases
63 WHERE id = {?} AND type!='homonyme'
64 ORDER BY LENGTH(alias)";
65 $page->assign('aliases', XDB::iterator($sql, $uid));
66
67 $homonyme = XDB::query("SELECT alias FROM aliases INNER JOIN homonymes ON (id = homonyme_id) WHERE user_id = {?} AND type = 'homonyme'", $uid);
68 $page->assign('homonyme', $homonyme->fetchOneCell());
69
70 $sql = "SELECT email
71 FROM emails
72 WHERE uid = {?} AND FIND_IN_SET('active', flags)";
73 $page->assign('mails', XDB::iterator($sql, $uid));
74
75
76 // on regarde si l'utilisateur a un alias et si oui on l'affiche !
77 $forlife = S::v('forlife');
78 $res = XDB::query(
79 "SELECT alias
80 FROM virtual AS v
81 INNER JOIN virtual_redirect AS vr USING(vid)
82 WHERE (redirect={?} OR redirect={?})
83 AND alias LIKE '%@{$globals->mail->alias_dom}'",
84 $forlife.'@'.$globals->mail->domain, $forlife.'@'.$globals->mail->domain2);
85 $page->assign('melix', $res->fetchOneCell());
86 }
87
88 function handler_alias(&$page, $action = null, $value = null)
89 {
90 require_once 'validations.inc.php';
91
92 global $globals;
93
94 $page->changeTpl('emails/alias.tpl');
95 $page->assign('xorg_title','Polytechnique.org - Alias melix.net');
96
97 $uid = S::v('uid');
98 $forlife = S::v('forlife');
99
100 $page->assign('demande', AliasReq::get_request($uid));
101
102 if ($action == 'delete' && $value) {
103 //Suppression d'un alias
104 XDB::execute(
105 'DELETE virtual, virtual_redirect
106 FROM virtual
107 INNER JOIN virtual_redirect USING (vid)
108 WHERE alias = {?} AND (redirect = {?} OR redirect = {?})', $value,
109 $forlife.'@'.$globals->mail->domain, $forlife.'@'.$globals->mail->domain2);
110 }
111
112 //Récupération des alias éventuellement existants
113 $res = XDB::query(
114 "SELECT alias, emails_alias_pub
115 FROM auth_user_quick, virtual
116 INNER JOIN virtual_redirect USING(vid)
117 WHERE ( redirect={?} OR redirect= {?} )
118 AND alias LIKE '%@{$globals->mail->alias_dom}' AND user_id = {?}",
119 $forlife.'@'.$globals->mail->domain,
120 $forlife.'@'.$globals->mail->domain2, S::v('uid'));
121 list($alias, $visibility) = $res->fetchOneRow();
122 $page->assign('actuel', $alias);
123
124 if ($action == 'ask' && Env::has('alias') and Env::has('raison')) {
125 //Si l'utilisateur vient de faire une damande
126
127 $alias = Env::v('alias');
128 $raison = Env::v('raison');
129 $public = (Env::v('public', 'off') == 'on')?"public":"private";
130
131 $page->assign('r_alias', $alias);
132 $page->assign('r_raison', $raison);
133 if ($public == 'public') {
134 $page->assign('r_public', true);
135 }
136
137 //Quelques vérifications sur l'alias (caractères spéciaux)
138 if (!preg_match( "/^[a-zA-Z0-9\-.]{3,20}$/", $alias)) {
139 $page->trig("L'adresse demandée n'est pas valide.
140 Vérifie qu'elle comporte entre 3 et 20 caractères
141 et qu'elle ne contient que des lettres non accentuées,
142 des chiffres ou les caractères - et .");
143 return;
144 } else {
145 //vérifier que l'alias n'est pas déja pris
146 $res = XDB::query('SELECT COUNT(*) FROM virtual WHERE alias={?}',
147 $alias.'@'.$globals->mail->alias_dom);
148 if ($res->fetchOneCell() > 0) {
149 $page->trig("L'alias $alias@{$globals->mail->alias_dom} a déja été attribué.
150 Tu ne peux donc pas l'obtenir.");
151 return;
152 }
153
154 //vérifier que l'alias n'est pas déja en demande
155 $it = new ValidateIterator ();
156 while($req = $it->next()) {
157 if ($req->type == "alias" and $req->alias == $alias) {
158 $page->trig("L'alias $alias@{$globals->mail->alias_dom} a déja été demandé.
159 Tu ne peux donc pas l'obtenir pour l'instant.");
160 return ;
161 }
162 }
163
164 //Insertion de la demande dans la base, écrase les requêtes précédente
165 $myalias = new AliasReq($uid, $alias, $raison, $public);
166 $myalias->submit();
167 $page->assign('success',$alias);
168 return;
169 }
170 }
171 elseif ($action == 'set'
172 && ($value == 'public' || $value == 'private'))
173 {
174 if ($value == 'public') {
175 XDB::execute("UPDATE auth_user_quick SET emails_alias_pub = 'public'
176 WHERE user_id = {?}", S::v('uid'));
177 } else {
178 XDB::execute("UPDATE auth_user_quick SET emails_alias_pub = 'private'
179 WHERE user_id = {?}", S::v('uid'));
180 }
181
182 $visibility = $value;
183 }
184
185 $page->assign('mail_public', ($visibility == 'public'));
186 }
187
188 function handler_redirect(&$page, $action = null, $email = null)
189 {
190 global $globals;
191
192 require_once 'emails.inc.php';
193
194 $page->changeTpl('emails/redirect.tpl');
195
196 $uid = S::v('uid');
197 $forlife = S::v('forlife');
198
199 $page->assign('eleve', S::i('promo') >= date("Y") - 5);
200
201 $redirect = new Redirect(S::v('uid'));
202
203 // FS#703 : $_GET is urldecoded twice, hence
204 // + (the data) => %2B (in the url) => + (first decoding) => ' ' (second decoding)
205 // Since there can be no spaces in emails, we can fix this with :
206 $email = str_replace(' ', '+', $email);
207
208 if ($action == 'remove' && $email) {
209 $retour = $redirect->delete_email($email);
210 $page->assign('retour', $retour);
211 }
212
213 if ($action == 'active' && $email) {
214 $redirect->modify_one_email($email, true);
215 }
216
217 if ($action == 'inactive' && $email) {
218 $redirect->modify_one_email($email, false);
219 }
220
221 if ($action == 'rewrite' && $email) {
222 $rewrite = @func_get_arg(3);
223 $redirect->modify_one_email_redirect($email, $rewrite);
224 }
225
226 if (Env::has('emailop')) {
227 $actifs = Env::v('emails_actifs', Array());
228 print_r(Env::v('emails_rewrite'));
229 if (Env::v('emailop') == "ajouter" && Env::has('email')) {
230 $page->assign('retour', $redirect->add_email(Env::v('email')));
231 } elseif (empty($actifs)) {
232 $page->assign('retour', ERROR_INACTIVE_REDIRECTION);
233 } elseif (is_array($actifs)) {
234 $page->assign('retour', $redirect->modify_email($actifs,
235 Env::v('emails_rewrite',Array())));
236 }
237 }
238
239 $res = XDB::query(
240 "SELECT alias
241 FROM virtual
242 INNER JOIN virtual_redirect USING(vid)
243 WHERE (redirect={?} OR redirect={?})
244 AND alias LIKE '%@{$globals->mail->alias_dom}'",
245 $forlife.'@'.$globals->mail->domain, $forlife.'@'.$globals->mail->domain2);
246 $melix = $res->fetchOneCell();
247 if ($melix) {
248 list($melix) = explode('@', $melix);
249 $page->assign('melix',$melix);
250 }
251
252 $res = XDB::query(
253 "SELECT alias,expire
254 FROM aliases
255 WHERE id={?} AND (type='a_vie' OR type='alias')
256 ORDER BY !FIND_IN_SET('usage',flags), LENGTH(alias)", $uid);
257 $page->assign('alias', $res->fetchAllAssoc());
258 $page->assign('emails',$redirect->emails);
259 }
260
261 function handler_antispam(&$page, $statut_filtre = null)
262 {
263 require_once 'emails.inc.php';
264 require_once('wiki.inc.php');
265 wiki_require_page('Xorg.Antispam');
266
267 $page->changeTpl('emails/antispam.tpl');
268
269 $bogo = new Bogo(S::v('uid'));
270 if (isset($statut_filtre)) {
271 $bogo->change(S::v('uid'), $statut_filtre + 0);
272 }
273 $page->assign('filtre',$bogo->level());
274 }
275
276 function handler_submit(&$page)
277 {
278 require_once('wiki.inc.php');
279 wiki_require_page('Xorg.Mails');
280 $page->changeTpl('emails/submit_spam.tpl');
281
282 if (Post::has('send_email')) {
283 $upload = PlUpload::get($_FILES['mail'], S::v('forlife'), 'spam.submit', true);
284 if (!$upload) {
285 $page->trig('Une erreur a été rencontrée lors du transfert du fichier');
286 return;
287 }
288 $mime = $upload->contentType();
289 if ($mime != 'text/x-mail' && $mime != 'message/rfc822') {
290 $upload->clear();
291 $page->trig('Le fichier ne contient pas un mail complet');
292 return;
293 }
294 global $globals;
295 $box = Post::v('type') . '@' . $globals->mail->domain;
296 $mailer = new PlMailer();
297 $mailer->addTo($box);
298 $mailer->setFrom('"' . S::v('prenom') . ' ' . S::v('nom') . '" <web@' . $globals->mail->domain . '>');
299 $mailer->setTxtBody(Post::v('type') . ' soumis par ' . S::v('forlife') . ' via le web');
300 $mailer->addUploadAttachment($upload, Post::v('type') . '.mail');
301 $mailer->send();
302 $page->trig('Le message a été transmis à ' . $box);
303 $upload->clear();
304 }
305 }
306
307 function handler_send(&$page)
308 {
309 global $globals;
310 $page->changeTpl('emails/send.tpl');
311 $page->addJsLink('ajax.js');
312
313 $page->assign('xorg_title','Polytechnique.org - Envoyer un email');
314
315 // action si on recoit un formulaire
316 if (Env::v('submit') == 'Envoyer')
317 {
318 function getEmails($aliases)
319 {
320 if (!is_array($aliases)) {
321 return null;
322 }
323 $rel = Env::v('contacts');
324 $ret = array();
325 foreach ($aliases as $alias) {
326 $ret[$alias] = $rel[$alias];
327 }
328 return join(', ', $ret);
329 }
330
331 foreach ($_FILES as &$file) {
332 if ($file['name'] && !PlUpload::get($file, S::v('forlife'), 'emails.send', false)) {
333 $page->trig("Impossible de télécharger '" . pl_entities($file['name']) . "'");
334 }
335 }
336
337 $to2 = getEmails(Env::v('to_contacts'));
338 $cc2 = getEmails(Env::v('cc_contacts'));
339 $txt = str_replace('^M', '', Env::v('contenu'));
340 $to = Env::v('to');
341 $subj = Env::v('sujet');
342 $from = Env::v('from');
343 $cc = trim(Env::v('cc'));
344 $bcc = trim(Env::v('bcc'));
345
346 if (empty($to) && empty($cc) && empty($to2) && empty($bcc) && empty($cc2)) {
347 $page->trig("Indique au moins un destinataire.");
348 $page->assign('uploaded_f', PlUpload::listFilenames(S::v('forlife'), 'emails.send'));
349 } else {
350 $mymail = new PlMailer();
351 $mymail->setFrom($from);
352 $mymail->setSubject($subj);
353 if (!empty($to)) { $mymail->addTo($to); }
354 if (!empty($cc)) { $mymail->addCc($cc); }
355 if (!empty($bcc)) { $mymail->addBcc($bcc); }
356 if (!empty($to2)) { $mymail->addTo($to2); }
357 if (!empty($cc2)) { $mymail->addCc($cc2); }
358 $files =& PlUpload::listFiles(S::v('forlife'), 'emails.send');
359 foreach ($files as $name=>&$upload) {
360 $mymail->addUploadAttachment($upload, $name);
361 }
362 if (Env::v('nowiki')) {
363 $mymail->setTxtBody(wordwrap($txt, 78, "\n"));
364 } else {
365 $mymail->setWikiBody($txt);
366 }
367 if ($mymail->send()) {
368 $page->trig("Ton mail a bien été envoyé.");
369 $_REQUEST = array('bcc' => S::v('bestalias').'@'.$globals->mail->domain);
370 PlUpload::clear(S::v('forlife'), 'emails.send');
371 } else {
372 $page->trig("Erreur lors de l'envoi du courriel, réessaye.");
373 $page->assign('uploaded_f', PlUpload::listFilenames(S::v('forlife'), 'emails.send'));
374 }
375 }
376 } else {
377 PlUpload::clear(S::v('forlife'), 'emails.send');
378 $_REQUEST['bcc'] = S::v('bestalias').'@'.$globals->mail->domain;
379 }
380
381 $res = XDB::query(
382 "SELECT u.prenom, u.nom, u.promo, a.alias as forlife
383 FROM auth_user_md5 AS u
384 INNER JOIN contacts AS c ON (u.user_id = c.contact)
385 INNER JOIN aliases AS a ON (u.user_id=a.id AND FIND_IN_SET('bestalias',a.flags))
386 WHERE c.uid = {?}
387 ORDER BY u.nom, u.prenom", S::v('uid'));
388 $page->assign('contacts', $res->fetchAllAssoc());
389 $page->assign('maxsize', ini_get('post_max_size') . 'o');
390 }
391
392 function handler_broken(&$page, $warn = null, $email = null)
393 {
394 require_once 'emails.inc.php';
395 require_once('wiki.inc.php');
396 wiki_require_page('Xorg.PatteCassée');
397
398 global $globals;
399
400 $page->changeTpl('emails/broken.tpl');
401
402 if ($warn == 'warn' && $email) {
403 $email = valide_email($email);
404 // vérifications d'usage
405 $sel = XDB::query(
406 "SELECT e.uid, a.alias
407 FROM emails AS e
408 INNER JOIN auth_user_md5 AS u ON e.uid = u.user_id
409 INNER JOIN aliases AS a ON (e.uid = a.id AND type!='homonyme'
410 AND FIND_IN_SET('bestalias',a.flags))
411 WHERE e.email={?}", $email);
412
413 if (list($uid, $dest) = $sel->fetchOneRow()) {
414 // envoi du mail
415 $message = "Bonjour !
416
417 Ce mail a été généré automatiquement par le service de patte cassée de
418 Polytechnique.org car un autre utilisateur, ".S::v('prenom').' '.S::v('nom').",
419 nous a signalé qu'en t'envoyant un mail, il avait reçu un message d'erreur
420 indiquant que ton adresse de redirection $email
421 ne fonctionnait plus !
422
423 Nous te suggérons de vérifier cette adresse, et le cas échéant de mettre
424 à jour sur le site <{$globals->baseurl}/emails> tes adresses
425 de redirection...
426
427 Pour plus de rensignements sur le service de patte cassée, n'hésites pas à
428 consulter la page <{$globals->baseurl}/emails/broken>.
429
430
431 A bientôt sur Polytechnique.org !
432 L'équipe d'administration <support@" . $globals->mail->domain . '>';
433
434 $mail = new PlMailer();
435 $mail->setFrom('"Polytechnique.org" <support@' . $globals->mail->domain . '>');
436 $mail->addTo("$dest@" . $globals->mail->domain);
437 $mail->setSubject("Une de tes adresse de redirection Polytechnique.org ne marche plus !!");
438 $mail->setTxtBody($message);
439 $mail->send();
440 $page->trig("Mail envoyé ! :o)");
441 }
442 } elseif (Post::has('email')) {
443 $email = valide_email(Post::v('email'));
444
445 list(,$fqdn) = explode('@', $email);
446 $fqdn = strtolower($fqdn);
447 if ($fqdn == 'polytechnique.org' || $fqdn == 'melix.org'
448 || $fqdn == 'm4x.org' || $fqdn == 'melix.net')
449 {
450 $page->assign('neuneu', true);
451 } else {
452 $page->assign('email',$email);
453 $sel = XDB::query(
454 "SELECT e1.uid, e1.panne != 0 AS panne, count(e2.uid) AS nb_mails,
455 u.nom, u.prenom, u.promo, a.alias AS forlife
456 FROM emails as e1
457 LEFT JOIN emails as e2 ON(e1.uid = e2.uid
458 AND FIND_IN_SET('active', e2.flags)
459 AND e1.email != e2.email)
460 INNER JOIN auth_user_md5 as u ON(e1.uid = u.user_id)
461 INNER JOIN aliases AS a ON (a.id = e1.uid AND a.type = 'a_vie')
462 WHERE e1.email = {?}
463 GROUP BY e1.uid", $email);
464 if ($x = $sel->fetchOneAssoc()) {
465 // on écrit dans la base que l'adresse est cassée
466 if (!$x['panne']) {
467 XDB::execute("UPDATE emails
468 SET panne=NOW(),
469 last=NOW(),
470 panne_level = 1
471 WHERE email = {?}", $email);
472 } else {
473 XDB::execute("UPDATE emails
474 SET panne_level = 1
475 WHERE email = {?} AND panne_level = 0", $email);
476 }
477 $page->assign_by_ref('x', $x);
478 }
479 }
480 }
481 }
482
483 function handler_duplicated(&$page, $action = 'list', $email = null)
484 {
485 $page->changeTpl('emails/duplicated.tpl');
486
487 $states = array('pending' => 'En attente...',
488 'safe' => 'Pas d\'inquiétude',
489 'unsafe' => 'Recherches en cours',
490 'dangerous' => 'Usurpations par cette adresse');
491 $page->assign('states', $states);
492
493 switch (Post::v('action')) {
494 case 'create':
495 if (trim(Post::v('emailN')) != '') {
496 Xdb::execute('INSERT IGNORE INTO emails_watch (email, state, detection, last, uid, description)
497 VALUES ({?}, {?}, CURDATE(), NOW(), {?}, {?})',
498 trim(Post::v('emailN')), Post::v('stateN'), S::i('uid'), Post::v('descriptionN'));
499 };
500 break;
501
502 case 'edit':
503 Xdb::execute('UPDATE emails_watch
504 SET state = {?}, last = NOW(), uid = {?}, description = {?}
505 WHERE email = {?}', Post::v('stateN'), S::i('uid'), Post::v('descriptionN'), Post::v('emailN'));
506 break;
507
508 default:
509 if ($action == 'delete' && !is_null($email)) {
510 Xdb::execute('DELETE FROM emails_watch WHERE email = {?}', $email);
511 }
512 }
513 if ($action != 'create' && $action != 'edit') {
514 $action = 'list';
515 }
516 $page->assign('action', $action);
517
518 if ($action == 'list') {
519 $sql = "SELECT w.email, w.detection, w.state, a.alias AS forlife
520 FROM emails_watch AS w
521 LEFT JOIN emails AS e USING(email)
522 LEFT JOIN aliases AS a ON (a.id = e.uid AND a.type = 'a_vie')
523 ORDER BY w.state, w.email, a.alias";
524 $it = Xdb::iterRow($sql);
525
526 $table = array();
527 $props = array();
528 while (list($email, $date, $state, $forlife) = $it->next()) {
529 if (count($props) == 0 || $props['mail'] != $email) {
530 if (count($props) > 0) {
531 $table[] = $props;
532 }
533 $props = array('mail' => $email,
534 'detection' => $date,
535 'state' => $state,
536 'users' => array($forlife));
537 } else {
538 $props['users'][] = $forlife;
539 }
540 }
541 if (count($props) > 0) {
542 $table[] = $props;
543 }
544 $page->assign('table', $table);
545 } elseif ($action == 'edit') {
546 $sql = "SELECT w.detection, w.state, w.last, w.description,
547 a1.alias AS edit, a2.alias AS forlife
548 FROM emails_watch AS w
549 LEFT JOIN aliases AS a1 ON (a1.id = w.uid AND a1.type = 'a_vie')
550 LEFT JOIN emails AS e ON (w.email = e.email)
551 LEFT JOIN aliases AS a2 ON (a2.id = e.uid AND a2.type = 'a_vie')
552 WHERE w.email = {?}
553 ORDER BY a2.alias";
554 $it = Xdb::iterRow($sql, $email);
555
556 $props = array();
557 while (list($detection, $state, $last, $description, $edit, $forlife) = $it->next()) {
558 if (count($props) == 0) {
559 $props = array('mail' => $email,
560 'detection' => $detection,
561 'state' => $state,
562 'last' => $last,
563 'description' => $description,
564 'edit' => $edit,
565 'users' => array($forlife));
566 } else {
567 $props['users'][] = $forlife;
568 }
569 }
570 $page->assign('doublon', $props);
571 }
572 }
573 function handler_lost(&$page, $action = 'list', $email = null)
574 {
575 $page->changeTpl('emails/lost.tpl');
576
577 $page->assign('lost_emails', XDB::iterator('
578 SELECT u.user_id, a.alias
579 FROM auth_user_md5 AS u
580 INNER JOIN aliases AS a ON (a.id = u.user_id AND a.type = "a_vie")
581 LEFT JOIN emails AS e ON (u.user_id=e.uid AND FIND_IN_SET("active",e.flags))
582 WHERE e.uid IS NULL AND u.deces = 0
583 ORDER BY u.promo DESC, u.nom, u.prenom'));
584 }
585 }
586
587 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
588 ?>