Some improvements to [1057]:
[platal.git] / modules / events.php
CommitLineData
74e0093f 1<?php
2/***************************************************************************
3 * Copyright (C) 2003-2006 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
22class EventsModule extends PLModule
23{
24 function handlers()
25 {
26 return array(
1a828cd4 27 'events' => $this->make_hook('ev', AUTH_COOKIE),
28 'events/submit' => $this->make_hook('ev_submit', AUTH_MDP),
92423144 29 'admin/events' => $this->make_hook('admin_events', AUTH_MDP, 'admin'),
b829e258 30
164ca57a 31 'nl' => $this->make_hook('nl', AUTH_COOKIE),
32 'nl/show' => $this->make_hook('nl_show', AUTH_COOKIE),
33 'nl/submit' => $this->make_hook('nl_submit', AUTH_COOKIE),
92423144 34 'admin/newsletter' => $this->make_hook('admin_nl', AUTH_MDP, 'admin'),
35 'admin/newsletter/categories' => $this->make_hook('admin_nl_cat', AUTH_MDP, 'admin'),
36 'admin/newsletter/edit' => $this->make_hook('admin_nl_edit', AUTH_MDP, 'admin'),
74e0093f 37 );
38 }
39
8d8f7607 40 function on_subscribe($forlife, $uid, $promo, $password)
41 {
42 require_once 'newsletter.inc.php';
43 subscribe_nl($uid);
44 }
45
096f0dca 46 function handler_ev(&$page, $action = 'list', $eid = null, $pound = null)
1a828cd4 47 {
1a828cd4 48 $page->changeTpl('login.tpl');
49
08cce2ff 50 $res = XDB::query('SELECT date, naissance FROM auth_user_md5
cab08090 51 WHERE user_id={?}', S::v('uid'));
1a828cd4 52 list($date, $naissance) = $res->fetchOneRow();
53
089a5801 54 // incitation à mettre à jour la fiche
1a828cd4 55
56 $d2 = mktime(0, 0, 0, substr($date, 5, 2), substr($date, 8, 2),
57 substr($date, 0, 4));
58 if( (time() - $d2) > 60 * 60 * 24 * 400 ) {
59 // si fiche date de + de 400j;
60 $page->assign('fiche_incitation', $date);
61 }
62
63 // Souhaite bon anniversaire
64
65 if (substr($naissance, 5) == date('m-d')) {
66 $page->assign('birthday', date('Y') - substr($naissance, 0, 4));
67 }
68
089a5801 69 // incitation à mettre une photo
1a828cd4 70
08cce2ff 71 $res = XDB::query('SELECT COUNT(*) FROM photo
cab08090 72 WHERE uid={?}', S::v('uid'));
1a828cd4 73 $page->assign('photo_incitation', $res->fetchOneCell() == 0);
74
089a5801 75 // Incitation à se géolocaliser
1a828cd4 76 require_once 'geoloc.inc.php';
cab08090 77 $res = localize_addresses(S::v('uid', -1));
1a828cd4 78 $page->assign('geoloc_incitation', count($res));
79
089a5801 80 // affichage de la boîte avec quelques liens
9f40c29f 81 /* Bandeau de publicité sur la page de login */
82 $publicite = array(
83 'password' => 'Changer mon mot de passe' ,
84 'Docs/Dons' => 'Faire un don à l\'association Polytechnique.org'
85 ) ;
86
87 // Liens apparaissant de façon aléatoire
88 $pub_rnd = array(
89 'nl/show' => 'Afficher la dernière newsletter' ,
90 'http://www.polytechnique.net' => 'Vers les autres sites polytechniciens' ,
91 "trombi/{$_SESSION["promo"]}" => "Voir le trombi de ma promo" ,
92 'banana' => 'Un petit tour du côté des forums !!'
93 ) ;
94
95 $choix = array_rand($pub_rnd, 2);
96 foreach ($choix as $url) {
97 $publicite[$url] = $pub_rnd[$url] ;
1a828cd4 98 }
9f40c29f 99 $page->assign('publicite', array_chunk($publicite, 2, true));
1a828cd4 100
101 // ajout du lien RSS
cab08090 102 if (S::has('core_rss_hash')) {
162370e7 103 $page->setRssLink('Polytechnique.org :: News',
104 '/rss/'.S::v('forlife') .'/'.S::v('core_rss_hash').'/rss.xml');
1a828cd4 105 }
106
107 // cache les evenements lus et raffiche les evenements a relire
4e61caea 108 if ($action == 'read' && $eid) {
eadff9f9 109 XDB::execute('DELETE evenements_vus.*
110 FROM evenements_vus AS ev
111 INNER JOIN evenements AS e ON e.id = ev.evt_id
112 WHERE peremption < NOW()');
08cce2ff 113 XDB::execute('REPLACE INTO evenements_vus VALUES({?},{?})',
096f0dca 114 $eid, S::v('uid'));
115 pl_redirect('events#'.$pound);
1a828cd4 116 }
117
4e61caea 118 if ($action == 'unread' && $eid) {
08cce2ff 119 XDB::execute('DELETE FROM evenements_vus
eadff9f9 120 WHERE evt_id = {?} AND user_id = {?}',
4e61caea 121 $eid, S::v('uid'));
096f0dca 122 pl_redirect('events#newsid'.$eid);
1a828cd4 123 }
124
125 // affichage des evenements
089a5801 126 // annonces promos triées par présence d'une limite sur les promos
1a828cd4 127 // puis par dates croissantes d'expiration
cab08090 128 $promo = S::v('promo');
1a828cd4 129 $sql = "SELECT e.id,e.titre,e.texte,a.user_id,a.nom,a.prenom,a.promo,l.alias AS forlife
2f678da1 130 FROM evenements AS e
131 INNER JOIN auth_user_md5 AS a ON e.user_id=a.user_id
132 INNER JOIN aliases AS l ON ( a.user_id=l.id AND l.type='a_vie' )
133 LEFT JOIN evenements_vus AS ev ON (e.id = ev.evt_id AND ev.user_id = {?})
1a828cd4 134 WHERE FIND_IN_SET(e.flags, 'valide') AND peremption >= NOW()
135 AND (e.promo_min = 0 || e.promo_min <= {?})
136 AND (e.promo_max = 0 || e.promo_max >= {?})
137 AND ev.user_id IS NULL
138 ORDER BY (e.promo_min != 0 AND e.promo_max != 0) DESC, e.peremption";
139 $page->assign('evenement',
cab08090 140 XDB::iterator($sql, S::v('uid'),
1a828cd4 141 $promo, $promo)
142 );
143
144 $sql = "SELECT e.id,e.titre, ev.user_id IS NULL AS nonlu
145 FROM evenements AS e
146 LEFT JOIN evenements_vus AS ev ON (e.id = ev.evt_id AND ev.user_id = {?})
147 WHERE FIND_IN_SET(e.flags, 'valide') AND peremption >= NOW()
148 AND (e.promo_min = 0 || e.promo_min <= {?})
149 AND (e.promo_max = 0 || e.promo_max >= {?})
150 ORDER BY (e.promo_min != 0 AND e.promo_max != 0) DESC, e.peremption";
151 $page->assign('evenement_summary',
cab08090 152 XDB::iterator($sql, S::v('uid'),
1a828cd4 153 $promo, $promo)
154 );
1a828cd4 155 }
156
157 function handler_ev_submit(&$page)
74e0093f 158 {
74e0093f 159 $page->changeTpl('evenements.tpl');
160
5e2307dc 161 $titre = Post::v('titre');
162 $texte = Post::v('texte');
163 $promo_min = Post::i('promo_min');
164 $promo_max = Post::i('promo_max');
165 $peremption = Post::i('peremption');
166 $valid_mesg = Post::v('valid_mesg');
167 $action = Post::v('action');
74e0093f 168
edd50750 169 require_once('url_catcher.inc.php');
170 $texte_catch_url = url_catcher($texte);
171
74e0093f 172 $page->assign('titre', $titre);
173 $page->assign('texte', $texte);
edd50750 174 $page->assign('texte_html', $texte_catch_url);
74e0093f 175 $page->assign('promo_min', $promo_min);
176 $page->assign('promo_max', $promo_max);
177 $page->assign('peremption', $peremption);
178 $page->assign('valid_mesg', $valid_mesg);
179 $page->assign('action', strtolower($action));
180
181 if ($action == 'Confirmer') {
edd50750 182 $texte = $texte_catch_url;
74e0093f 183 require_once 'validations.inc.php';
184 $evtreq = new EvtReq($titre, $texte, $promo_min, $promo_max,
cab08090 185 $peremption, $valid_mesg, S::v('uid'));
74e0093f 186 $evtreq->submit();
187 $page->assign('ok', true);
188 }
189
190 $select = '';
191 for ($i = 1 ; $i < 30 ; $i++) {
192 $time = time() + 3600 * 24 * $i;
193 $p_stamp = date('Ymd', $time);
194 $year = date('Y', $time);
195 $month = date('m', $time);
196 $day = date('d', $time);
197
198 $select .= "<option value=\"$p_stamp\"";
199 if ($p_stamp == strtr($peremption, array("-" => ""))) {
200 $select .= " selected='selected'";
201 }
202 $select .= "> $day / $month / $year</option>\n";
203 }
204 $page->assign('select',$select);
74e0093f 205 }
b829e258 206
164ca57a 207 function handler_nl(&$page, $action = null)
208 {
209 require_once 'newsletter.inc.php';
210
211 $page->changeTpl('newsletter/index.tpl');
212 $page->assign('xorg_title','Polytechnique.org - Lettres mensuelles');
213
214 switch ($action) {
215 case 'out': unsubscribe_nl(); break;
216 case 'in': subscribe_nl(); break;
217 default: ;
218 }
219
220 $page->assign('nls', get_nl_state());
1a013db7 221 $page->assign('nl_list', get_nl_list());
164ca57a 222 }
223
224 function handler_nl_show(&$page, $nid = 'last')
b829e258 225 {
226 $page->changeTpl('newsletter/show.tpl');
227
228 require_once 'newsletter.inc.php';
229
230 $nl = new NewsLetter($nid);
231 $page->assign_by_ref('nl', $nl);
232
233 if (Post::has('send')) {
cab08090 234 $nl->sendTo(S::v('prenom'), S::v('nom'),
235 S::v('bestalias'), S::v('femme'),
91f42324 236 S::v('mail_fmt') != 'texte');
b829e258 237 }
b829e258 238 }
164ca57a 239
240 function handler_nl_submit(&$page)
241 {
242 $page->changeTpl('newsletter/submit.tpl');
243
244 require_once 'newsletter.inc.php';
245
246 if (Post::has('see')) {
5e2307dc 247 $art = new NLArticle(Post::v('title'), Post::v('body'), Post::v('append'));
164ca57a 248 $page->assign('art', $art);
249 } elseif (Post::has('valid')) {
250 require_once('validations.inc.php');
5e2307dc 251 $art = new NLReq(S::v('uid'), Post::v('title'),
252 Post::v('body'), Post::v('append'));
164ca57a 253 $art->submit();
254 $page->assign('submited', true);
255 }
164ca57a 256 }
92423144 257
506a46ed 258 function handler_admin_events(&$page, $action = 'list', $eid = null)
259 {
92423144 260 $page->changeTpl('admin/evenements.tpl');
261 $page->assign('xorg_title','Polytechnique.org - Administration - Evenements');
506a46ed 262 $page->register_modifier('hde', 'html_entity_decode');
263
264 $arch = $action == 'archives';
265 $page->assign('action', $action);
266
01248e3a 267 if (Post::v('action') == "Proposer" && $eid) {
506a46ed 268 XDB::execute('UPDATE evenements
269 SET titre={?}, texte={?}, peremption={?}, promo_min={?}, promo_max={?}
270 WHERE id = {?}',
271 Post::v('titre'), Post::v('texte'), Post::v('peremption'),
01248e3a 272 Post::v('promo_min'), Post::v('promo_max'), $eid);
92423144 273 }
506a46ed 274
275 if ($action == 'edit') {
276 $res = XDB::query('SELECT titre, texte, peremption, promo_min, promo_max
277 FROM evenements
278 WHERE id={?}', $eid);
279 list($titre, $texte, $peremption, $promo_min, $promo_max) = $res->fetchOneRow();
280 $page->assign('titre',$titre);
281 $page->assign('texte',$texte);
282 $page->assign('promo_min',$promo_min);
283 $page->assign('promo_max',$promo_max);
284 $page->assign('peremption',$peremption);
285
286 $select = "";
287 for ($i = 1 ; $i < 30 ; $i++) {
288 $p_stamp=date("Ymd",time()+3600*24*$i);
289 $year=substr($p_stamp,0,4);
290 $month=substr($p_stamp,4,2);
291 $day=substr($p_stamp,6,2);
292
293 $select .= "<option value=\"$p_stamp\""
294 . (($p_stamp == strtr($peremption, array("-" => ""))) ? " selected" : "")
295 . "> $day / $month / $year</option>\n";
296 }
297 $page->assign('select',$select);
298 } else {
299 switch ($action) {
300 case 'delete':
301 XDB::execute('DELETE from evenements
302 WHERE id = {?}', $eid);
303 break;
304
305 case "archive":
306 XDB::execute('UPDATE evenements
307 SET creation_date = creation_date, flags = CONCAT(flags,",archive")
308 WHERE id = {?}', $eid);
309 break;
310
311 case "unarchive":
312 XDB::execute('UPDATE evenements
313 SET creation_date = creation_date, flags = REPLACE(flags,"archive","")
314 WHERE id = {?}', $eid);
315 $action = 'archives';
316 $arch = true;
317 break;
318
319 case "valid":
320 XDB::execute('UPDATE evenements
321 SET creation_date = creation_date, flags = CONCAT(flags,",valide")
322 WHERE id = {?}', $eid);
323 break;
324
325 case "unvalid":
326 XDB::execute('UPDATE evenements
327 SET creation_date = creation_date, flags = REPLACE(flags,"valide", "")
328 WHERE id = {?}', $eid);
329 break;
330 }
331
332 $pid = ($eid && $action == 'preview') ? $eid : -1;
333 $sql = "SELECT e.id, e.titre, e.texte,e.id = $pid AS preview,
92423144 334 DATE_FORMAT(e.creation_date,'%d/%m/%Y %T') AS creation_date,
335 DATE_FORMAT(e.peremption,'%d/%m/%Y') AS peremption,
336 e.promo_min, e.promo_max,
337 FIND_IN_SET('valide', e.flags) AS fvalide,
338 FIND_IN_SET('archive', e.flags) AS farch,
339 u.promo, u.nom, u.prenom, a.alias AS forlife
340 FROM evenements AS e
341 INNER JOIN auth_user_md5 AS u ON(e.user_id = u.user_id)
342 INNER JOIN aliases AS a ON (u.user_id = a.id AND a.type='a_vie')
343 WHERE ".($arch ? "" : "!")."FIND_IN_SET('archive',e.flags)
506a46ed 344 ORDER BY FIND_IN_SET('valide',e.flags), e.peremption DESC";
92423144 345 $page->assign('evs', XDB::iterator($sql));
346 }
506a46ed 347 $page->assign('arch', $arch);
92423144 348 }
349
350 function handler_admin_nl(&$page, $new = false) {
163eddd2 351 $page->changeTpl('newsletter/admin.tpl');
92423144 352 $page->assign('xorg_title','Polytechnique.org - Administration - Newsletter : liste');
353 require_once("newsletter.inc.php");
354
355 if($new) {
356 insert_new_nl();
357 pl_redirect("admin/newsletter");
358 }
359
1a013db7 360 $page->assign('nl_list', get_nl_slist());
92423144 361 }
362
363 function handler_admin_nl_edit(&$page, $nid = 'last', $aid = null, $action = 'edit') {
163eddd2 364 $page->changeTpl('newsletter/edit.tpl');
92423144 365 $page->assign('xorg_title','Polytechnique.org - Administration - Newsletter : Edition');
366 require_once("newsletter.inc.php");
367
368 $nl = new NewsLetter($nid);
369
370 if($action == 'delete') {
371 $nl->delArticle($aid);
372 pl_redirect("admin/newsletter/edit/$nid");
373 }
374
375 if($aid == 'update') {
ed76a506 376 $nl->_title = Post::v('title');
377 $nl->_date = Post::v('date');
378 $nl->_head = Post::v('head');
379 $nl->_shortname = strlen(Post::v('shortname')) ? Post::v('shortname') : null;
380 if (preg_match('/^[-a-z0-9]*$/i', $nl->_shortname) && !is_numeric($nl->_shortname)) {
381 $nl->save();
382 } else {
383 $page->trig('Le nom de la NL n\'est pas valide');
384 pl_redirect('admin/newsletter/edit/' . $nl->_id);
385 }
92423144 386 }
387
388 if(Post::v('save')) {
389 $art = new NLArticle(Post::v('title'), Post::v('body'), Post::v('append'),
390 $aid, Post::v('cid'), Post::v('pos'));
391 $nl->saveArticle($art);
392 pl_redirect("admin/newsletter/edit/$nid");
393 }
394
ed76a506 395 if($action == 'edit' && $aid != 'update') {
92423144 396 $eaid = $aid;
397 if(Post::has('title')) {
398 $art = new NLArticle(Post::v('title'), Post::v('body'), Post::v('append'),
399 $eaid, Post::v('cid'), Post::v('pos'));
400 } else {
401 $art = ($eaid == 'new') ? new NLArticle() : $nl->getArt($eaid);
402 }
403 $page->assign('art', $art);
404 }
405
406 $page->assign_by_ref('nl',$nl);
407 }
408 function handler_admin_nl_cat(&$page, $action = 'list', $id = null) {
92423144 409 $page->assign('xorg_title','Polytechnique.org - Administration - Newsletter : Catégories');
410 $page->assign('title', 'Gestion des catégories de la newsletter');
411 $table_editor = new PLTableEditor('admin/newsletter/categories','newsletter_cat','cid');
412 $table_editor->describe('titre','intitulé',true);
413 $table_editor->describe('pos','position',true);
414 $table_editor->apply($page, $action, $id);
415 }
416
74e0093f 417}
418
419?>