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