Merge commit 'origin/master' into account
[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 montant
158 FROM {$globals->money->mpay_tprefix}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 FROM requests
207 WHERE type = 'paiements' AND data LIKE {?}",
208 PayReq::same_event($evt['eid'], $globals->asso('id')));
209 $page->assign('validation', $res->numRows());
210 $page->assign('event', $evt);
211
212 if (!Post::has('submit')) {
213 return;
214 } else {
215 S::assert_xsrf_token();
216 }
217
218 $moments = Post::v('moment', array());
219 $pers = Post::v('personnes', array());
220 $subs = array();
221
222 foreach ($moments as $j => $v) {
223 $subs[$j] = intval($v);
224
225 // retreive ohter field when more than one person
226 if ($subs[$j] == 2) {
227 if (!isset($pers[$j]) || !is_numeric($pers[$j])
228 || $pers[$j] < 0)
229 {
230 $page->trigError("Tu dois choisir un nombre d'invités correct&nbsp;!");
231 return;
232 }
233 $subs[$j] = 1 + $pers[$j];
234 }
235 }
236
237 // impossible to unsubscribe if you already paid sthing
238 if (!array_sum($subs) && $evt['paid'] != 0) {
239 $page->trigError("Impossible de te désinscrire complètement " .
240 "parce que tu as fait un paiement par " .
241 "chèque ou par liquide. Contacte un " .
242 "administrateur du groupe si tu es sûr de " .
243 "ne pas venir.");
244 return;
245 }
246
247 // update actual inscriptions
248 $updated = false;
249 $total = 0;
250 $paid = $evt['paid'] ? $evt['paid'] : 0;
251 $telepaid= $evt['telepaid'] ? $evt['telepaid'] : 0;
252 foreach ($subs as $j => $nb) {
253 if ($nb >= 0) {
254 XDB::execute(
255 "REPLACE INTO group_event_participants
256 VALUES ({?}, {?}, {?}, {?}, {?}, {?})",
257 $eid, S::v('uid'), $j, $nb, Env::has('notify_payment') ? 'notify_payment' : '',
258 $j == 1 ? $paid - $telepaid : 0);
259 $updated = $eid;
260 } else {
261 XDB::execute(
262 "DELETE FROM group_event_participants
263 WHERE eid = {?} AND uid = {?} AND item_id = {?}",
264 $eid, S::v("uid"), $j);
265 $updated = $eid;
266 }
267 $total += $nb;
268 }
269 if ($updated !== false) {
270 $page->trigSuccess('Ton inscription à l\'événement a été mise à jour avec succès.');
271 subscribe_lists_event($total, S::i('uid'), $evt, $paid);
272 }
273 $page->assign('event', get_event_detail($eid));
274 }
275
276 function handler_csv(&$page, $eid = null, $item_id = null)
277 {
278 $this->load('xnetevents.inc.php');
279
280 if (!is_numeric($item_id)) {
281 $item_id = null;
282 }
283
284 $evt = get_event_detail($eid, $item_id);
285 if (!$evt) {
286 return PL_NOT_FOUND;
287 }
288
289 pl_content_headers("text/x-csv");
290 $page->changeTpl('xnetevents/csv.tpl', NO_SKIN);
291
292 $admin = may_update();
293
294 $tri = (Env::v('order') == 'alpha' ? UserFilter::sortByPromo() : UserFilter::sortByName());
295
296 $page->assign('participants',
297 get_event_participants($evt, $item_id, $tri));
298
299 $page->assign('admin', $admin);
300 $page->assign('moments', $evt['moments']);
301 $page->assign('money', $evt['money']);
302 $page->assign('telepayment', $evt['paiement_id']);
303 $page->assign('tout', !Env::v('item_id', false));
304 }
305
306 function handler_ical(&$page, $eid = null)
307 {
308 global $globals;
309
310 $this->load('xnetevents.inc.php');
311 $evt = get_event_detail($eid);
312 if (!$evt) {
313 return PL_FORBIDDEN;
314 }
315 $evt['debut'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['debut']);
316 $evt['fin'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['fin']);
317
318 foreach ($evt['moments'] as $m) {
319 $evt['descriptif'] .= "\n\n** " . $m['titre'] . " **\n" . $m['details'];
320 }
321
322 $page->changeTpl('xnetevents/calendar.tpl', NO_SKIN);
323
324 require_once('ical.inc.php');
325 $page->assign('asso', $globals->asso());
326 $page->assign('timestamp', time());
327 $page->assign('admin', may_update());
328
329 if (may_update()) {
330 $page->assign('participants', get_event_participants($evt, null, UserFilter::sortByPromo()));
331 }
332 $page->register_function('display_ical', 'display_ical');
333 $page->assign_by_ref('e', $evt);
334
335 pl_content_headers("text/calendar");
336 }
337
338 function handler_edit(&$page, $eid = null)
339 {
340 global $globals;
341
342 // get eid if the the given one is a short name
343 if (!is_null($eid) && !is_numeric($eid)) {
344 $res = XDB::query("SELECT eid
345 FROM group_events
346 WHERE asso_id = {?} AND short_name = {?}",
347 $globals->asso('id'), $eid);
348 if ($res->numRows()) {
349 $eid = (int)$res->fetchOneCell();
350 }
351 }
352
353 // check the event is in our group
354 if (!is_null($eid)) {
355 $res = XDB::query("SELECT short_name
356 FROM group_events
357 WHERE eid = {?} AND asso_id = {?}",
358 $eid, $globals->asso('id'));
359 if ($res->numRows()) {
360 $infos = $res->fetchOneAssoc();
361 } else {
362 return PL_FORBIDDEN;
363 }
364 }
365
366 $page->changeTpl('xnetevents/edit.tpl');
367
368 $moments = range(1, 4);
369 $error = false;
370 $page->assign('moments', $moments);
371
372 if (Post::v('intitule')) {
373 S::assert_xsrf_token();
374
375 $this->load('xnetevents.inc.php');
376 $short_name = event_change_shortname($page, $eid,
377 $infos['short_name'],
378 Env::v('short_name', ''));
379 if ($short_name != Env::v('short_name')) {
380 $error = true;
381 }
382 $evt = array(
383 'eid' => $eid,
384 'asso_id' => $globals->asso('id'),
385 'paiement_id' => Post::v('paiement_id') > 0 ? Post::v('paiement_id') : null,
386 'debut' => Post::v('deb_Year').'-'.Post::v('deb_Month')
387 .'-'.Post::v('deb_Day').' '.Post::v('deb_Hour')
388 .':'.Post::v('deb_Minute').':00',
389 'fin' => Post::v('fin_Year').'-'.Post::v('fin_Month')
390 .'-'.Post::v('fin_Day').' '.Post::v('fin_Hour')
391 .':'.Post::v('fin_Minute').':00',
392 'short_name' => $short_name,
393 );
394
395 $trivial = array('intitule', 'descriptif', 'noinvite',
396 'show_participants', 'accept_nonmembre', 'organisateur_uid');
397 foreach ($trivial as $k) {
398 $evt[$k] = Post::v($k);
399 }
400 if (!$eid) {
401 $evt['organisateur_uid'] = S::v('uid');
402 }
403
404 if (Post::v('deadline')) {
405 $evt['deadline_inscription'] = Post::v('inscr_Year').'-'
406 . Post::v('inscr_Month').'-'
407 . Post::v('inscr_Day');
408 } else {
409 $evt['deadline_inscription'] = null;
410 }
411
412 // Store the modifications in the database
413 XDB::execute('REPLACE INTO group_events
414 SET eid={?}, asso_id={?}, organisateur_uid={?}, intitule={?},
415 paiement_id = {?}, descriptif = {?}, debut = {?},
416 fin = {?}, show_participants = {?}, short_name = {?},
417 deadline_inscription = {?}, noinvite = {?},
418 accept_nonmembre = {?}',
419 $evt['eid'], $evt['asso_id'], $evt['organisateur_uid'],
420 $evt['intitule'], $evt['paiement_id'], $evt['descriptif'],
421 $evt['debut'], $evt['fin'], $evt['show_participants'],
422 $evt['short_name'], $evt['deadline_inscription'],
423 $evt['noinvite'], $evt['accept_nonmembre']);
424
425 // if new event, get its id
426 if (!$eid) {
427 $eid = XDB::insertId();
428 }
429
430 $nb_moments = 0;
431 $money_defaut = 0;
432
433 foreach ($moments as $i) {
434 if (Post::v('titre'.$i)) {
435 $nb_moments++;
436
437 $montant = strtr(Post::v('montant'.$i), ',', '.');
438 $money_defaut += (float)$montant;
439 XDB::execute("
440 REPLACE INTO group_event_items
441 VALUES ({?}, {?}, {?}, {?}, {?})",
442 $eid, $i, Post::v('titre'.$i),
443 Post::v('details'.$i), $montant);
444 } else {
445 XDB::execute("DELETE FROM group_event_items
446 WHERE eid = {?} AND item_id = {?}", $eid, $i);
447 }
448 }
449 // request for a new payment
450 if (Post::v('paiement_id') == -1 && $money_defaut >= 0) {
451 require_once 'validations.inc.php';
452 $p = new PayReq(S::user(),
453 Post::v('intitule')." - ".$globals->asso('nom'),
454 Post::v('site'), $money_defaut,
455 Post::v('confirmation'), 0, 999,
456 $globals->asso('id'), $eid);
457 if ($p->accept()) {
458 $p->submit();
459 } else {
460 $page->assign('paiement_message', Post::v('confirmation'));
461 $page->assign('paiement_site', Post::v('site'));
462 $error = true;
463 }
464 }
465
466 // events with no sub-event: add a sub-event with no name
467 if ($nb_moments == 0) {
468 XDB::execute("INSERT INTO group_event_items
469 VALUES ({?}, {?}, '', '', 0)", $eid, 1);
470 }
471
472 if (!$error) {
473 pl_redirect('events');
474 }
475 }
476
477 // get a list of all the payment for this asso
478 $res = XDB::iterator("SELECT id, text
479 FROM {$globals->money->mpay_tprefix}paiements
480 WHERE asso_id = {?}", $globals->asso('id'));
481 $paiements = array();
482 while ($a = $res->next()) $paiements[$a['id']] = $a['text']; {
483 $page->assign('paiements', $paiements);
484 }
485
486 // when modifying an old event retreive the old datas
487 if ($eid) {
488 $res = XDB::query(
489 "SELECT eid, intitule, descriptif, debut, fin, organisateur_uid,
490 show_participants, paiement_id, short_name,
491 deadline_inscription, noinvite, accept_nonmembre
492 FROM group_events
493 WHERE eid = {?}", $eid);
494 $evt = $res->fetchOneAssoc();
495 // find out if there is already a request for a payment for this event
496 require_once 'validations.inc.php';
497 $res = XDB::query("SELECT stamp FROM requests
498 WHERE type = 'paiements' AND data LIKE {?}",
499 PayReq::same_event($eid, $globals->asso('id')));
500 $stamp = $res->fetchOneCell();
501 if ($stamp) {
502 $evt['paiement_id'] = -2;
503 $evt['paiement_req'] = $stamp;
504 }
505 $page->assign('evt', $evt);
506 // get all the different moments infos
507 $res = XDB::iterator(
508 "SELECT item_id, titre, details, montant
509 FROM group_event_items AS ei
510 INNER JOIN group_events AS e ON(e.eid = ei.eid)
511 WHERE e.eid = {?}
512 ORDER BY item_id", $eid);
513 $items = array();
514 while ($item = $res->next()) {
515 $items[$item['item_id']] = $item;
516 }
517 $page->assign('items', $items);
518 }
519 $page->assign('url_ref', $eid);
520 }
521
522 function handler_admin(&$page, $eid = null, $item_id = null)
523 {
524 global $globals;
525
526 $this->load('xnetevents.inc.php');
527
528 $evt = get_event_detail($eid, $item_id);
529 if (!$evt) {
530 return PL_NOT_FOUND;
531 }
532
533 $page->changeTpl('xnetevents/admin.tpl');
534 if (!$evt['show_participants'] && !may_update()) {
535 return PL_FORBIDDEN;
536 }
537
538 if (may_update() && Post::v('adm')) {
539 S::assert_xsrf_token();
540
541 $member = get_infos(Post::v('mail'));
542 if (!$member) {
543 $page->trigError("Membre introuvable");
544 }
545
546 // change the price paid by a participant
547 if (Env::v('adm') == 'prix' && $member) {
548 XDB::execute("UPDATE group_event_participants
549 SET paid = paid + {?}
550 WHERE uid = {?} AND eid = {?} AND item_id = 1",
551 strtr(Env::v('montant'), ',', '.'),
552 $member['uid'], $evt['eid']);
553 }
554
555 // change the number of personns coming with a participant
556 if (Env::v('adm') == 'nbs' && $member) {
557 $res = XDB::query("SELECT paid
558 FROM group_event_participants
559 WHERE uid = {?} AND eid = {?}",
560 $member['uid'], $evt['eid']);
561
562 $paid = intval($res->fetchOneCell());
563 $nbs = Post::v('nb', array());
564
565 foreach ($nbs as $id => $nb) {
566 $nb = max(intval($nb), 0);
567 XDB::execute("REPLACE INTO group_event_participants
568 VALUES ({?}, {?}, {?}, {?}, {?}, {?})",
569 $evt['eid'], $member['uid'], $id, $nb, '', $id == 1 ? $paid : 0);
570 }
571
572 $res = XDB::query("SELECT COUNT(uid) AS cnt, SUM(nb) AS nb
573 FROM group_event_participants
574 WHERE uid = {?} AND eid = {?}
575 GROUP BY uid",
576 $member['uid'], $evt['eid']);
577 $u = $res->fetchOneAssoc();
578 $u = $u['cnt'] ? $u['nb'] : null;
579 subscribe_lists_event($u, $member['uid'], $evt, $paid);
580 }
581
582 $evt = get_event_detail($eid, $item_id);
583 }
584
585 $page->assign_by_ref('evt', $evt);
586 $page->assign('tout', is_null($item_id));
587
588 if (count($evt['moments'])) {
589 $page->assign('moments', $evt['moments']);
590 }
591
592 if ($evt['paiement_id']) {
593 $infos = User::getBulkUsersWithUIDs(
594 XDB::fetchAllAssoc('SELECT t.uid, t.montant
595 FROM ' . $globals->money->mpay_tprefix . 'transactions AS t
596 LEFT JOIN group_event_participants AS ep ON(ep.uid = t.uid AND ep.eid = {?})
597 WHERE t.ref = {?} AND ep.uid IS NULL',
598 $evt['eid'], $evt['paiement_id']),
599 'uid', 'user');
600 $page->assign('oublis', count($infos));
601 $page->assign('oubliinscription', $infos);
602 }
603
604 $absents = User::getBulkUsersFromDB('SELECT p.uid
605 FROM group_event_participants AS p
606 LEFT JOIN group_event_participants AS p2 ON (p2.uid = p.uid
607 AND p2.eid = p.eid
608 AND p2.nb != 0)
609 WHERE p.eid = {?} AND p2.eid IS NULL
610 GROUP BY p.uid', $evt['eid']);
611
612 $ofs = Env::i('offset');
613 $tot = (Env::v('initiale') ? $tot : $nb_tot);
614 $nbp = ceil($tot / NB_PER_PAGE);
615 if ($nbp > 1) {
616 $links = array();
617 if ($ofs) {
618 $links['précédent'] = $ofs - 1;
619 }
620 for ($i = 1 ; $i <= $nbp; $i++) {
621 $links[(string)$i] = $i - 1;
622 }
623 if ($ofs < $nbp) {
624 $links['suivant'] = $ofs+1;
625 }
626 $page->assign('links', $links);
627 }
628
629 $page->assign('absents', $absents);
630 $page->assign('participants',
631 get_event_participants($evt, $item_id, UserFilter::sortByName(),
632 NB_PER_PAGE, $ofs * NB_PER_PAGE));
633 }
634 }
635
636 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
637 ?>