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