Adds a choice for events order for group animators.
[platal.git] / modules / xnetevents.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2013 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_PASSWD, 'groups'),
30 '%grp/events/sub' => $this->make_hook('sub', AUTH_PASSWD, 'groups'),
31 '%grp/events/csv' => $this->make_hook('csv', AUTH_PASSWD, 'groups', NO_HTTPS),
32 '%grp/events/ical' => $this->make_hook('ical', AUTH_PASSWD, 'groups', NO_HTTPS),
33 '%grp/events/edit' => $this->make_hook('edit', AUTH_PASSWD, 'groupadmin'),
34 '%grp/events/admin' => $this->make_hook('admin', AUTH_PASSWD, '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 require_once 'emails.inc.php';
77 foreach (explode(',', $globals->xnet->event_lists) as $suffix) {
78 delete_list_alias($tmp[1] . $suffix, $globals->xnet->evts_domain, 'event');
79 }
80 }
81
82 // archive le paiement associé si il existe
83 $pay_id = XDB::fetchOneCell("SELECT paiement_id
84 FROM group_events
85 WHERE eid = {?} AND asso_id = {?}",
86 $eid, $globals->asso('id'));
87 if (!$pay_id=='') {
88 XDB::execute("UPDATE payments
89 SET flags = 'old'
90 WHERE id = {?}",
91 $pay_id);
92 }
93 // deletes the event items
94 XDB::execute('DELETE FROM group_event_items
95 WHERE eid = {?}', $eid);
96
97 // deletes the event participants
98 XDB::execute('DELETE FROM group_event_participants
99 WHERE eid = {?}', $eid);
100
101 // deletes the event
102 XDB::execute('DELETE FROM group_events
103 WHERE eid = {?} AND asso_id = {?}',
104 $eid, $globals->asso('id'));
105
106 // delete the requests for payments
107 XDB::execute("DELETE FROM requests
108 WHERE type = 'paiements' AND data LIKE {?}",
109 PayReq::same_event($eid, $globals->asso('id')));
110 $globals->updateNbValid();
111 }
112
113 if ($action == 'archive') {
114 $pay_id = XDB::fetchOneCell("SELECT paiement_id
115 FROM group_events
116 WHERE eid = {?} AND asso_id = {?}",
117 $eid, $globals->asso('id'));
118 if (!$pay_id=='') {
119 XDB::execute("UPDATE payments
120 SET flags = 'old'
121 WHERE id = {?}",
122 $pay_id);
123 }
124 XDB::execute("UPDATE group_events
125 SET archive = 1
126 WHERE eid = {?} AND asso_id = {?}",
127 $eid, $globals->asso('id'));
128 }
129
130 if ($action == 'unarchive') {
131 $pay_id = XDB::fetchOneCell("SELECT paiement_id FROM group_events
132 WHERE eid = {?} AND asso_id = {?}",
133 $eid, $globals->asso('id'));
134 if (!$pay_id=='') {
135 XDB::execute("UPDATE payments
136 SET flags = ''
137 WHERE id = {?}",
138 $pay_id);
139 }
140 XDB::execute("UPDATE group_events
141 SET archive = 0
142 WHERE eid = {?} AND asso_id = {?}",
143 $eid, $globals->asso('id'));
144 }
145
146 $page->assign('archive', $archive);
147
148 if (Post::has('order')) {
149 $order = Post::v('order');
150 XDB::execute("UPDATE groups
151 SET event_order = {?}
152 WHERE id = {?}",
153 $order, $globals->asso('id'));
154 } else {
155 $order = XDB::fetchOneCell("SELECT event_order FROM groups
156 WHERE id = {?}",
157 $globals->asso('id'));
158 }
159 if ($order == 'desc') {
160 $evenements = XDB::iterator('SELECT e.*, LEFT(e.debut, 10) AS first_day, LEFT(e.fin, 10) AS last_day,
161 IF(e.deadline_inscription,
162 e.deadline_inscription >= LEFT(NOW(), 10),
163 1) AS inscr_open,
164 e.deadline_inscription,
165 MAX(ep.nb) IS NOT NULL AS inscrit, MAX(ep.paid) AS paid
166 FROM group_events AS e
167 LEFT JOIN group_event_participants AS ep ON (ep.eid = e.eid AND ep.uid = {?})
168 WHERE asso_id = {?} AND archive = {?}
169 GROUP BY e.eid
170 ORDER BY inscr_open DESC, debut DESC',
171 S::i('uid'), $globals->asso('id'), $archive ? 1 : 0);
172 } else {
173 $evenements = XDB::iterator('SELECT e.*, LEFT(e.debut, 10) AS first_day, LEFT(e.fin, 10) AS last_day,
174 IF(e.deadline_inscription,
175 e.deadline_inscription >= LEFT(NOW(), 10),
176 1) AS inscr_open,
177 e.deadline_inscription,
178 MAX(ep.nb) IS NOT NULL AS inscrit, MAX(ep.paid) AS paid
179 FROM group_events AS e
180 LEFT JOIN group_event_participants AS ep ON (ep.eid = e.eid AND ep.uid = {?})
181 WHERE asso_id = {?} AND archive = {?}
182 GROUP BY e.eid
183 ORDER BY inscr_open DESC, debut ASC',
184 S::i('uid'), $globals->asso('id'), $archive ? 1 : 0);
185 }
186 $page->assign('order', $order);
187
188 $evts = array();
189 $undisplayed_events = 0;
190 $this->load('xnetevents.inc.php');
191
192 while ($e = $evenements->next()) {
193 if (!is_member() && !may_update() && !$e['accept_nonmembre']) {
194 $undisplayed_events ++;
195 continue;
196 }
197
198 $e['show_participants'] = ($e['show_participants'] && (is_member() || may_update()));
199 $e['moments'] = XDB::fetchAllAssoc('SELECT titre, details, montant, ei.item_id, nb, ep.paid
200 FROM group_event_items AS ei
201 LEFT JOIN group_event_participants AS ep
202 ON (ep.eid = ei.eid AND ep.item_id = ei.item_id AND ep.uid = {?})
203 WHERE ei.eid = {?}',
204 S::i('uid'), $e['eid']);
205
206 $e['topay'] = 0;
207 $e['paid'] = $e['moments'][0]['paid'];
208 foreach ($e['moments'] as $m) {
209 $e['topay'] += $m['nb'] * $m['montant'];
210 }
211
212 $montant = XDB::fetchOneCell(
213 "SELECT SUM(amount) as sum_amount
214 FROM payment_transactions AS t
215 WHERE ref = {?} AND uid = {?}", $e['paiement_id'], S::v('uid'));
216 $e['paid'] += $montant;
217
218 make_event_date($e);
219
220 if (Env::has('updated') && $e['eid'] == Env::i('updated')) {
221 $page->assign('updated', $e);
222 }
223 $evts[] = $e;
224 }
225
226 $page->assign('evenements', $evts);
227 $page->assign('undisplayed_events', $undisplayed_events);
228 }
229
230 function handler_sub($page, $eid = null)
231 {
232 $this->load('xnetevents.inc.php');
233 $page->changeTpl('xnetevents/subscribe.tpl');
234
235 $evt = get_event_detail($eid);
236 if (is_null($evt)) {
237 return PL_NOT_FOUND;
238 }
239 if ($evt === false) {
240 global $globals, $platal;
241 $url = $globals->asso('sub_url');
242 if (empty($url)) {
243 $url = $platal->ns . 'subscribe';
244 }
245 $page->kill('Cet événement est reservé aux membres du groupe ' . $globals->asso('nom') .
246 '. Pour devenir membre, rends-toi sur la page de <a href="' . $url . '">demande d\'inscripton</a>.');
247 }
248
249 if (!$evt['inscr_open']) {
250 $page->kill('Les inscriptions pour cet événement sont closes');
251 }
252 if (!$evt['accept_nonmembre'] && !is_member() && !may_update()) {
253 $page->kill('Cet événement est fermé aux non-membres du groupe');
254 }
255
256 global $globals;
257 $res = XDB::query("SELECT stamp
258 FROM requests
259 WHERE type = 'paiements' AND data LIKE {?}",
260 PayReq::same_event($evt['eid'], $globals->asso('id')));
261 $page->assign('validation', $res->numRows());
262 $page->assign('event', $evt);
263
264 if (!Post::has('submit')) {
265 return;
266 } else {
267 S::assert_xsrf_token();
268 }
269
270 $moments = Post::v('moment', array());
271 $pers = Post::v('personnes', array());
272 $subs = array();
273
274 foreach ($moments as $j => $v) {
275 $subs[$j] = intval($v);
276
277 // retreive ohter field when more than one person
278 if ($subs[$j] == 2) {
279 if (!isset($pers[$j]) || !is_numeric($pers[$j]) || $pers[$j] < 0) {
280 $page->trigError("Tu dois choisir un nombre d'invités correct&nbsp;!");
281 return;
282 }
283 $subs[$j] = $pers[$j];
284 }
285 }
286
287 // impossible to unsubscribe if you already paid sthing
288 if (!array_sum($subs) && $evt['paid'] != 0) {
289 $page->trigError("Impossible de te désinscrire complètement " .
290 "parce que tu as fait un paiement par " .
291 "chèque ou par liquide. Contacte un " .
292 "administrateur du groupe si tu es sûr de " .
293 "ne pas venir.");
294 return;
295 }
296
297 // update actual inscriptions
298 $updated = false;
299 $total = 0;
300 $paid = $evt['paid'] ? $evt['paid'] : 0;
301 $telepaid = $evt['telepaid'] ? $evt['telepaid'] : 0;
302 $paid_inserted = false;
303 foreach ($subs as $j => $nb) {
304 if ($nb >= 0) {
305 XDB::execute('INSERT INTO group_event_participants (eid, uid, item_id, nb, flags, paid)
306 VALUES ({?}, {?}, {?}, {?}, {?}, {?})
307 ON DUPLICATE KEY UPDATE nb = VALUES(nb), flags = VALUES(flags), paid = VALUES(paid)',
308 $eid, S::v('uid'), $j, $nb, (Env::has('notify_payment') ? 'notify_payment' : ''),
309 ((!$paid_inserted) ? $paid - $telepaid : 0));
310 $updated = $eid;
311 $paid_inserted = true;
312 } else {
313 XDB::execute(
314 "DELETE FROM group_event_participants
315 WHERE eid = {?} AND uid = {?} AND item_id = {?}",
316 $eid, S::v("uid"), $j);
317 $updated = $eid;
318 }
319 $total += $nb;
320 }
321 if ($updated !== false) {
322 $page->trigSuccess('Ton inscription à l\'événement a été mise à jour avec succès.');
323 subscribe_lists_event(S::i('uid'), $evt['short_name'], ($total > 0 ? 1 : 0), 0);
324
325 if ($evt['subscription_notification'] != 'nobody') {
326 $mailer = new PlMailer('xnetevents/subscription-notif.mail.tpl');
327 if ($evt['subscription_notification'] != 'creator') {
328 $admins = $globals->asso()->iterAdmins();
329 while ($admin = $admins->next()) {
330 $mailer->addTo($admin);
331 }
332 }
333 if ($evt['subscription_notification'] != 'animator') {
334 $mailer->addTo($evt['organizer']);
335 }
336 $mailer->assign('group', $globals->asso('nom'));
337 $mailer->assign('event', $evt['intitule']);
338 $mailer->assign('subs', $subs);
339 $mailer->assign('moments', $evt['moments']);
340 $mailer->assign('name', S::user()->fullName('promo'));
341 $mailer->send();
342 }
343 }
344 $page->assign('event', get_event_detail($eid));
345 }
346
347 function handler_csv($page, $eid = null, $item_id = null)
348 {
349 $this->load('xnetevents.inc.php');
350
351 if (!is_numeric($item_id)) {
352 $item_id = null;
353 }
354
355 $evt = get_event_detail($eid, $item_id);
356 if (!$evt) {
357 return PL_NOT_FOUND;
358 }
359
360 pl_cached_content_headers('text/x-csv', 'iso-8859-1', 1);
361 $page->changeTpl('xnetevents/csv.tpl', NO_SKIN);
362
363 $admin = may_update();
364 $tri = (Env::v('order') == 'alpha' ? UserFilter::sortByPromo() : UserFilter::sortByName());
365 $all = !Env::v('item_id', false);
366
367 $participants = get_event_participants($evt, $item_id, $tri);
368 $title = 'Nom;Prénom;Promotion';
369 if ($admin) {
370 $title .=';Société;Poste';
371 }
372 if ($all) {
373 foreach ($evt['moments'] as $moment) {
374 $title .= ';' . $moment['titre'];
375 }
376 }
377 if ($admin && $evt['money']) {
378 $title .= ';À payer;';
379 if ($evt['paiement_id']) {
380 $title .= 'Télépaiement;Liquide/Chèque;';
381 }
382 $title .= 'Payé';
383 } else {
384 $title .= ';Nombre';
385 }
386 echo utf8_decode($title) . "\n";
387
388 if ($participants) {
389 foreach ($participants as $participant) {
390 $user = $participant['user'];
391 $line = $user->lastName() . ';' . $user->firstName() . ';' . $user->promo();
392 if ($admin && $user->hasProfile()) {
393 $line .= ';' . $user->profile()->getMainJob()->company->name . ';' . $user->profile()->getMainJob()->description;
394 } else {
395 $line .= ';;';
396 }
397 if ($all) {
398 foreach ($evt['moments'] as $moment) {
399 $line .= ';' . $participant[$moment['item_id']];
400 }
401 }
402 if ($admin && $evt['money']) {
403 $line .= ';' . $participant['montant'] . ';';
404 if ($evt['paiement_id']) {
405 $line .= $participant['telepayment'] . ';' . $participant['adminpaid'] . ';';
406 }
407 $line .= $participant['paid'];
408 } else {
409 $line .= ';' . $participant['nb'];
410 }
411
412 echo utf8_decode($line) . "\n";
413 }
414 }
415 exit();
416 }
417
418 function handler_ical($page, $eid = null)
419 {
420 global $globals;
421
422 $this->load('xnetevents.inc.php');
423 $evt = get_event_detail($eid);
424 if (!$evt) {
425 return PL_FORBIDDEN;
426 }
427 $evt['debut'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['debut']);
428 $evt['fin'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['fin']);
429
430 foreach ($evt['moments'] as $m) {
431 $evt['descriptif'] .= "\n\n** " . $m['titre'] . " **\n" . $m['details'];
432 }
433
434 $page->changeTpl('xnetevents/calendar.tpl', NO_SKIN);
435
436 require_once('ical.inc.php');
437 $page->assign('asso', $globals->asso());
438 $page->assign('timestamp', time());
439 $page->assign('admin', may_update());
440
441 if (may_update()) {
442 $page->assign('participants', get_event_participants($evt, null, UserFilter::sortByPromo()));
443 }
444 $page->register_function('display_ical', 'display_ical');
445 $page->assign_by_ref('e', $evt);
446
447 pl_content_headers("text/calendar");
448 }
449
450 function handler_edit($page, $eid = null)
451 {
452 global $globals;
453
454 // get eid if the the given one is a short name
455 if (!is_null($eid) && !is_numeric($eid)) {
456 $res = XDB::query("SELECT eid
457 FROM group_events
458 WHERE asso_id = {?} AND short_name = {?}",
459 $globals->asso('id'), $eid);
460 if ($res->numRows()) {
461 $eid = (int)$res->fetchOneCell();
462 }
463 }
464
465 // check the event is in our group
466 if (!is_null($eid)) {
467 $res = XDB::query("SELECT short_name
468 FROM group_events
469 WHERE eid = {?} AND asso_id = {?}",
470 $eid, $globals->asso('id'));
471 if ($res->numRows()) {
472 $infos = $res->fetchOneAssoc();
473 } else {
474 return PL_FORBIDDEN;
475 }
476 }
477
478 $page->changeTpl('xnetevents/edit.tpl');
479
480 $moments = range(1, 4);
481 $error = false;
482 $page->assign('moments', $moments);
483
484 if (Post::v('intitule')) {
485 S::assert_xsrf_token();
486
487 $this->load('xnetevents.inc.php');
488 $short_name = event_change_shortname($page, $eid,
489 $infos['short_name'],
490 Env::v('short_name', ''));
491 if ($short_name != Env::v('short_name')) {
492 $error = true;
493 }
494 $evt = array(
495 'eid' => $eid,
496 'asso_id' => $globals->asso('id'),
497 'paiement_id' => Post::v('paiement_id') > 0 ? Post::v('paiement_id') : null,
498 'debut' => Post::v('deb_Year').'-'.Post::v('deb_Month')
499 .'-'.Post::v('deb_Day').' '.Post::v('deb_Hour')
500 .':'.Post::v('deb_Minute').':00',
501 'fin' => Post::v('fin_Year').'-'.Post::v('fin_Month')
502 .'-'.Post::v('fin_Day').' '.Post::v('fin_Hour')
503 .':'.Post::v('fin_Minute').':00',
504 'short_name' => $short_name,
505 );
506
507 $trivial = array('intitule', 'descriptif', 'noinvite', 'subscription_notification',
508 'show_participants', 'accept_nonmembre', 'uid');
509 foreach ($trivial as $k) {
510 $evt[$k] = Post::v($k);
511 }
512 if (!$eid) {
513 $evt['uid'] = S::v('uid');
514 }
515
516 if (Post::v('deadline')) {
517 $evt['deadline_inscription'] = Post::v('inscr_Year').'-'
518 . Post::v('inscr_Month').'-'
519 . Post::v('inscr_Day');
520 } else {
521 $evt['deadline_inscription'] = null;
522 }
523
524 // Store the modifications in the database
525 XDB::execute('INSERT INTO group_events (eid, asso_id, uid, intitule, paiement_id,
526 descriptif, debut, fin, show_participants,
527 short_name, deadline_inscription, noinvite,
528 accept_nonmembre, subscription_notification)
529 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})
530 ON DUPLICATE KEY UPDATE asso_id = VALUES(asso_id), uid = VALUES(uid), intitule = VALUES(intitule),
531 paiement_id = VALUES(paiement_id), descriptif = VALUES(descriptif), debut = VALUES(debut),
532 fin = VALUES(fin), show_participants = VALUES(show_participants), short_name = VALUES(short_name),
533 deadline_inscription = VALUES(deadline_inscription), noinvite = VALUES(noinvite),
534 accept_nonmembre = VALUES(accept_nonmembre), subscription_notification = VALUES(subscription_notification)',
535 $evt['eid'], $evt['asso_id'], $evt['uid'],
536 $evt['intitule'], $evt['paiement_id'], $evt['descriptif'],
537 $evt['debut'], $evt['fin'], $evt['show_participants'],
538 $evt['short_name'], $evt['deadline_inscription'],
539 $evt['noinvite'], $evt['accept_nonmembre'], $evt['subscription_notification']);
540
541 // if new event, get its id
542 if (!$eid) {
543 $eid = XDB::insertId();
544 }
545
546 foreach ($moments as $i) {
547 if (Post::v('titre' . $i)) {
548 $nb_moments++;
549
550 $montant = strtr(Post::v('montant' . $i), ',', '.');
551 $money_defaut += (float)$montant;
552 XDB::execute('INSERT INTO group_event_items (eid, item_id, titre, details, montant)
553 VALUES ({?}, {?}, {?}, {?}, {?})
554 ON DUPLICATE KEY UPDATE titre = VALUES(titre), details = VALUES(details), montant = VALUES(montant)',
555 $eid, $i, Post::v('titre' . $i), Post::v('details' . $i), $montant);
556 } else {
557 XDB::execute('DELETE FROM group_event_items
558 WHERE eid = {?} AND item_id = {?}', $eid, $i);
559 }
560 }
561 // request for a new payment
562 if (Post::v('paiement_id') == -1 && $money_defaut >= 0) {
563 $p = new PayReq(S::user(),
564 $globals->asso('nom')." - ".Post::v('intitule'),
565 Post::v('site'), $money_defaut,
566 Post::v('confirmation'), 0, 999,
567 $globals->asso('id'), $eid, Post::v('payment_public') == 'yes');
568 if ($p->accept()) {
569 $p->submit();
570 } else {
571 $page->assign('payment_message', Post::v('confirmation'));
572 $page->assign('payment_site', Post::v('site'));
573 $page->assign('payment_public', Post::v('payment_public') == 'yes');
574 $page->assign('error', true);
575 $error = true;
576 }
577 }
578
579 // events with no sub-event: add a sub-event with no name
580 if ($nb_moments == 0) {
581 XDB::execute("INSERT INTO group_event_items
582 VALUES ({?}, {?}, '', '', 0)", $eid, 1);
583 }
584
585 if (!$error) {
586 pl_redirect('events');
587 }
588 }
589
590 // get a list of all the payment for this asso
591 $res = XDB::iterator("SELECT id, text
592 FROM payments
593 WHERE asso_id = {?} AND NOT FIND_IN_SET('old', flags)",
594 $globals->asso('id'));
595 $paiements = array();
596 while ($a = $res->next()) $paiements[$a['id']] = $a['text']; {
597 $page->assign('paiements', $paiements);
598 }
599
600 // when modifying an old event retreive the old datas
601 if ($eid) {
602 $res = XDB::query(
603 "SELECT eid, intitule, descriptif, debut, fin, uid,
604 show_participants, paiement_id, short_name,
605 deadline_inscription, noinvite, accept_nonmembre, subscription_notification
606 FROM group_events
607 WHERE eid = {?}", $eid);
608 $evt = $res->fetchOneAssoc();
609 // find out if there is already a request for a payment for this event
610 $res = XDB::query("SELECT stamp
611 FROM requests
612 WHERE type = 'paiements' AND data LIKE {?}",
613 PayReq::same_event($eid, $globals->asso('id')));
614 $stamp = $res->fetchOneCell();
615 if ($stamp) {
616 $evt['paiement_id'] = -2;
617 $evt['paiement_req'] = $stamp;
618 }
619 $page->assign('evt', $evt);
620 // get all the different moments infos
621 $res = XDB::iterator(
622 "SELECT item_id, titre, details, montant
623 FROM group_event_items AS ei
624 INNER JOIN group_events AS e ON(e.eid = ei.eid)
625 WHERE e.eid = {?}
626 ORDER BY item_id", $eid);
627 $items = array();
628 while ($item = $res->next()) {
629 $items[$item['item_id']] = $item;
630 }
631 $page->assign('items', $items);
632 }
633 $page->assign('url_ref', $eid);
634 }
635
636 function handler_admin($page, $eid = null, $item_id = null)
637 {
638 global $globals;
639
640 $this->load('xnetevents.inc.php');
641
642 $evt = get_event_detail($eid, $item_id);
643 if (!$evt) {
644 return PL_NOT_FOUND;
645 }
646
647 $page->changeTpl('xnetevents/admin.tpl');
648 if (!$evt['show_participants'] && !may_update()) {
649 return PL_FORBIDDEN;
650 }
651
652 if (may_update() && Post::v('adm')) {
653 S::assert_xsrf_token();
654
655 $member = User::getSilent(Post::v('mail'));
656 if (!$member) {
657 $page->trigError("Membre introuvable");
658 }
659
660 // change the price paid by a participant
661 if (Env::v('adm') == 'prix' && $member) {
662 $amount = strtr(Env::v('montant'), ',', '.');
663 XDB::execute("UPDATE group_event_participants
664 SET paid = paid + {?}
665 WHERE uid = {?} AND eid = {?} AND nb > 0
666 ORDER BY item_id ASC
667 LIMIT 1",
668 $amount, $member->uid, $evt['eid']);
669 subscribe_lists_event($member->uid, $evt['short_name'], 1, $amount);
670 }
671
672 // change the number of personns coming with a participant
673 if (Env::v('adm') == 'nbs' && $member) {
674 $res = XDB::query("SELECT SUM(paid)
675 FROM group_event_participants
676 WHERE uid = {?} AND eid = {?}",
677 $member->uid, $evt['eid']);
678
679 $paid = $res->fetchOneCell();
680
681 // Ensure we have an integer
682 if ($paid == null) {
683 $paid = 0;
684 }
685
686 $nbs = Post::v('nb', array());
687
688 $paid_inserted = false;
689 foreach ($nbs as $id => $nb) {
690 $nb = max(intval($nb), 0);
691 if (!$paid_inserted && $nb > 0) {
692 $item_paid = $paid;
693 $paid_inserted = true;
694 } else {
695 $item_paid = 0;
696 }
697 XDB::execute('INSERT INTO group_event_participants (eid, uid, item_id, nb, flags, paid)
698 VALUES ({?}, {?}, {?}, {?}, {?}, {?})
699 ON DUPLICATE KEY UPDATE nb = VALUES(nb), flags = VALUES(flags), paid = VALUES(paid)',
700 $evt['eid'], $member->uid, $id, $nb, '', $item_paid);
701 }
702
703 $res = XDB::query('SELECT COUNT(uid) AS cnt, SUM(nb) AS nb
704 FROM group_event_participants
705 WHERE uid = {?} AND eid = {?}
706 GROUP BY uid',
707 $member->uid, $evt['eid']);
708 $u = $res->fetchOneAssoc();
709 if ($paid == 0 && Post::v('cancel')) {
710 XDB::execute("DELETE FROM group_event_participants
711 WHERE uid = {?} AND eid = {?}",
712 $member->uid, $evt['eid']);
713 $u = 0;
714 subscribe_lists_event($member->uid, $evt['short_name'], -1, $paid);
715 } else {
716 $u = $u['cnt'] ? $u['nb'] : null;
717 subscribe_lists_event($member->uid, $evt['short_name'], ($u > 0 ? 1 : 0), $paid);
718 }
719 }
720
721 $evt = get_event_detail($eid, $item_id);
722 }
723
724 $page->assign_by_ref('evt', $evt);
725 $page->assign('tout', is_null($item_id));
726
727 if (count($evt['moments'])) {
728 $page->assign('moments', $evt['moments']);
729 }
730
731 if ($evt['paiement_id']) {
732 $infos = User::getBulkUsersWithUIDs(
733 XDB::fetchAllAssoc('SELECT t.uid, t.amount
734 FROM payment_transactions AS t
735 LEFT JOIN group_event_participants AS ep ON(ep.uid = t.uid AND ep.eid = {?})
736 WHERE t.ref = {?} AND ep.uid IS NULL',
737 $evt['eid'], $evt['paiement_id']),
738 'uid', 'user');
739 $page->assign('oublis', count($infos));
740 $page->assign('oubliinscription', $infos);
741 }
742
743 $absents = User::getBulkUsersFromDB('SELECT p.uid
744 FROM group_event_participants AS p
745 LEFT JOIN group_event_participants AS p2 ON (p2.uid = p.uid
746 AND p2.eid = p.eid
747 AND p2.nb != 0)
748 WHERE p.eid = {?} AND p2.eid IS NULL
749 GROUP BY p.uid', $evt['eid']);
750
751 $ofs = Env::i('offset');
752 $nbp = ceil($evt['user_count'] / NB_PER_PAGE);
753 if ($nbp > 1) {
754 $links = array();
755 if ($ofs) {
756 $links['précédent'] = $ofs - 1;
757 }
758 for ($i = 1 ; $i <= $nbp; $i++) {
759 $links[(string)$i] = $i - 1;
760 }
761 if ($ofs < $nbp - 1) {
762 $links['suivant'] = $ofs+1;
763 }
764 $page->assign('links', $links);
765 }
766
767 $page->assign('absents', $absents);
768 $page->assign('participants',
769 get_event_participants($evt, $item_id, UserFilter::sortByName(),
770 NB_PER_PAGE, $ofs * NB_PER_PAGE));
771 }
772 }
773
774 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
775 ?>