X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Femail.php;h=8b4bcf35f6f114eb6060c6b397ef72b6e58b6729;hb=ed06daba6f36cdc16110292ad939ee1813049b18;hp=6f855042bd51c3add04e7e69c4feaa30edef83a8;hpb=245923e335d0da5bec9495991a7846be9f0563ab;p=platal.git diff --git a/modules/email.php b/modules/email.php index 6f85504..8b4bcf3 100644 --- a/modules/email.php +++ b/modules/email.php @@ -1,6 +1,6 @@ assign('melix', $res->fetchOneCell()); } - function handler_alias(&$page, $action = null, $value = null) + function handler_alias($page, $action = null, $value = null) { global $globals; @@ -204,7 +204,7 @@ class EmailModule extends PLModule $page->assign('mail_public', $visibility); } - function handler_redirect(&$page, $action = null, $email = null) + function handler_redirect($page, $action = null, $email = null) { global $globals; @@ -316,7 +316,7 @@ class EmailModule extends PLModule fill_email_combobox($page); } - function handler_antispam(&$page, $statut_filtre = null) + function handler_antispam($page, $statut_filtre = null) { require_once 'emails.inc.php'; $wp = new PlWikiPage('Xorg.Antispam'); @@ -332,7 +332,7 @@ class EmailModule extends PLModule $page->assign('filtre', $bogo->level()); } - function handler_submit(&$page) + function handler_submit($page) { $wp = new PlWikiPage('Xorg.Mails'); $wp->buildCache(); @@ -367,10 +367,9 @@ class EmailModule extends PLModule } } - function handler_send(&$page) + function handler_send($page) { $page->changeTpl('emails/send.tpl'); - $page->addJsLink('ajax.js'); $page->setTitle('Envoyer un email'); @@ -382,11 +381,12 @@ class EmailModule extends PLModule unset($_POST['save']); if (trim(preg_replace('/-- .*/', '', Post::v('contenu'))) != "") { - $_POST['to_contacts'] = explode(';', @$_POST['to_contacts']); - $_POST['cc_contacts'] = explode(';', @$_POST['cc_contacts']); + Post::set('to_contacts', explode(';', Post::s('to_contacts'))); + Post::set('cc_contacts', explode(';', Post::s('cc_contacts'))); $data = serialize($_POST); - XDB::execute("REPLACE INTO email_send_save - VALUES ({?}, {?})", + XDB::execute('INSERT INTO email_send_save (uid, data) + VALUES ({?}, {?}) + ON DUPLICATE KEY UPDATE data = VALUES(data)', S::user()->id('uid'), $data); } exit; @@ -495,7 +495,7 @@ class EmailModule extends PLModule $page->assign('user', S::user()); } - function handler_test(&$page, $hruid = null) + function handler_test($page, $hruid = null) { require_once 'emails.inc.php'; @@ -525,7 +525,7 @@ class EmailModule extends PLModule exit; } - function handler_rewrite_in(&$page, $mail, $hash) + function handler_rewrite_in($page, $mail, $hash) { $page->changeTpl('emails/rewrite.tpl'); $page->assign('option', 'in'); @@ -553,7 +553,7 @@ class EmailModule extends PLModule return PL_NOT_FOUND; } - function handler_rewrite_out(&$page, $mail, $hash) + function handler_rewrite_out($page, $mail, $hash) { $page->changeTpl('emails/rewrite.tpl'); $page->assign('option', 'out'); @@ -594,7 +594,7 @@ class EmailModule extends PLModule return PL_NOT_FOUND; } - function handler_imap_in(&$page, $hash = null, $login = null) + function handler_imap_in($page, $hash = null, $login = null) { $page->changeTpl('emails/imap_register.tpl'); $user = null; @@ -628,7 +628,7 @@ class EmailModule extends PLModule } } - function handler_broken(&$page, $warn = null, $email = null) + function handler_broken($page, $warn = null, $email = null) { require_once 'emails.inc.php'; $wp = new PlWikiPage('Xorg.PatteCassée'); @@ -694,7 +694,7 @@ class EmailModule extends PLModule } } - function handler_duplicated(&$page, $action = 'list', $email = null) + function handler_duplicated($page, $action = 'list', $email = null) { $page->changeTpl('emails/duplicated.tpl'); @@ -788,7 +788,7 @@ class EmailModule extends PLModule } } - function handler_lost(&$page, $action = 'list', $email = null) + function handler_lost($page, $action = 'list', $email = null) { $page->changeTpl('emails/lost.tpl'); @@ -804,7 +804,7 @@ class EmailModule extends PLModule ORDER BY pd.promo, a.hruid')); } - function handler_broken_addr(&$page) + function handler_broken_addr($page) { require_once 'emails.inc.php'; $page->changeTpl('emails/broken_addr.tpl'); @@ -851,8 +851,6 @@ class EmailModule extends PLModule if ($list == '') { $page->trigError('La liste est vide.'); } else { - global $platal; - $broken_user_list = array(); $broken_list = explode("\n", $list); sort($broken_list); @@ -890,7 +888,7 @@ class EmailModule extends PLModule if (!empty($x['nb_mails'])) { $mail = new PlMailer('emails/broken.mail.tpl'); $mail->addTo("\"{$x['full_name']}\" <{$x['alias']}@" - . $globals->mail->domain . '>'); + . Platal::globals()->mail->domain . '>'); $mail->assign('x', $x); $mail->assign('email', $email); $mail->send(); @@ -916,21 +914,27 @@ class EmailModule extends PLModule // Output the list of users with recently broken addresses, // along with the count of valid redirections. require_once 'notifs.inc.php'; - pl_content_headers("text/x-csv"); + pl_cached_content_headers('text/x-csv', 1); $csv = fopen('php://output', 'w'); - fputcsv($csv, array('nom', 'promo', 'alias', 'bounce', 'nbmails', 'url'), ';'); + fputcsv($csv, array('nom', 'promo', 'alias', 'bounce', 'nbmails', 'url', 'corps', 'job', 'networking'), ';'); foreach ($broken_user_list as $alias => $mails) { $sel = Xdb::query( - "SELECT acc.uid, count(e.email) AS nb_mails, + "SELECT acc.uid, count(DISTINCT(e.email)) AS nb_mails, IFNULL(pd.public_name, acc.full_name) AS fullname, - IFNULL(pd.promo, 0) AS promo - FROM aliases AS a - INNER JOIN accounts AS acc ON (a.uid = acc.uid) - LEFT JOIN emails AS e ON (e.uid = acc.uid - AND FIND_IN_SET('active', e.flags) AND e.panne = 0) - LEFT JOIN account_profiles AS ap ON (acc.uid = ap.uid AND FIND_IN_SET('owner', ap.perms)) - LEFT JOIN profile_display AS pd ON (pd.pid = ap.pid) + IFNULL(pd.promo, 0) AS promo, IFNULL(pce.name, 'Aucun') AS corps, + IFNULL(pje.name, 'Aucun') AS job, GROUP_CONCAT(pn.address SEPARATOR ', ') AS networking + FROM aliases AS a + INNER JOIN accounts AS acc ON (a.uid = acc.uid) + LEFT JOIN emails AS e ON (e.uid = acc.uid + AND FIND_IN_SET('active', e.flags) AND e.panne = 0) + LEFT JOIN account_profiles AS ap ON (acc.uid = ap.uid AND FIND_IN_SET('owner', ap.perms)) + LEFT JOIN profile_display AS pd ON (pd.pid = ap.pid) + LEFT JOIN profile_corps AS pc ON (pc.pid = ap.pid) + LEFT JOIN profile_corps_enum AS pce ON (pc.current_corpsid = pce.id) + LEFT JOIN profile_job AS pj ON (pj.pid = ap.pid) + LEFT JOIN profile_job_enum AS pje ON (pj.jobid = pje.id) + LEFT JOIN profile_networking AS pn ON (pn.pid = ap.pid) WHERE a.alias = {?} GROUP BY acc.uid", $alias); @@ -942,7 +946,8 @@ class EmailModule extends PLModule } fputcsv($csv, array($x['fullname'], $x['promo'], $alias, join(',', $mails), $x['nb_mails'], - 'https://www.polytechnique.org/marketing/broken/' . $alias), ';'); + 'https://www.polytechnique.org/marketing/broken/' . $alias, + $x['corps'], $x['job'], $x['networking']), ';'); } } fclose($csv);