X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fnewsletter.php;h=3ed81bc690ca54be188637a3a0360811fd01a355;hb=fb813fb52d5ab65ca9a5b92b5cb9089523380d79;hp=6ef0cbb9d3cd7d20e4f16506014bd2f6ab441f32;hpb=2db80ab6f7d054ec274c66f7ba983f49596b81cf;p=platal.git diff --git a/modules/newsletter.php b/modules/newsletter.php index 6ef0cbb..3ed81bc 100644 --- a/modules/newsletter.php +++ b/modules/newsletter.php @@ -1,6 +1,6 @@ $this->make_hook('nl', AUTH_COOKIE), - 'nl/show' => $this->make_hook('nl_show', AUTH_COOKIE), - 'nl/submit' => $this->make_hook('nl_submit', AUTH_MDP), - 'admin/newsletter' => $this->make_hook('admin_nl', AUTH_MDP, 'admin'), - 'admin/newsletter/categories' => $this->make_hook('admin_nl_cat', AUTH_MDP, 'admin'), + 'nl' => $this->make_hook('nl', AUTH_COOKIE), + 'nl/show' => $this->make_hook('nl_show', AUTH_COOKIE), + 'nl/submit' => $this->make_hook('nl_submit', AUTH_MDP), + 'admin/newsletter' => $this->make_hook('admin_nl', AUTH_MDP, 'admin'), + 'admin/newsletter/categories' => $this->make_hook('admin_nl_cat', AUTH_MDP, 'admin'), 'admin/newsletter/edit' => $this->make_hook('admin_nl_edit', AUTH_MDP, 'admin'), ); } @@ -41,13 +41,13 @@ class NewsletterModule extends PLModule $page->setTitle('Lettres mensuelles'); switch ($action) { - case 'out': Newsletter::unsubscribe(); break; - case 'in': Newsletter::subscribe(); break; + case 'out': NewsLetter::unsubscribe(); break; + case 'in': NewsLetter::subscribe(); break; default: ; } - $page->assign('nls', Newsletter::subscriptionState()); - $page->assign('nl_list', Newsletter::listSent()); + $page->assign('nls', NewsLetter::subscriptionState()); + $page->assign('nl_list', NewsLetter::listSent()); } function handler_nl_show(&$page, $nid = 'last') @@ -102,11 +102,11 @@ class NewsletterModule extends PLModule require_once("newsletter.inc.php"); if($new) { - Newsletter::create(); + NewsLetter::create(); pl_redirect("admin/newsletter"); } - $page->assign('nl_list', Newsletter::listAll()); + $page->assign('nl_list', NewsLetter::listAll()); } function handler_admin_nl_edit(&$page, $nid = 'last', $aid = null, $action = 'edit') { @@ -115,7 +115,7 @@ class NewsletterModule extends PLModule $page->setTitle('Administration - Newsletter : Édition'); require_once 'newsletter.inc.php'; - $nl = new NewsLetter($nid); + $nl = new NewsLetter($nid); if($action == 'delete') { $nl->delArticle($aid); @@ -123,27 +123,27 @@ class NewsletterModule extends PLModule } if($aid == 'update') { - $nl->_title = Post::v('title'); - $nl->_title_mail= Post::v('title_mail'); - $nl->_date = Post::v('date'); - $nl->_head = Post::v('head'); - $nl->_shortname = strlen(Post::v('shortname')) ? Post::v('shortname') : null; + $nl->_title = Post::v('title'); + $nl->_title_mail = Post::v('title_mail'); + $nl->_date = Post::v('date'); + $nl->_head = Post::v('head'); + $nl->_shortname = strlen(Post::v('shortname')) ? Post::v('shortname') : null; if (preg_match('/^[-a-z0-9]*$/i', $nl->_shortname) && !is_numeric($nl->_shortname)) { $nl->save(); } else { - $page->trigError('Le nom de la NL n\'est pas valide'); + $page->trigError("Le nom de la NL n'est pas valide."); pl_redirect('admin/newsletter/edit/' . $nl->_id); } } if(Post::v('save')) { $art = new NLArticle(Post::v('title'), Post::v('body'), Post::v('append'), - $aid, Post::v('cid'), Post::v('pos')); + $aid, Post::v('cid'), Post::v('pos')); $nl->saveArticle($art); pl_redirect("admin/newsletter/edit/$nid"); } - if($action == 'edit' && $aid != 'update') { + if ($action == 'edit' && $aid != 'update') { $eaid = $aid; if (Post::has('title')) { $art = new NLArticle(Post::v('title'), Post::v('body'), Post::v('append'), @@ -157,7 +157,30 @@ class NewsletterModule extends PLModule $page->assign('art', $art); } - $page->assign_by_ref('nl',$nl); + if ($aid == 'blacklist_check') { + global $globals; + $ips_to_check = array(); + $blacklist_host_resolution_count = 0; + + foreach ($nl->_arts as $key => $articles) { + foreach ($articles as $article) { + $article_ips = $article->getLinkIps($blacklist_host_resolution_count); + if (!empty($article_ips)) { + $ips_to_check[$article->title()] = $article_ips; + } + } + } + + $page->assign('ips_to_check', $ips_to_check); + if ($blacklist_host_resolution_count >= $globals->mail->blacklist_host_resolution_limit) { + $page->trigError("Toutes les url et adresses emails de la lettre" + . " n'ont pas été prises en compte car la" + . " limite du nombre de résolutions DNS" + . " autorisée a été atteinte."); + } + } + + $page->assign_by_ref('nl', $nl); } function handler_admin_nl_cat(&$page, $action = 'list', $id = null) {