Removes var_dump.
[platal.git] / modules / xnetevents.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2010 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
22 define('NB_PER_PAGE', 25);
23
24 class XnetEventsModule extends PLModule
25 {
26 function handlers()
27 {
28 return array(
29 '%grp/events' => $this->make_hook('events', AUTH_MDP),
30 '%grp/events/sub' => $this->make_hook('sub', AUTH_MDP),
31 '%grp/events/csv' => $this->make_hook('csv', AUTH_MDP, 'user', NO_HTTPS),
32 '%grp/events/ical' => $this->make_hook('ical', AUTH_MDP, 'user', NO_HTTPS),
33 '%grp/events/edit' => $this->make_hook('edit', AUTH_MDP, 'groupadmin'),
34 '%grp/events/admin' => $this->make_hook('admin', AUTH_MDP, 'groupmember'),
35 );
36 }
37
38 function handler_events(&$page, $archive = null)
39 {
40 global $globals;
41
42 $page->changeTpl('xnetevents/index.tpl');
43 $action = null;
44 $archive = ($archive == 'archive' && may_update());
45
46 if (Post::has('del')) {
47 $action = 'del';
48 $eid = Post::v('del');
49 } elseif (Post::has('archive')) {
50 $action = 'archive';
51 $eid = Post::v('archive');
52 } elseif (Post::has('unarchive')) {
53 $action = 'unarchive';
54 $eid = Post::v('unarchive');
55 }
56
57 if (!is_null($action)) {
58 if (!may_update()) {
59 return PL_FORBIDDEN;
60 }
61 S::assert_xsrf_token();
62
63 $res = XDB::query("SELECT asso_id, short_name FROM group_events
64 WHERE eid = {?} AND asso_id = {?}",
65 $eid, $globals->asso('id'));
66
67 $tmp = $res->fetchOneRow();
68 if (!$tmp) {
69 return PL_FORBIDDEN;
70 }
71 }
72
73 if ($action == 'del') {
74 // deletes the event mailing aliases
75 if ($tmp[1]) {
76 foreach (array('-absents@', '-participants@', '-paye@', '-participants-non-paye@') as $v) {
77 XDB::execute("DELETE FROM virtual
78 WHERE type = 'evt' AND alias LIKE {?}",
79 $tmp[1] . $v . '%');
80 }
81 }
82
83 // deletes the event items
84 XDB::execute('DELETE FROM group_event_items
85 WHERE eid = {?}', $eid);
86
87 // deletes the event participants
88 XDB::execute('DELETE FROM group_event_participants
89 WHERE eid = {?}', $eid);
90
91 // deletes the event
92 XDB::execute('DELETE FROM group_events
93 WHERE eid = {?} AND asso_id = {?}',
94 $eid, $globals->asso('id'));
95
96 // delete the requests for payments
97 require_once 'validations.inc.php';
98 XDB::execute("DELETE FROM requests
99 WHERE type = 'paiements' AND data LIKE {?}",
100 PayReq::same_event($eid, $globals->asso('id')));
101 $globals->updateNbValid();
102 }
103
104 if ($action == 'archive') {
105 XDB::execute("UPDATE group_events
106 SET archive = 1
107 WHERE eid = {?} AND asso_id = {?}",
108 $eid, $globals->asso('id'));
109 }
110
111 if ($action == 'unarchive') {
112 XDB::execute("UPDATE group_events
113 SET archive = 0
114 WHERE eid = {?} AND asso_id = {?}",
115 $eid, $globals->asso('id'));
116 }
117
118 $page->assign('archive', $archive);
119 $evenements = XDB::iterator('SELECT e.*, LEFT(10, e.debut) AS first_day, LEFT(10, e.fin) AS last_day,
120 IF(e.deadline_inscription,
121 e.deadline_inscription >= LEFT(NOW(), 10),
122 1) AS inscr_open,
123 e.deadline_inscription,
124 MAX(ep.nb) IS NOT NULL AS inscrit, MAX(ep.paid) AS paid
125 FROM group_events AS e
126 LEFT JOIN group_event_participants AS ep ON (ep.eid = e.eid AND ep.uid = {?})
127 WHERE asso_id = {?} AND archive = {?}
128 GROUP BY e.eid
129 ORDER BY inscr_open DESC, debut DESC',
130 S::i('uid'), $globals->asso('id'), $archive ? 1 : 0);
131
132 $evts = array();
133 $undisplayed_events = 0;
134 $this->load('xnetevents.inc.php');
135
136 while ($e = $evenements->next()) {
137 if (!is_member() && !may_update() && !$e['accept_nonmembre']) {
138 $undisplayed_events ++;
139 continue;
140 }
141
142 $e['show_participants'] = ($e['show_participants'] && (is_member() || may_update()));
143 $e['moments'] = XDB::fetchAllAssoc('SELECT titre, details, montant, ei.item_id, nb, ep.paid
144 FROM group_event_items AS ei
145 LEFT JOIN group_event_participants AS ep
146 ON (ep.eid = ei.eid AND ep.item_id = ei.item_id AND ep.uid = {?})
147 WHERE ei.eid = {?}',
148 S::i('uid'), $e['eid']);
149
150 $e['topay'] = 0;
151 $e['paid'] = $e['moments'][0]['paid'];
152 foreach ($e['moments'] as $m) {
153 $e['topay'] += $m['nb'] * $m['montant'];
154 }
155
156 $query = XDB::query(
157 "SELECT amount
158 FROM payment_transactions AS t
159 WHERE ref = {?} AND uid = {?}", $e['paiement_id'], S::v('uid'));
160 $montants = $query->fetchColumn();
161
162 foreach ($montants as $m) {
163 $p = strtr(substr($m, 0, strpos($m, 'EUR')), ',', '.');
164 $e['paid'] += trim($p);
165 }
166
167 make_event_date($e);
168
169 if (Env::has('updated') && $e['eid'] == Env::i('updated')) {
170 $page->assign('updated', $e);
171 }
172 $evts[] = $e;
173 }
174
175 $page->assign('evenements', $evts);
176 $page->assign('undisplayed_events', $undisplayed_events);
177 }
178
179 function handler_sub(&$page, $eid = null)
180 {
181 $this->load('xnetevents.inc.php');
182 $page->changeTpl('xnetevents/subscribe.tpl');
183
184 $evt = get_event_detail($eid);
185 if (is_null($evt)) {
186 return PL_NOT_FOUND;
187 }
188 if ($evt === false) {
189 global $globals, $platal;
190 $url = $globals->asso('sub_url');
191 if (empty($url)) {
192 $url = $platal->ns . 'subscribe';
193 }
194 $page->kill('Cet événement est reservé aux membres du groupe ' . $globals->asso('nom') .
195 '. Pour devenir membre, rends-toi sur la page de <a href="' . $url . '">demande d\'inscripton</a>.');
196 }
197
198 if (!$evt['inscr_open']) {
199 $page->kill('Les inscriptions pour cet événement sont closes');
200 }
201 if (!$evt['accept_nonmembre'] && !is_member() && !may_update()) {
202 $page->kill('Cet événement est fermé aux non-membres du groupe');
203 }
204
205 global $globals;
206 $res = XDB::query("SELECT stamp
207 FROM requests
208 WHERE type = 'paiements' AND data LIKE {?}",
209 PayReq::same_event($evt['eid'], $globals->asso('id')));
210 $page->assign('validation', $res->numRows());
211 $page->assign('event', $evt);
212
213 if (!Post::has('submit')) {
214 return;
215 } else {
216 S::assert_xsrf_token();
217 }
218
219 $moments = Post::v('moment', array());
220 $pers = Post::v('personnes', array());
221 $subs = array();
222
223 foreach ($moments as $j => $v) {
224 $subs[$j] = intval($v);
225
226 // retreive ohter field when more than one person
227 if ($subs[$j] == 2) {
228 if (!isset($pers[$j]) || !is_numeric($pers[$j])
229 || $pers[$j] < 0)
230 {
231 $page->trigError("Tu dois choisir un nombre d'invités correct&nbsp;!");
232 return;
233 }
234 $subs[$j] = 1 + $pers[$j];
235 }
236 }
237
238 // impossible to unsubscribe if you already paid sthing
239 if (!array_sum($subs) && $evt['paid'] != 0) {
240 $page->trigError("Impossible de te désinscrire complètement " .
241 "parce que tu as fait un paiement par " .
242 "chèque ou par liquide. Contacte un " .
243 "administrateur du groupe si tu es sûr de " .
244 "ne pas venir.");
245 return;
246 }
247
248 // update actual inscriptions
249 $updated = false;
250 $total = 0;
251 $paid = $evt['paid'] ? $evt['paid'] : 0;
252 $telepaid= $evt['telepaid'] ? $evt['telepaid'] : 0;
253 foreach ($subs as $j => $nb) {
254 if ($nb >= 0) {
255 XDB::execute(
256 "REPLACE INTO group_event_participants
257 VALUES ({?}, {?}, {?}, {?}, {?}, {?})",
258 $eid, S::v('uid'), $j, $nb, Env::has('notify_payment') ? 'notify_payment' : '',
259 $j == 1 ? $paid - $telepaid : 0);
260 $updated = $eid;
261 } else {
262 XDB::execute(
263 "DELETE FROM group_event_participants
264 WHERE eid = {?} AND uid = {?} AND item_id = {?}",
265 $eid, S::v("uid"), $j);
266 $updated = $eid;
267 }
268 $total += $nb;
269 }
270 if ($updated !== false) {
271 $page->trigSuccess('Ton inscription à l\'événement a été mise à jour avec succès.');
272 subscribe_lists_event(S::i('uid'), $evt, ($total > 0 ? 1 : 0), 0);
273 }
274 $page->assign('event', get_event_detail($eid));
275 }
276
277 function handler_csv(&$page, $eid = null, $item_id = null)
278 {
279 $this->load('xnetevents.inc.php');
280
281 if (!is_numeric($item_id)) {
282 $item_id = null;
283 }
284
285 $evt = get_event_detail($eid, $item_id);
286 if (!$evt) {
287 return PL_NOT_FOUND;
288 }
289
290 pl_content_headers("text/x-csv");
291 $page->changeTpl('xnetevents/csv.tpl', NO_SKIN);
292
293 $admin = may_update();
294
295 $tri = (Env::v('order') == 'alpha' ? UserFilter::sortByPromo() : UserFilter::sortByName());
296
297 $page->assign('participants',
298 get_event_participants($evt, $item_id, $tri));
299
300 $page->assign('admin', $admin);
301 $page->assign('moments', $evt['moments']);
302 $page->assign('money', $evt['money']);
303 $page->assign('telepayment', $evt['paiement_id']);
304 $page->assign('tout', !Env::v('item_id', false));
305 }
306
307 function handler_ical(&$page, $eid = null)
308 {
309 global $globals;
310
311 $this->load('xnetevents.inc.php');
312 $evt = get_event_detail($eid);
313 if (!$evt) {
314 return PL_FORBIDDEN;
315 }
316 $evt['debut'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['debut']);
317 $evt['fin'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['fin']);
318
319 foreach ($evt['moments'] as $m) {
320 $evt['descriptif'] .= "\n\n** " . $m['titre'] . " **\n" . $m['details'];
321 }
322
323 $page->changeTpl('xnetevents/calendar.tpl', NO_SKIN);
324
325 require_once('ical.inc.php');
326 $page->assign('asso', $globals->asso());
327 $page->assign('timestamp', time());
328 $page->assign('admin', may_update());
329
330 if (may_update()) {
331 $page->assign('participants', get_event_participants($evt, null, UserFilter::sortByPromo()));
332 }
333 $page->register_function('display_ical', 'display_ical');
334 $page->assign_by_ref('e', $evt);
335
336 pl_content_headers("text/calendar");
337 }
338
339 function handler_edit(&$page, $eid = null)
340 {
341 global $globals;
342
343 // get eid if the the given one is a short name
344 if (!is_null($eid) && !is_numeric($eid)) {
345 $res = XDB::query("SELECT eid
346 FROM group_events
347 WHERE asso_id = {?} AND short_name = {?}",
348 $globals->asso('id'), $eid);
349 if ($res->numRows()) {
350 $eid = (int)$res->fetchOneCell();
351 }
352 }
353
354 // check the event is in our group
355 if (!is_null($eid)) {
356 $res = XDB::query("SELECT short_name
357 FROM group_events
358 WHERE eid = {?} AND asso_id = {?}",
359 $eid, $globals->asso('id'));
360 if ($res->numRows()) {
361 $infos = $res->fetchOneAssoc();
362 } else {
363 return PL_FORBIDDEN;
364 }
365 }
366
367 $page->changeTpl('xnetevents/edit.tpl');
368
369 $moments = range(1, 4);
370 $error = false;
371 $page->assign('moments', $moments);
372
373 if (Post::v('intitule')) {
374 S::assert_xsrf_token();
375
376 $this->load('xnetevents.inc.php');
377 $short_name = event_change_shortname($page, $eid,
378 $infos['short_name'],
379 Env::v('short_name', ''));
380 if ($short_name != Env::v('short_name')) {
381 $error = true;
382 }
383 $evt = array(
384 'eid' => $eid,
385 'asso_id' => $globals->asso('id'),
386 'paiement_id' => Post::v('paiement_id') > 0 ? Post::v('paiement_id') : null,
387 'debut' => Post::v('deb_Year').'-'.Post::v('deb_Month')
388 .'-'.Post::v('deb_Day').' '.Post::v('deb_Hour')
389 .':'.Post::v('deb_Minute').':00',
390 'fin' => Post::v('fin_Year').'-'.Post::v('fin_Month')
391 .'-'.Post::v('fin_Day').' '.Post::v('fin_Hour')
392 .':'.Post::v('fin_Minute').':00',
393 'short_name' => $short_name,
394 );
395
396 $trivial = array('intitule', 'descriptif', 'noinvite',
397 'show_participants', 'accept_nonmembre', 'uid');
398 foreach ($trivial as $k) {
399 $evt[$k] = Post::v($k);
400 }
401 if (!$eid) {
402 $evt['uid'] = S::v('uid');
403 }
404
405 if (Post::v('deadline')) {
406 $evt['deadline_inscription'] = Post::v('inscr_Year').'-'
407 . Post::v('inscr_Month').'-'
408 . Post::v('inscr_Day');
409 } else {
410 $evt['deadline_inscription'] = null;
411 }
412
413 // Store the modifications in the database
414 XDB::execute('REPLACE INTO group_events
415 SET eid = {?}, asso_id = {?}, uid = {?}, intitule = {?},
416 paiement_id = {?}, descriptif = {?}, debut = {?},
417 fin = {?}, show_participants = {?}, short_name = {?},
418 deadline_inscription = {?}, noinvite = {?},
419 accept_nonmembre = {?}',
420 $evt['eid'], $evt['asso_id'], $evt['uid'],
421 $evt['intitule'], $evt['paiement_id'], $evt['descriptif'],
422 $evt['debut'], $evt['fin'], $evt['show_participants'],
423 $evt['short_name'], $evt['deadline_inscription'],
424 $evt['noinvite'], $evt['accept_nonmembre']);
425
426 // if new event, get its id
427 if (!$eid) {
428 $eid = XDB::insertId();
429 }
430
431 $nb_moments = 0;
432 $money_defaut = 0;
433
434 foreach ($moments as $i) {
435 if (Post::v('titre'.$i)) {
436 $nb_moments++;
437
438 $montant = strtr(Post::v('montant'.$i), ',', '.');
439 $money_defaut += (float)$montant;
440 XDB::execute("
441 REPLACE INTO group_event_items
442 VALUES ({?}, {?}, {?}, {?}, {?})",
443 $eid, $i, Post::v('titre'.$i),
444 Post::v('details'.$i), $montant);
445 } else {
446 XDB::execute("DELETE FROM group_event_items
447 WHERE eid = {?} AND item_id = {?}", $eid, $i);
448 }
449 }
450 // request for a new payment
451 if (Post::v('paiement_id') == -1 && $money_defaut >= 0) {
452 require_once 'validations.inc.php';
453 $p = new PayReq(S::user(),
454 Post::v('intitule')." - ".$globals->asso('nom'),
455 Post::v('site'), $money_defaut,
456 Post::v('confirmation'), 0, 999,
457 $globals->asso('id'), $eid);
458 if ($p->accept()) {
459 $p->submit();
460 } else {
461 $page->assign('paiement_message', Post::v('confirmation'));
462 $page->assign('paiement_site', Post::v('site'));
463 $error = true;
464 }
465 }
466
467 // events with no sub-event: add a sub-event with no name
468 if ($nb_moments == 0) {
469 XDB::execute("INSERT INTO group_event_items
470 VALUES ({?}, {?}, '', '', 0)", $eid, 1);
471 }
472
473 if (!$error) {
474 pl_redirect('events');
475 }
476 }
477
478 // get a list of all the payment for this asso
479 $res = XDB::iterator("SELECT id, text
480 FROM payments
481 WHERE asso_id = {?}", $globals->asso('id'));
482 $paiements = array();
483 while ($a = $res->next()) $paiements[$a['id']] = $a['text']; {
484 $page->assign('paiements', $paiements);
485 }
486
487 // when modifying an old event retreive the old datas
488 if ($eid) {
489 $res = XDB::query(
490 "SELECT eid, intitule, descriptif, debut, fin, uid,
491 show_participants, paiement_id, short_name,
492 deadline_inscription, noinvite, accept_nonmembre
493 FROM group_events
494 WHERE eid = {?}", $eid);
495 $evt = $res->fetchOneAssoc();
496 // find out if there is already a request for a payment for this event
497 require_once 'validations.inc.php';
498 $res = XDB::query("SELECT stamp
499 FROM requests
500 WHERE type = 'paiements' AND data LIKE {?}",
501 PayReq::same_event($eid, $globals->asso('id')));
502 $stamp = $res->fetchOneCell();
503 if ($stamp) {
504 $evt['paiement_id'] = -2;
505 $evt['paiement_req'] = $stamp;
506 }
507 $page->assign('evt', $evt);
508 // get all the different moments infos
509 $res = XDB::iterator(
510 "SELECT item_id, titre, details, montant
511 FROM group_event_items AS ei
512 INNER JOIN group_events AS e ON(e.eid = ei.eid)
513 WHERE e.eid = {?}
514 ORDER BY item_id", $eid);
515 $items = array();
516 while ($item = $res->next()) {
517 $items[$item['item_id']] = $item;
518 }
519 $page->assign('items', $items);
520 }
521 $page->assign('url_ref', $eid);
522 }
523
524 function handler_admin(&$page, $eid = null, $item_id = null)
525 {
526 global $globals;
527
528 $this->load('xnetevents.inc.php');
529
530 $evt = get_event_detail($eid, $item_id);
531 if (!$evt) {
532 return PL_NOT_FOUND;
533 }
534
535 $page->changeTpl('xnetevents/admin.tpl');
536 if (!$evt['show_participants'] && !may_update()) {
537 return PL_FORBIDDEN;
538 }
539
540 if (may_update() && Post::v('adm')) {
541 S::assert_xsrf_token();
542
543 $member = User::getSilent(Post::v('mail'));
544 if (!$member) {
545 $page->trigError("Membre introuvable");
546 }
547
548 // change the price paid by a participant
549 if (Env::v('adm') == 'prix' && $member) {
550 $amount = strtr(Env::v('montant'), ',', '.');
551 XDB::execute("UPDATE group_event_participants
552 SET paid = paid + {?}
553 WHERE uid = {?} AND eid = {?} AND item_id = 1",
554 $amount, $member->uid, $evt['eid']);
555 subscribe_lists_event($member->uid, $evt, 1, $amount);
556 }
557
558 // change the number of personns coming with a participant
559 if (Env::v('adm') == 'nbs' && $member) {
560 $res = XDB::query("SELECT paid
561 FROM group_event_participants
562 WHERE uid = {?} AND eid = {?}",
563 $member->uid, $evt['eid']);
564
565 $paid = intval($res->fetchOneCell());
566 $nbs = Post::v('nb', array());
567
568 foreach ($nbs as $id => $nb) {
569 $nb = max(intval($nb), 0);
570 XDB::execute('REPLACE INTO group_event_participants
571 VALUES ({?}, {?}, {?}, {?}, {?}, {?})',
572 $evt['eid'], $member->uid, $id, $nb, '', $id == 1 ? $paid : 0);
573 }
574
575 $res = XDB::query('SELECT COUNT(uid) AS cnt, SUM(nb) AS nb
576 FROM group_event_participants
577 WHERE uid = {?} AND eid = {?}
578 GROUP BY uid',
579 $member->uid, $evt['eid']);
580 $u = $res->fetchOneAssoc();
581 if ($u['cnt'] == 1 && $paid == 0 && Post::v('cancel')) {
582 XDB::execute("DELETE FROM group_event_participants
583 WHERE uid = {?} AND eid = {?}",
584 $member->uid, $evt['eid']);
585 $u = 0;
586 subscribe_lists_event($member->uid, $evt, -1, $paid);
587 } else {
588 $u = $u['cnt'] ? $u['nb'] : null;
589 subscribe_lists_event($member->uid, $evt, ($u > 0 ? 1 : 0), $paid);
590 }
591 }
592
593 $evt = get_event_detail($eid, $item_id);
594 }
595
596 $page->assign_by_ref('evt', $evt);
597 $page->assign('tout', is_null($item_id));
598
599 if (count($evt['moments'])) {
600 $page->assign('moments', $evt['moments']);
601 }
602
603 if ($evt['paiement_id']) {
604 $infos = User::getBulkUsersWithUIDs(
605 XDB::fetchAllAssoc('SELECT t.uid, t.amount
606 FROM payment_transactions AS t
607 LEFT JOIN group_event_participants AS ep ON(ep.uid = t.uid AND ep.eid = {?})
608 WHERE t.ref = {?} AND ep.uid IS NULL',
609 $evt['eid'], $evt['paiement_id']),
610 'uid', 'user');
611 $page->assign('oublis', count($infos));
612 $page->assign('oubliinscription', $infos);
613 }
614
615 $absents = User::getBulkUsersFromDB('SELECT p.uid
616 FROM group_event_participants AS p
617 LEFT JOIN group_event_participants AS p2 ON (p2.uid = p.uid
618 AND p2.eid = p.eid
619 AND p2.nb != 0)
620 WHERE p.eid = {?} AND p2.eid IS NULL
621 GROUP BY p.uid', $evt['eid']);
622
623 $ofs = Env::i('offset');
624 $tot = (is_null($evt['nb_tot']) ? $evt['nb'] : $evt['nb_tot']);
625 $nbp = ceil($tot / NB_PER_PAGE);
626 if ($nbp > 1) {
627 $links = array();
628 if ($ofs) {
629 $links['précédent'] = $ofs - 1;
630 }
631 for ($i = 1 ; $i <= $nbp; $i++) {
632 $links[(string)$i] = $i - 1;
633 }
634 if ($ofs < $nbp - 1) {
635 $links['suivant'] = $ofs+1;
636 }
637 $page->assign('links', $links);
638 }
639
640 $page->assign('absents', $absents);
641 $page->assign('participants',
642 get_event_participants($evt, $item_id, UserFilter::sortByName(),
643 NB_PER_PAGE, $ofs * NB_PER_PAGE));
644 }
645 }
646
647 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
648 ?>