Happy New Year!
[platal.git] / modules / newsletter.php
CommitLineData
e2efba7d 1<?php
2/***************************************************************************
12262f13 3 * Copyright (C) 2003-2011 Polytechnique.org *
e2efba7d 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 NewsletterModule extends PLModule
23{
24 function handlers()
25 {
26 return array(
eb5a266d
SJ
27 'nl' => $this->make_hook('nl', AUTH_COOKIE),
28 'nl/show' => $this->make_hook('nl_show', AUTH_COOKIE),
29 'nl/submit' => $this->make_hook('nl_submit', AUTH_MDP),
30 'admin/newsletter' => $this->make_hook('admin_nl', AUTH_MDP, 'admin'),
31 'admin/newsletter/categories' => $this->make_hook('admin_nl_cat', AUTH_MDP, 'admin'),
e2efba7d 32 'admin/newsletter/edit' => $this->make_hook('admin_nl_edit', AUTH_MDP, 'admin'),
33 );
34 }
35
e2efba7d 36 function handler_nl(&$page, $action = null)
37 {
38 require_once 'newsletter.inc.php';
39
40 $page->changeTpl('newsletter/index.tpl');
46f272fe 41 $page->setTitle('Lettres mensuelles');
e2efba7d 42
43 switch ($action) {
b6ba1a04
RB
44 case 'out': NewsLetter::unsubscribe(); break;
45 case 'in': NewsLetter::subscribe(); break;
e2efba7d 46 default: ;
47 }
48
b6ba1a04
RB
49 $page->assign('nls', NewsLetter::subscriptionState());
50 $page->assign('nl_list', NewsLetter::listSent());
e2efba7d 51 }
52
53 function handler_nl_show(&$page, $nid = 'last')
54 {
55 $page->changeTpl('newsletter/show.tpl');
56
57 require_once 'newsletter.inc.php';
58
9da70671
SJ
59 try {
60 $nl = new NewsLetter($nid);
6d1747b3 61 $user =& S::user();
9da70671 62 if (Get::has('text')) {
6d1747b3 63 $nl->toText($page, $user);
9da70671 64 } else {
6d1747b3 65 $nl->toHtml($page, $user);
9da70671
SJ
66 }
67 if (Post::has('send')) {
6d1747b3 68 $nl->sendTo($user);
9da70671
SJ
69 }
70 } catch (MailNotFound $e) {
71 return PL_NOT_FOUND;
e2efba7d 72 }
73 }
74
75 function handler_nl_submit(&$page)
76 {
77 $page->changeTpl('newsletter/submit.tpl');
78
79 require_once 'newsletter.inc.php';
8f201b69
FB
80 $wp = new PlWikiPage('Xorg.LettreMensuelle');
81 $wp->buildCache();
e2efba7d 82
1970c12b 83 if (Post::has('see') || (Post::has('valid') && (!trim(Post::v('title')) || !trim(Post::v('body'))))) {
84 if (!Post::has('see')) {
a7d35093 85 $page->trigError("L'article doit avoir un titre et un contenu");
1970c12b 86 }
e2efba7d 87 $art = new NLArticle(Post::v('title'), Post::v('body'), Post::v('append'));
88 $page->assign('art', $art);
89 } elseif (Post::has('valid')) {
5daf68f6 90 $art = new NLReq(S::user(), Post::v('title'),
e2efba7d 91 Post::v('body'), Post::v('append'));
92 $art->submit();
93 $page->assign('submited', true);
94 }
1970c12b 95 $page->addCssLink('nl.css');
e2efba7d 96 }
97
98 function handler_admin_nl(&$page, $new = false) {
99 $page->changeTpl('newsletter/admin.tpl');
46f272fe 100 $page->setTitle('Administration - Newsletter : liste');
e2efba7d 101 require_once("newsletter.inc.php");
eaf30d86 102
e2efba7d 103 if($new) {
b6ba1a04 104 NewsLetter::create();
4882f4a5 105 pl_redirect("admin/newsletter");
e2efba7d 106 }
eaf30d86 107
b6ba1a04 108 $page->assign('nl_list', NewsLetter::listAll());
e2efba7d 109 }
eaf30d86 110
e2efba7d 111 function handler_admin_nl_edit(&$page, $nid = 'last', $aid = null, $action = 'edit') {
112 $page->changeTpl('newsletter/edit.tpl');
3ad44e08 113 $page->addCssLink('nl.css');
e4705641
SJ
114 $page->setTitle('Administration - Newsletter : Édition');
115 require_once 'newsletter.inc.php';
eaf30d86 116
9e2a6a32 117 $nl = new NewsLetter($nid);
eaf30d86 118
e2efba7d 119 if($action == 'delete') {
120 $nl->delArticle($aid);
121 pl_redirect("admin/newsletter/edit/$nid");
122 }
eaf30d86 123
e2efba7d 124 if($aid == 'update') {
9e2a6a32
SJ
125 $nl->_title = Post::v('title');
126 $nl->_title_mail = Post::v('title_mail');
127 $nl->_date = Post::v('date');
128 $nl->_head = Post::v('head');
129 $nl->_shortname = strlen(Post::v('shortname')) ? Post::v('shortname') : null;
e2efba7d 130 if (preg_match('/^[-a-z0-9]*$/i', $nl->_shortname) && !is_numeric($nl->_shortname)) {
131 $nl->save();
132 } else {
9e2a6a32 133 $page->trigError("Le nom de la NL n'est pas valide.");
e2efba7d 134 pl_redirect('admin/newsletter/edit/' . $nl->_id);
135 }
136 }
eaf30d86 137
e2efba7d 138 if(Post::v('save')) {
139 $art = new NLArticle(Post::v('title'), Post::v('body'), Post::v('append'),
9e2a6a32 140 $aid, Post::v('cid'), Post::v('pos'));
e2efba7d 141 $nl->saveArticle($art);
142 pl_redirect("admin/newsletter/edit/$nid");
143 }
eaf30d86 144
9e2a6a32 145 if ($action == 'edit' && $aid != 'update') {
e2efba7d 146 $eaid = $aid;
e4705641 147 if (Post::has('title')) {
e2efba7d 148 $art = new NLArticle(Post::v('title'), Post::v('body'), Post::v('append'),
e4705641 149 $eaid, Post::v('cid'), Post::v('pos'));
e2efba7d 150 } else {
e4705641
SJ
151 $art = ($eaid == 'new') ? new NLArticle() : $nl->getArt($eaid);
152 }
153 if ($art && !$art->check()) {
154 $page->trigError("Cet article est trop long.");
e2efba7d 155 }
156 $page->assign('art', $art);
157 }
eaf30d86 158
9e2a6a32 159 if ($aid == 'blacklist_check') {
955109ba 160 global $globals;
9e2a6a32 161 $ips_to_check = array();
955109ba 162 $blacklist_host_resolution_count = 0;
9e2a6a32
SJ
163
164 foreach ($nl->_arts as $key => $articles) {
165 foreach ($articles as $article) {
955109ba 166 $article_ips = $article->getLinkIps($blacklist_host_resolution_count);
9e2a6a32
SJ
167 if (!empty($article_ips)) {
168 $ips_to_check[$article->title()] = $article_ips;
169 }
170 }
171 }
172
173 $page->assign('ips_to_check', $ips_to_check);
955109ba
SJ
174 if ($blacklist_host_resolution_count >= $globals->mail->blacklist_host_resolution_limit) {
175 $page->trigError("Toutes les url et adresses emails de la lettre"
9e2a6a32
SJ
176 . " n'ont pas été prises en compte car la"
177 . " limite du nombre de résolutions DNS"
178 . " autorisée a été atteinte.");
179 }
180 }
181
182 $page->assign_by_ref('nl', $nl);
e2efba7d 183 }
184
185 function handler_admin_nl_cat(&$page, $action = 'list', $id = null) {
46f272fe 186 $page->setTitle('Administration - Newsletter : Catégories');
a7de4ef7 187 $page->assign('title', 'Gestion des catégories de la newsletter');
e2efba7d 188 $table_editor = new PLTableEditor('admin/newsletter/categories','newsletter_cat','cid');
a7de4ef7 189 $table_editor->describe('titre','intitulé',true);
e2efba7d 190 $table_editor->describe('pos','position',true);
191 $table_editor->apply($page, $action, $id);
bc0903c7 192 }
e2efba7d 193}
194
a7de4ef7 195// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
e2efba7d 196?>