xnetevents: fix user count in event administration page.
[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 // retrieve other 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 $evt = get_event_detail($eid);
323 if ($evt['topay'] > 0) {
324 $page->trigSuccess('Ton inscription à l\'événement a été mise à jour avec succès, tu peux payer ta participation en cliquant ci-dessous');
325 } else {
326 $page->trigSuccess('Ton inscription à l\'événement a été mise à jour avec succès.');
327 }
328 subscribe_lists_event(S::i('uid'), $evt['short_name'], ($total > 0 ? 1 : 0), 0);
329
330 if ($evt['subscription_notification'] != 'nobody') {
331 $mailer = new PlMailer('xnetevents/subscription-notif.mail.tpl');
332 if ($evt['subscription_notification'] != 'creator') {
333 $admins = $globals->asso()->iterAdmins();
334 while ($admin = $admins->next()) {
335 $mailer->addTo($admin);
336 }
337 }
338 if ($evt['subscription_notification'] != 'animator') {
339 $mailer->addTo($evt['organizer']);
340 }
341 $mailer->assign('group', $globals->asso('nom'));
342 $mailer->assign('event', $evt['intitule']);
343 $mailer->assign('subs', $subs);
344 $mailer->assign('moments', $evt['moments']);
345 $mailer->assign('name', S::user()->fullName('promo'));
346 $mailer->send();
347 }
348 }
349 $page->assign('event', get_event_detail($eid));
350 }
351
352 function handler_csv($page, $eid = null, $item_id = null)
353 {
354 $this->load('xnetevents.inc.php');
355
356 if (!is_numeric($item_id)) {
357 $item_id = null;
358 }
359
360 $evt = get_event_detail($eid, $item_id);
361 if (!$evt) {
362 return PL_NOT_FOUND;
363 }
364
365 pl_cached_content_headers('text/x-csv', 'iso-8859-1', 1);
366 $page->changeTpl('xnetevents/csv.tpl', NO_SKIN);
367
368 $admin = may_update();
369 $tri = (Env::v('order') == 'alpha' ? UserFilter::sortByPromo() : UserFilter::sortByName());
370 $all = !Env::v('item_id', false);
371
372 $participants = get_event_participants($evt, $item_id, $tri);
373 $title = 'Nom;Prénom;Promotion';
374 if ($admin) {
375 $title .=';Société;Poste';
376 }
377 if ($all) {
378 foreach ($evt['moments'] as $moment) {
379 $title .= ';' . $moment['titre'];
380 }
381 }
382 if ($admin && $evt['money']) {
383 $title .= ';À payer;';
384 if ($evt['paiement_id']) {
385 $title .= 'Télépaiement;Liquide/Chèque;';
386 }
387 $title .= 'Payé';
388 } else {
389 $title .= ';Nombre';
390 }
391 echo utf8_decode($title) . "\n";
392
393 if ($participants) {
394 foreach ($participants as $participant) {
395 $user = $participant['user'];
396 $line = $user->lastName() . ';' . $user->firstName() . ';' . $user->promo();
397 if ($admin && $user->hasProfile()) {
398 $line .= ';' . $user->profile()->getMainJob()->company->name . ';' . $user->profile()->getMainJob()->description;
399 } else {
400 $line .= ';;';
401 }
402 if ($all) {
403 foreach ($evt['moments'] as $moment) {
404 $line .= ';' . $participant[$moment['item_id']];
405 }
406 }
407 if ($admin && $evt['money']) {
408 $line .= ';' . $participant['montant'] . ';';
409 if ($evt['paiement_id']) {
410 $line .= $participant['telepayment'] . ';' . $participant['adminpaid'] . ';';
411 }
412 $line .= $participant['paid'];
413 } else {
414 $line .= ';' . $participant['nb'];
415 }
416
417 echo utf8_decode($line) . "\n";
418 }
419 }
420 exit();
421 }
422
423 function handler_ical($page, $eid = null)
424 {
425 global $globals;
426
427 $this->load('xnetevents.inc.php');
428 $evt = get_event_detail($eid);
429 if (!$evt) {
430 return PL_FORBIDDEN;
431 }
432 $evt['debut'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['debut']);
433 $evt['fin'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['fin']);
434
435 foreach ($evt['moments'] as $m) {
436 $evt['descriptif'] .= "\n\n** " . $m['titre'] . " **\n" . $m['details'];
437 }
438
439 $page->changeTpl('xnetevents/calendar.tpl', NO_SKIN);
440
441 require_once('ical.inc.php');
442 $page->assign('asso', $globals->asso());
443 $page->assign('timestamp', time());
444 $page->assign('admin', may_update());
445
446 if (may_update()) {
447 $page->assign('participants', get_event_participants($evt, null, UserFilter::sortByPromo()));
448 }
449 $page->register_function('display_ical', 'display_ical');
450 $page->assign_by_ref('e', $evt);
451
452 pl_content_headers("text/calendar");
453 }
454
455 function handler_edit($page, $eid = null)
456 {
457 global $globals;
458
459 // get eid if the the given one is a short name
460 if (!is_null($eid) && !is_numeric($eid)) {
461 $res = XDB::query("SELECT eid
462 FROM group_events
463 WHERE asso_id = {?} AND short_name = {?}",
464 $globals->asso('id'), $eid);
465 if ($res->numRows()) {
466 $eid = (int)$res->fetchOneCell();
467 }
468 }
469
470 // check the event is in our group
471 if (!is_null($eid)) {
472 $res = XDB::query("SELECT short_name
473 FROM group_events
474 WHERE eid = {?} AND asso_id = {?}",
475 $eid, $globals->asso('id'));
476 if ($res->numRows()) {
477 $infos = $res->fetchOneAssoc();
478 } else {
479 return PL_FORBIDDEN;
480 }
481 }
482
483 $page->changeTpl('xnetevents/edit.tpl');
484
485 $moments = range(1, 4);
486 $error = false;
487 $page->assign('moments', $moments);
488
489 if (Post::v('intitule')) {
490 S::assert_xsrf_token();
491
492 $this->load('xnetevents.inc.php');
493 $short_name = event_change_shortname($page, $eid,
494 $infos['short_name'],
495 Env::v('short_name', ''));
496 if ($short_name != Env::v('short_name')) {
497 $error = true;
498 }
499 $evt = array(
500 'eid' => $eid,
501 'asso_id' => $globals->asso('id'),
502 'paiement_id' => Post::v('paiement_id') > 0 ? Post::v('paiement_id') : null,
503 'debut' => Post::v('deb_Year').'-'.Post::v('deb_Month')
504 .'-'.Post::v('deb_Day').' '.Post::v('deb_Hour')
505 .':'.Post::v('deb_Minute').':00',
506 'fin' => Post::v('fin_Year').'-'.Post::v('fin_Month')
507 .'-'.Post::v('fin_Day').' '.Post::v('fin_Hour')
508 .':'.Post::v('fin_Minute').':00',
509 'short_name' => $short_name,
510 );
511
512 $trivial = array('intitule', 'descriptif', 'noinvite', 'subscription_notification',
513 'show_participants', 'accept_nonmembre', 'uid');
514 foreach ($trivial as $k) {
515 $evt[$k] = Post::v($k);
516 }
517 if (!$eid) {
518 $evt['uid'] = S::v('uid');
519 }
520
521 if (Post::v('deadline')) {
522 $evt['deadline_inscription'] = Post::v('inscr_Year').'-'
523 . Post::v('inscr_Month').'-'
524 . Post::v('inscr_Day');
525 } else {
526 $evt['deadline_inscription'] = null;
527 }
528
529 // Store the modifications in the database
530 XDB::execute('INSERT INTO group_events (eid, asso_id, uid, intitule, paiement_id,
531 descriptif, debut, fin, show_participants,
532 short_name, deadline_inscription, noinvite,
533 accept_nonmembre, subscription_notification)
534 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})
535 ON DUPLICATE KEY UPDATE asso_id = VALUES(asso_id), uid = VALUES(uid), intitule = VALUES(intitule),
536 paiement_id = VALUES(paiement_id), descriptif = VALUES(descriptif), debut = VALUES(debut),
537 fin = VALUES(fin), show_participants = VALUES(show_participants), short_name = VALUES(short_name),
538 deadline_inscription = VALUES(deadline_inscription), noinvite = VALUES(noinvite),
539 accept_nonmembre = VALUES(accept_nonmembre), subscription_notification = VALUES(subscription_notification)',
540 $evt['eid'], $evt['asso_id'], $evt['uid'],
541 $evt['intitule'], $evt['paiement_id'], $evt['descriptif'],
542 $evt['debut'], $evt['fin'], $evt['show_participants'],
543 $evt['short_name'], $evt['deadline_inscription'],
544 $evt['noinvite'], $evt['accept_nonmembre'], $evt['subscription_notification']);
545
546 // if new event, get its id
547 if (!$eid) {
548 $eid = XDB::insertId();
549 }
550
551 foreach ($moments as $i) {
552 if (Post::v('titre' . $i)) {
553 $nb_moments++;
554
555 $montant = strtr(Post::v('montant' . $i), ',', '.');
556 $money_defaut += (float)$montant;
557 XDB::execute('INSERT INTO group_event_items (eid, item_id, titre, details, montant)
558 VALUES ({?}, {?}, {?}, {?}, {?})
559 ON DUPLICATE KEY UPDATE titre = VALUES(titre), details = VALUES(details), montant = VALUES(montant)',
560 $eid, $i, Post::v('titre' . $i), Post::v('details' . $i), $montant);
561 } else {
562 XDB::execute('DELETE FROM group_event_items
563 WHERE eid = {?} AND item_id = {?}', $eid, $i);
564 }
565 }
566 // request for a new payment
567 if (Post::v('paiement_id') == -1 && $money_defaut >= 0) {
568 $p = new PayReq(S::user(),
569 $globals->asso('nom')." - ".Post::v('intitule'),
570 Post::v('site'), $money_defaut,
571 Post::v('confirmation'), 0, 999,
572 $globals->asso('id'), $eid, Post::v('payment_public') == 'yes');
573 if ($p->accept()) {
574 $p->submit();
575 } else {
576 $page->assign('payment_message', Post::v('confirmation'));
577 $page->assign('payment_site', Post::v('site'));
578 $page->assign('payment_public', Post::v('payment_public') == 'yes');
579 $page->assign('error', true);
580 $error = true;
581 }
582 }
583
584 // events with no sub-event: add a sub-event with no name
585 if ($nb_moments == 0) {
586 XDB::execute("INSERT INTO group_event_items
587 VALUES ({?}, {?}, '', '', 0)", $eid, 1);
588 }
589
590 if (!$error) {
591 pl_redirect('events');
592 }
593 }
594
595 // get a list of all the payment for this asso
596 $res = XDB::iterator("SELECT id, text
597 FROM payments
598 WHERE asso_id = {?} AND NOT FIND_IN_SET('old', flags)",
599 $globals->asso('id'));
600 $paiements = array();
601 while ($a = $res->next()) $paiements[$a['id']] = $a['text']; {
602 $page->assign('paiements', $paiements);
603 }
604
605 // when modifying an old event retreive the old datas
606 if ($eid) {
607 $res = XDB::query(
608 "SELECT eid, intitule, descriptif, debut, fin, uid,
609 show_participants, paiement_id, short_name,
610 deadline_inscription, noinvite, accept_nonmembre, subscription_notification
611 FROM group_events
612 WHERE eid = {?}", $eid);
613 $evt = $res->fetchOneAssoc();
614 // find out if there is already a request for a payment for this event
615 $res = XDB::query("SELECT stamp
616 FROM requests
617 WHERE type = 'paiements' AND data LIKE {?}",
618 PayReq::same_event($eid, $globals->asso('id')));
619 $stamp = $res->fetchOneCell();
620 if ($stamp) {
621 $evt['paiement_id'] = -2;
622 $evt['paiement_req'] = $stamp;
623 }
624 $page->assign('evt', $evt);
625 // get all the different moments infos
626 $res = XDB::iterator(
627 "SELECT item_id, titre, details, montant
628 FROM group_event_items AS ei
629 INNER JOIN group_events AS e ON(e.eid = ei.eid)
630 WHERE e.eid = {?}
631 ORDER BY item_id", $eid);
632 $items = array();
633 while ($item = $res->next()) {
634 $items[$item['item_id']] = $item;
635 }
636 $page->assign('items', $items);
637 }
638 $page->assign('url_ref', $eid);
639 }
640
641 function handler_admin($page, $eid = null, $item_id = null)
642 {
643 global $globals;
644
645 $this->load('xnetevents.inc.php');
646
647 $evt = get_event_detail($eid, $item_id);
648 if (!$evt) {
649 return PL_NOT_FOUND;
650 }
651
652 $page->changeTpl('xnetevents/admin.tpl');
653 if (!$evt['show_participants'] && !may_update()) {
654 return PL_FORBIDDEN;
655 }
656
657 if (may_update() && Post::v('adm')) {
658 S::assert_xsrf_token();
659
660 $member = User::getSilent(Post::v('mail'));
661 if (!$member) {
662 $page->trigError("Membre introuvable");
663 }
664
665 // change the price paid by a participant
666 if (Env::v('adm') == 'prix' && $member) {
667 $amount = strtr(Env::v('montant'), ',', '.');
668 XDB::execute("UPDATE group_event_participants
669 SET paid = paid + {?}
670 WHERE uid = {?} AND eid = {?} AND nb > 0
671 ORDER BY item_id ASC
672 LIMIT 1",
673 $amount, $member->uid, $evt['eid']);
674 subscribe_lists_event($member->uid, $evt['short_name'], 1, $amount);
675 }
676
677 // change the number of personns coming with a participant
678 if (Env::v('adm') == 'nbs' && $member) {
679 $res = XDB::query("SELECT SUM(paid)
680 FROM group_event_participants
681 WHERE uid = {?} AND eid = {?}",
682 $member->uid, $evt['eid']);
683
684 $paid = $res->fetchOneCell();
685
686 // Ensure we have an integer
687 if ($paid == null) {
688 $paid = 0;
689 }
690
691 $nbs = Post::v('nb', array());
692
693 $paid_inserted = false;
694 foreach ($nbs as $id => $nb) {
695 $nb = max(intval($nb), 0);
696 if (!$paid_inserted && $nb > 0) {
697 $item_paid = $paid;
698 $paid_inserted = true;
699 } else {
700 $item_paid = 0;
701 }
702 XDB::execute('INSERT INTO group_event_participants (eid, uid, item_id, nb, flags, paid)
703 VALUES ({?}, {?}, {?}, {?}, {?}, {?})
704 ON DUPLICATE KEY UPDATE nb = VALUES(nb), flags = VALUES(flags), paid = VALUES(paid)',
705 $evt['eid'], $member->uid, $id, $nb, '', $item_paid);
706 }
707
708 $res = XDB::query('SELECT COUNT(uid) AS cnt, SUM(nb) AS nb
709 FROM group_event_participants
710 WHERE uid = {?} AND eid = {?}
711 GROUP BY uid',
712 $member->uid, $evt['eid']);
713 $u = $res->fetchOneAssoc();
714 if ($paid == 0 && Post::v('cancel')) {
715 XDB::execute("DELETE FROM group_event_participants
716 WHERE uid = {?} AND eid = {?}",
717 $member->uid, $evt['eid']);
718 $u = 0;
719 subscribe_lists_event($member->uid, $evt['short_name'], -1, $paid);
720 } else {
721 $u = $u['cnt'] ? $u['nb'] : null;
722 subscribe_lists_event($member->uid, $evt['short_name'], ($u > 0 ? 1 : 0), $paid);
723 }
724 }
725
726 $evt = get_event_detail($eid, $item_id);
727 }
728
729 $page->assign_by_ref('evt', $evt);
730 $page->assign('tout', is_null($item_id));
731
732 if (count($evt['moments'])) {
733 $page->assign('moments', $evt['moments']);
734 }
735
736 if ($evt['paiement_id']) {
737 $infos = User::getBulkUsersWithUIDs(
738 XDB::fetchAllAssoc('SELECT t.uid, t.amount
739 FROM payment_transactions AS t
740 LEFT JOIN group_event_participants AS ep ON(ep.uid = t.uid AND ep.eid = {?})
741 WHERE t.ref = {?} AND ep.uid IS NULL',
742 $evt['eid'], $evt['paiement_id']),
743 'uid', 'user');
744 $page->assign('oublis', count($infos));
745 $page->assign('oubliinscription', $infos);
746 }
747
748 $absents = User::getBulkUsersFromDB('SELECT p.uid
749 FROM group_event_participants AS p
750 LEFT JOIN group_event_participants AS p2 ON (p2.uid = p.uid
751 AND p2.eid = p.eid
752 AND p2.nb != 0)
753 WHERE p.eid = {?} AND p2.eid IS NULL
754 GROUP BY p.uid', $evt['eid']);
755
756 $ofs = Env::i('offset');
757 $part = get_event_participants($evt, $item_id, UserFilter::sortByName(),
758 NB_PER_PAGE, $ofs * NB_PER_PAGE);
759
760 $nbp = ceil($evt['user_count'] / NB_PER_PAGE);
761 if ($nbp > 1) {
762 $links = array();
763 if ($ofs) {
764 $links['précédent'] = $ofs - 1;
765 }
766 for ($i = 1 ; $i <= $nbp; $i++) {
767 $links[(string)$i] = $i - 1;
768 }
769 if ($ofs < $nbp - 1) {
770 $links['suivant'] = $ofs+1;
771 }
772 $page->assign('links', $links);
773 }
774
775 $page->assign('absents', $absents);
776 $page->assign('participants', $part);
777 }
778 }
779
780 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
781 ?>