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