Some extra auth_user fixes.
[platal.git] / modules / newsletter.php
CommitLineData
e2efba7d 1<?php
2/***************************************************************************
8d84c630 3 * Copyright (C) 2003-2009 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(
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'),
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) {
4882f4a5 44 case 'out': Newsletter::unsubscribe(); break;
45 case 'in': Newsletter::subscribe(); break;
e2efba7d 46 default: ;
47 }
48
4882f4a5 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')) {
90 require_once('validations.inc.php');
5daf68f6 91 $art = new NLReq(S::user(), Post::v('title'),
e2efba7d 92 Post::v('body'), Post::v('append'));
93 $art->submit();
94 $page->assign('submited', true);
95 }
1970c12b 96 $page->addCssLink('nl.css');
e2efba7d 97 }
98
99 function handler_admin_nl(&$page, $new = false) {
100 $page->changeTpl('newsletter/admin.tpl');
46f272fe 101 $page->setTitle('Administration - Newsletter : liste');
e2efba7d 102 require_once("newsletter.inc.php");
eaf30d86 103
e2efba7d 104 if($new) {
4882f4a5 105 Newsletter::create();
106 pl_redirect("admin/newsletter");
e2efba7d 107 }
eaf30d86 108
4882f4a5 109 $page->assign('nl_list', Newsletter::listAll());
e2efba7d 110 }
eaf30d86 111
e2efba7d 112 function handler_admin_nl_edit(&$page, $nid = 'last', $aid = null, $action = 'edit') {
113 $page->changeTpl('newsletter/edit.tpl');
3ad44e08 114 $page->addCssLink('nl.css');
46f272fe 115 $page->setTitle('Administration - Newsletter : Edition');
e2efba7d 116 require_once("newsletter.inc.php");
eaf30d86 117
e2efba7d 118 $nl = new NewsLetter($nid);
eaf30d86 119
e2efba7d 120 if($action == 'delete') {
121 $nl->delArticle($aid);
122 pl_redirect("admin/newsletter/edit/$nid");
123 }
eaf30d86 124
e2efba7d 125 if($aid == 'update') {
126 $nl->_title = Post::v('title');
127 $nl->_title_mail= Post::v('title_mail');
128 $nl->_date = Post::v('date');
129 $nl->_head = Post::v('head');
130 $nl->_shortname = strlen(Post::v('shortname')) ? Post::v('shortname') : null;
131 if (preg_match('/^[-a-z0-9]*$/i', $nl->_shortname) && !is_numeric($nl->_shortname)) {
132 $nl->save();
133 } else {
a7d35093 134 $page->trigError('Le nom de la NL n\'est pas valide');
e2efba7d 135 pl_redirect('admin/newsletter/edit/' . $nl->_id);
136 }
137 }
eaf30d86 138
e2efba7d 139 if(Post::v('save')) {
140 $art = new NLArticle(Post::v('title'), Post::v('body'), Post::v('append'),
141 $aid, Post::v('cid'), Post::v('pos'));
142 $nl->saveArticle($art);
143 pl_redirect("admin/newsletter/edit/$nid");
144 }
eaf30d86 145
e2efba7d 146 if($action == 'edit' && $aid != 'update') {
147 $eaid = $aid;
148 if(Post::has('title')) {
149 $art = new NLArticle(Post::v('title'), Post::v('body'), Post::v('append'),
150 $eaid, Post::v('cid'), Post::v('pos'));
151 } else {
152 $art = ($eaid == 'new') ? new NLArticle() : $nl->getArt($eaid);
153 }
154 $page->assign('art', $art);
155 }
eaf30d86 156
e2efba7d 157 $page->assign_by_ref('nl',$nl);
158 }
159
160 function handler_admin_nl_cat(&$page, $action = 'list', $id = null) {
46f272fe 161 $page->setTitle('Administration - Newsletter : Catégories');
a7de4ef7 162 $page->assign('title', 'Gestion des catégories de la newsletter');
e2efba7d 163 $table_editor = new PLTableEditor('admin/newsletter/categories','newsletter_cat','cid');
a7de4ef7 164 $table_editor->describe('titre','intitulé',true);
e2efba7d 165 $table_editor->describe('pos','position',true);
166 $table_editor->apply($page, $action, $id);
bc0903c7 167 }
e2efba7d 168}
169
a7de4ef7 170// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
e2efba7d 171?>