Accelerates jobterms tree browsing and fixes some leaf problems
[platal.git] / modules / xnetevents.php
CommitLineData
4f10a058 1<?php
2/***************************************************************************
9f5bd98e 3 * Copyright (C) 2003-2010 Polytechnique.org *
4f10a058 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
ed21e24a 22define('NB_PER_PAGE', 25);
23
4f10a058 24class XnetEventsModule extends PLModule
25{
26 function handlers()
27 {
28 return array(
d1ebc57a 29 '%grp/events' => $this->make_hook('events', AUTH_MDP),
30 '%grp/events/sub' => $this->make_hook('sub', AUTH_MDP),
8fc4efa3 31 '%grp/events/csv' => $this->make_hook('csv', AUTH_MDP, 'user', NO_HTTPS),
32 '%grp/events/ical' => $this->make_hook('ical', AUTH_MDP, 'user', NO_HTTPS),
c6c10b6b 33 '%grp/events/edit' => $this->make_hook('edit', AUTH_MDP, 'groupadmin'),
1490093c 34 '%grp/events/admin' => $this->make_hook('admin', AUTH_MDP, 'groupmember'),
4f10a058 35 );
36 }
37
f02eefd4 38 function handler_events(&$page, $archive = null)
4f10a058 39 {
40 global $globals;
41
1490093c 42 $page->changeTpl('xnetevents/index.tpl');
f02eefd4 43 $action = null;
1490093c 44 $archive = ($archive == 'archive' && may_update());
45
2b9e5fd3 46 if (Post::has('del')) {
f02eefd4 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)) {
2b9e5fd3 58 if (!may_update()) {
73fdb1e8 59 return PL_FORBIDDEN;
2b9e5fd3 60 }
4fcbb455 61 S::assert_xsrf_token();
2b9e5fd3 62
eb41eda9 63 $res = XDB::query("SELECT asso_id, short_name FROM group_events
3cabafae 64 WHERE eid = {?} AND asso_id = {?}",
65 $eid, $globals->asso('id'));
2b9e5fd3 66
67 $tmp = $res->fetchOneRow();
68 if (!$tmp) {
73fdb1e8 69 return PL_FORBIDDEN;
2b9e5fd3 70 }
f02eefd4 71 }
2b9e5fd3 72
f02eefd4 73 if ($action == 'del') {
2b9e5fd3 74 // deletes the event mailing aliases
75 if ($tmp[1]) {
9ff5b337
SJ
76 foreach (array('-absents@', '-participants@', '-paye@', '-participants-non-paye@') as $v) {
77 XDB::execute("DELETE FROM virtual
78 WHERE type = 'evt' AND alias LIKE {?}",
79 $tmp[1] . $v . '%');
80 }
2b9e5fd3 81 }
82
83 // deletes the event items
eb41eda9 84 XDB::execute('DELETE FROM group_event_items
9ff5b337 85 WHERE eid = {?}', $eid);
2b9e5fd3 86
87 // deletes the event participants
eb41eda9 88 XDB::execute('DELETE FROM group_event_participants
9ff5b337 89 WHERE eid = {?}', $eid);
2b9e5fd3 90
91 // deletes the event
eb41eda9 92 XDB::execute('DELETE FROM group_events
9ff5b337
SJ
93 WHERE eid = {?} AND asso_id = {?}',
94 $eid, $globals->asso('id'));
2b9e5fd3 95
96 // delete the requests for payments
9ff5b337
SJ
97 XDB::execute("DELETE FROM requests
98 WHERE type = 'paiements' AND data LIKE {?}",
99 PayReq::same_event($eid, $globals->asso('id')));
ebfdf077 100 $globals->updateNbValid();
2b9e5fd3 101 }
102
f02eefd4 103 if ($action == 'archive') {
eb41eda9 104 XDB::execute("UPDATE group_events
f02eefd4 105 SET archive = 1
106 WHERE eid = {?} AND asso_id = {?}",
107 $eid, $globals->asso('id'));
108 }
109
110 if ($action == 'unarchive') {
eb41eda9 111 XDB::execute("UPDATE group_events
f02eefd4 112 SET archive = 0
113 WHERE eid = {?} AND asso_id = {?}",
114 $eid, $globals->asso('id'));
115 }
ab02e9bc 116
f02eefd4 117 $page->assign('archive', $archive);
07eb5b0e
FB
118 $evenements = XDB::iterator('SELECT e.*, LEFT(10, e.debut) AS first_day, LEFT(10, e.fin) AS last_day,
119 IF(e.deadline_inscription,
120 e.deadline_inscription >= LEFT(NOW(), 10),
121 1) AS inscr_open,
122 e.deadline_inscription,
123 MAX(ep.nb) IS NOT NULL AS inscrit, MAX(ep.paid) AS paid
eb41eda9
FB
124 FROM group_events AS e
125 LEFT JOIN group_event_participants AS ep ON (ep.eid = e.eid AND ep.uid = {?})
07eb5b0e
FB
126 WHERE asso_id = {?} AND archive = {?}
127 GROUP BY e.eid
128 ORDER BY inscr_open DESC, debut DESC',
129 S::i('uid'), $globals->asso('id'), $archive ? 1 : 0);
4f10a058 130
131 $evts = array();
fbfc01a1 132 $undisplayed_events = 0;
20c5c7e6 133 $this->load('xnetevents.inc.php');
d6d580ec 134
4f10a058 135 while ($e = $evenements->next()) {
fbfc01a1
SJ
136 if (!is_member() && !may_update() && !$e['accept_nonmembre']) {
137 $undisplayed_events ++;
138 continue;
139 }
140
3cabafae 141 $e['show_participants'] = ($e['show_participants'] && (is_member() || may_update()));
07eb5b0e 142 $e['moments'] = XDB::fetchAllAssoc('SELECT titre, details, montant, ei.item_id, nb, ep.paid
eb41eda9
FB
143 FROM group_event_items AS ei
144 LEFT JOIN group_event_participants AS ep
07eb5b0e
FB
145 ON (ep.eid = ei.eid AND ep.item_id = ei.item_id AND ep.uid = {?})
146 WHERE ei.eid = {?}',
147 S::i('uid'), $e['eid']);
d6d580ec 148
149 $e['topay'] = 0;
98a7e9dc 150 $e['paid'] = $e['moments'][0]['paid'];
d6d580ec 151 foreach ($e['moments'] as $m) {
152 $e['topay'] += $m['nb'] * $m['montant'];
153 }
154
08cce2ff 155 $query = XDB::query(
b3cd1320
DB
156 "SELECT amount
157 FROM payment_transactions AS t
cab08090 158 WHERE ref = {?} AND uid = {?}", $e['paiement_id'], S::v('uid'));
4f10a058 159 $montants = $query->fetchColumn();
d6d580ec 160
4f10a058 161 foreach ($montants as $m) {
d6d580ec 162 $p = strtr(substr($m, 0, strpos($m, 'EUR')), ',', '.');
4f10a058 163 $e['paid'] += trim($p);
164 }
d6d580ec 165
20c5c7e6
SJ
166 make_event_date($e);
167
1f5b0b59 168 if (Env::has('updated') && $e['eid'] == Env::i('updated')) {
169 $page->assign('updated', $e);
170 }
4f10a058 171 $evts[] = $e;
172 }
ab02e9bc 173
4f10a058 174 $page->assign('evenements', $evts);
fbfc01a1 175 $page->assign('undisplayed_events', $undisplayed_events);
4f10a058 176 }
177
d6d580ec 178 function handler_sub(&$page, $eid = null)
179 {
460d8f55 180 $this->load('xnetevents.inc.php');
1490093c 181 $page->changeTpl('xnetevents/subscribe.tpl');
d6d580ec 182
183 $evt = get_event_detail($eid);
df1cf596 184 if (is_null($evt)) {
d6d580ec 185 return PL_NOT_FOUND;
186 }
df1cf596
FB
187 if ($evt === false) {
188 global $globals, $platal;
189 $url = $globals->asso('sub_url');
190 if (empty($url)) {
191 $url = $platal->ns . 'subscribe';
192 }
193 $page->kill('Cet événement est reservé aux membres du groupe ' . $globals->asso('nom') .
194 '. Pour devenir membre, rends-toi sur la page de <a href="' . $url . '">demande d\'inscripton</a>.');
195 }
d6d580ec 196
197 if (!$evt['inscr_open']) {
a7de4ef7 198 $page->kill('Les inscriptions pour cet événement sont closes');
d6d580ec 199 }
3cabafae 200 if (!$evt['accept_nonmembre'] && !is_member() && !may_update()) {
a7de4ef7 201 $page->kill('Cet événement est fermé aux non-membres du groupe');
3cabafae 202 }
d6d580ec 203
2ac0bcee 204 global $globals;
257ae408
SJ
205 $res = XDB::query("SELECT stamp
206 FROM requests
2ac0bcee
FB
207 WHERE type = 'paiements' AND data LIKE {?}",
208 PayReq::same_event($evt['eid'], $globals->asso('id')));
209 $page->assign('validation', $res->numRows());
d6d580ec 210 $page->assign('event', $evt);
211
212 if (!Post::has('submit')) {
213 return;
4fcbb455
VZ
214 } else {
215 S::assert_xsrf_token();
d6d580ec 216 }
217
5e2307dc 218 $moments = Post::v('moment', array());
219 $pers = Post::v('personnes', array());
d6d580ec 220 $subs = array();
221
222 foreach ($moments as $j => $v) {
223 $subs[$j] = intval($v);
224
225 // retreive ohter field when more than one person
226 if ($subs[$j] == 2) {
e0422197 227 if (!isset($pers[$j]) || !is_numeric($pers[$j]) || $pers[$j] < 0) {
6bb2f79a 228 $page->trigError("Tu dois choisir un nombre d'invités correct&nbsp;!");
d6d580ec 229 return;
230 }
231 $subs[$j] = 1 + $pers[$j];
232 }
233 }
234
235 // impossible to unsubscribe if you already paid sthing
98a7e9dc 236 if (!array_sum($subs) && $evt['paid'] != 0) {
9ff5b337
SJ
237 $page->trigError("Impossible de te désinscrire complètement " .
238 "parce que tu as fait un paiement par " .
239 "chèque ou par liquide. Contacte un " .
240 "administrateur du groupe si tu es sûr de " .
241 "ne pas venir.");
d6d580ec 242 return;
243 }
244
245 // update actual inscriptions
1f5b0b59 246 $updated = false;
9193e8f7 247 $total = 0;
30138a46 248 $paid = $evt['paid'] ? $evt['paid'] : 0;
8bac35d8 249 $telepaid= $evt['telepaid'] ? $evt['telepaid'] : 0;
d6d580ec 250 foreach ($subs as $j => $nb) {
9193e8f7 251 if ($nb >= 0) {
e0422197
SJ
252 $tmp_flags = (Env::has('notify_payment') ? 'notify_payment' : '');
253 $tmp_paid = ($j == 1 ? $paid - $telepaid : 0);
254 XDB::execute('INSERT INTO group_event_participants (eid, uid, item_id, nb, flags, paid)
255 VALUES ({?}, {?}, {?}, {?}, {?}, {?})
256 ON DUPLICATE KEY UPDATE nb = {?}, flags = {?}, paid = {?}',
257 $eid, S::v('uid'), $j, $nb, $tmp_flags, $tmp_paid,
258 $nb, $tmp_flags, $tmp_paid);
1f5b0b59 259 $updated = $eid;
d6d580ec 260 } else {
08cce2ff 261 XDB::execute(
eb41eda9 262 "DELETE FROM group_event_participants
d6d580ec 263 WHERE eid = {?} AND uid = {?} AND item_id = {?}",
2847640f 264 $eid, S::v("uid"), $j);
1f5b0b59 265 $updated = $eid;
d6d580ec 266 }
9193e8f7 267 $total += $nb;
d6d580ec 268 }
9193e8f7 269 if ($updated !== false) {
6aac1d08 270 $page->trigSuccess('Ton inscription à l\'événement a été mise à jour avec succès.');
50208d22 271 subscribe_lists_event(S::i('uid'), $evt, ($total > 0 ? 1 : 0), 0);
1f5b0b59 272 }
d6d580ec 273 $page->assign('event', get_event_detail($eid));
274 }
275
4f10a058 276 function handler_csv(&$page, $eid = null, $item_id = null)
277 {
460d8f55 278 $this->load('xnetevents.inc.php');
4f10a058 279
bd46a8e4 280 if (!is_numeric($item_id)) {
281 $item_id = null;
282 }
283
4f10a058 284 $evt = get_event_detail($eid, $item_id);
285 if (!$evt) {
286 return PL_NOT_FOUND;
287 }
288
3cb500d5 289 pl_content_headers("text/x-csv");
801fcad8 290 $page->changeTpl('xnetevents/csv.tpl', NO_SKIN);
4f10a058 291
292 $admin = may_update();
293
07eb5b0e 294 $tri = (Env::v('order') == 'alpha' ? UserFilter::sortByPromo() : UserFilter::sortByName());
4f10a058 295
ed21e24a 296 $page->assign('participants',
297 get_event_participants($evt, $item_id, $tri));
4f10a058 298
4f10a058 299 $page->assign('admin', $admin);
300 $page->assign('moments', $evt['moments']);
301 $page->assign('money', $evt['money']);
478f7c3a 302 $page->assign('telepayment', $evt['paiement_id']);
5e2307dc 303 $page->assign('tout', !Env::v('item_id', false));
4f10a058 304 }
bd46a8e4 305
11d8a183 306 function handler_ical(&$page, $eid = null)
307 {
308 global $globals;
309
460d8f55 310 $this->load('xnetevents.inc.php');
11d8a183 311 $evt = get_event_detail($eid);
312 if (!$evt) {
73fdb1e8 313 return PL_FORBIDDEN;
11d8a183 314 }
315 $evt['debut'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['debut']);
316 $evt['fin'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['fin']);
317
99544d53 318 foreach ($evt['moments'] as $m) {
319 $evt['descriptif'] .= "\n\n** " . $m['titre'] . " **\n" . $m['details'];
320 }
321
11d8a183 322 $page->changeTpl('xnetevents/calendar.tpl', NO_SKIN);
323
99544d53 324 require_once('ical.inc.php');
11d8a183 325 $page->assign('asso', $globals->asso());
326 $page->assign('timestamp', time());
99544d53 327 $page->assign('admin', may_update());
328
329 if (may_update()) {
07eb5b0e 330 $page->assign('participants', get_event_participants($evt, null, UserFilter::sortByPromo()));
99544d53 331 }
11d8a183 332 $page->register_function('display_ical', 'display_ical');
333 $page->assign_by_ref('e', $evt);
ab02e9bc 334
3cb500d5 335 pl_content_headers("text/calendar");
11d8a183 336 }
337
bd46a8e4 338 function handler_edit(&$page, $eid = null)
339 {
340 global $globals;
341
5cbb1fad 342 // get eid if the the given one is a short name
343 if (!is_null($eid) && !is_numeric($eid)) {
344 $res = XDB::query("SELECT eid
eb41eda9 345 FROM group_events
5cbb1fad 346 WHERE asso_id = {?} AND short_name = {?}",
347 $globals->asso('id'), $eid);
348 if ($res->numRows()) {
349 $eid = (int)$res->fetchOneCell();
350 }
351 }
352
5070a22d 353 // check the event is in our group
bd46a8e4 354 if (!is_null($eid)) {
73fdb1e8 355 $res = XDB::query("SELECT short_name
eb41eda9 356 FROM group_events
73fdb1e8 357 WHERE eid = {?} AND asso_id = {?}",
358 $eid, $globals->asso('id'));
359 if ($res->numRows()) {
360 $infos = $res->fetchOneAssoc();
361 } else {
362 return PL_FORBIDDEN;
bd46a8e4 363 }
364 }
365
1490093c 366 $page->changeTpl('xnetevents/edit.tpl');
bd46a8e4 367
58d0edab 368 $moments = range(1, 4);
f56e5e53 369 $error = false;
5070a22d 370 $page->assign('moments', $moments);
bd46a8e4 371
5e2307dc 372 if (Post::v('intitule')) {
4fcbb455
VZ
373 S::assert_xsrf_token();
374
460d8f55 375 $this->load('xnetevents.inc.php');
2847640f
VZ
376 $short_name = event_change_shortname($page, $eid,
377 $infos['short_name'],
5e2307dc 378 Env::v('short_name', ''));
f56e5e53 379 if ($short_name != Env::v('short_name')) {
380 $error = true;
381 }
5070a22d 382 $evt = array(
383 'eid' => $eid,
384 'asso_id' => $globals->asso('id'),
5e2307dc 385 'paiement_id' => Post::v('paiement_id') > 0 ? Post::v('paiement_id') : null,
386 'debut' => Post::v('deb_Year').'-'.Post::v('deb_Month')
387 .'-'.Post::v('deb_Day').' '.Post::v('deb_Hour')
388 .':'.Post::v('deb_Minute').':00',
389 'fin' => Post::v('fin_Year').'-'.Post::v('fin_Month')
390 .'-'.Post::v('fin_Day').' '.Post::v('fin_Hour')
391 .':'.Post::v('fin_Minute').':00',
f56e5e53 392 'short_name' => $short_name,
5070a22d 393 );
394
395 $trivial = array('intitule', 'descriptif', 'noinvite',
7f376ae0 396 'show_participants', 'accept_nonmembre', 'uid');
5070a22d 397 foreach ($trivial as $k) {
5e2307dc 398 $evt[$k] = Post::v($k);
bd46a8e4 399 }
25412aa4 400 if (!$eid) {
7f376ae0 401 $evt['uid'] = S::v('uid');
25412aa4 402 }
bd46a8e4 403
5e2307dc 404 if (Post::v('deadline')) {
405 $evt['deadline_inscription'] = Post::v('inscr_Year').'-'
406 . Post::v('inscr_Month').'-'
407 . Post::v('inscr_Day');
5070a22d 408 } else {
409 $evt['deadline_inscription'] = null;
9ece1588 410 }
bd46a8e4 411
412 // Store the modifications in the database
e0422197
SJ
413 XDB::execute('INSERT INTO group_events (eid, asso_id, uid, intitule, paiement_id,
414 descriptif, debut, fin, show_participants,
415 short_name, deadline_inscription, noinvite,
416 accept_nonmembre)
417 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})
418 ON DUPLICATE KEY UPDATE asso_id = {?}, uid = {?}, intitule = {?},
419 paiement_id = {?}, descriptif = {?}, debut = {?},
420 fin = {?}, show_participants = {?}, short_name = {?},
421 deadline_inscription = {?}, noinvite = {?}',
7f376ae0
SJ
422 $evt['eid'], $evt['asso_id'], $evt['uid'],
423 $evt['intitule'], $evt['paiement_id'], $evt['descriptif'],
424 $evt['debut'], $evt['fin'], $evt['show_participants'],
425 $evt['short_name'], $evt['deadline_inscription'],
e0422197
SJ
426 $evt['noinvite'], $evt['accept_nonmembre'],
427 $evt['asso_id'], $evt['uid'],
428 $evt['intitule'], $evt['paiement_id'], $evt['descriptif'],
429 $evt['debut'], $evt['fin'], $evt['show_participants'],
430 $evt['short_name'], $evt['deadline_inscription'],
431 $evt['noinvite'], $evt['accept_nonmembre'], $evt['eid']);
bd46a8e4 432
433 // if new event, get its id
434 if (!$eid) {
8b83a166 435 $eid = XDB::insertId();
bd46a8e4 436 }
437
bd46a8e4 438 foreach ($moments as $i) {
e0422197 439 if (Post::v('titre' . $i)) {
bd46a8e4 440 $nb_moments++;
5070a22d 441
e0422197 442 $montant = strtr(Post::v('montant' . $i), ',', '.');
5070a22d 443 $money_defaut += (float)$montant;
e0422197
SJ
444 XDB::execute('INSERT INTO group_event_items (eid, item_id, titre, details, montant)
445 VALUES ({?}, {?}, {?}, {?}, {?})
446 ON DUPLICATE KEY UPDATE titre = {?}, details = {?}, montant = {?}',
447 $eid, $i, Post::v('titre' . $i), Post::v('details' . $i), $montant,
448 Post::v('titre' . $i), Post::v('details' . $i), $montant);
bd46a8e4 449 } else {
e0422197
SJ
450 XDB::execute('DELETE FROM group_event_items
451 WHERE eid = {?} AND item_id = {?}', $eid, $i);
bd46a8e4 452 }
453 }
bd46a8e4 454 // request for a new payment
5e2307dc 455 if (Post::v('paiement_id') == -1 && $money_defaut >= 0) {
5daf68f6 456 $p = new PayReq(S::user(),
5e2307dc 457 Post::v('intitule')." - ".$globals->asso('nom'),
458 Post::v('site'), $money_defaut,
459 Post::v('confirmation'), 0, 999,
bd46a8e4 460 $globals->asso('id'), $eid);
20934085 461 if ($p->accept()) {
462 $p->submit();
463 } else {
464 $page->assign('paiement_message', Post::v('confirmation'));
465 $page->assign('paiement_site', Post::v('site'));
466 $error = true;
467 }
bd46a8e4 468 }
469
470 // events with no sub-event: add a sub-event with no name
471 if ($nb_moments == 0) {
eb41eda9 472 XDB::execute("INSERT INTO group_event_items
20934085 473 VALUES ({?}, {?}, '', '', 0)", $eid, 1);
bd46a8e4 474 }
bd46a8e4 475
f56e5e53 476 if (!$error) {
58d0edab 477 pl_redirect('events');
478 }
bd46a8e4 479 }
480
481 // get a list of all the payment for this asso
08cce2ff 482 $res = XDB::iterator("SELECT id, text
b3cd1320 483 FROM payments
5cbb1fad 484 WHERE asso_id = {?}", $globals->asso('id'));
bd46a8e4 485 $paiements = array();
486 while ($a = $res->next()) $paiements[$a['id']] = $a['text']; {
487 $page->assign('paiements', $paiements);
488 }
489
490 // when modifying an old event retreive the old datas
491 if ($eid) {
08cce2ff 492 $res = XDB::query(
7f376ae0 493 "SELECT eid, intitule, descriptif, debut, fin, uid,
00112b2e
VZ
494 show_participants, paiement_id, short_name,
495 deadline_inscription, noinvite, accept_nonmembre
eb41eda9 496 FROM group_events
bd46a8e4 497 WHERE eid = {?}", $eid);
498 $evt = $res->fetchOneAssoc();
499 // find out if there is already a request for a payment for this event
257ae408
SJ
500 $res = XDB::query("SELECT stamp
501 FROM requests
502 WHERE type = 'paiements' AND data LIKE {?}",
5cbb1fad 503 PayReq::same_event($eid, $globals->asso('id')));
bd46a8e4 504 $stamp = $res->fetchOneCell();
505 if ($stamp) {
f56e5e53 506 $evt['paiement_id'] = -2;
bd46a8e4 507 $evt['paiement_req'] = $stamp;
508 }
509 $page->assign('evt', $evt);
510 // get all the different moments infos
08cce2ff 511 $res = XDB::iterator(
00112b2e 512 "SELECT item_id, titre, details, montant
eb41eda9
FB
513 FROM group_event_items AS ei
514 INNER JOIN group_events AS e ON(e.eid = ei.eid)
00112b2e 515 WHERE e.eid = {?}
bd46a8e4 516 ORDER BY item_id", $eid);
517 $items = array();
518 while ($item = $res->next()) {
519 $items[$item['item_id']] = $item;
520 }
521 $page->assign('items', $items);
522 }
5cbb1fad 523 $page->assign('url_ref', $eid);
bd46a8e4 524 }
525
526 function handler_admin(&$page, $eid = null, $item_id = null)
527 {
528 global $globals;
529
460d8f55 530 $this->load('xnetevents.inc.php');
bd46a8e4 531
532 $evt = get_event_detail($eid, $item_id);
bd46a8e4 533 if (!$evt) {
534 return PL_NOT_FOUND;
535 }
536
1490093c 537 $page->changeTpl('xnetevents/admin.tpl');
538 if (!$evt['show_participants'] && !may_update()) {
539 return PL_FORBIDDEN;
bd46a8e4 540 }
541
5e2307dc 542 if (may_update() && Post::v('adm')) {
4fcbb455
VZ
543 S::assert_xsrf_token();
544
4bf97262 545 $member = User::getSilent(Post::v('mail'));
ed21e24a 546 if (!$member) {
a7d35093 547 $page->trigError("Membre introuvable");
bd46a8e4 548 }
bd46a8e4 549
ed21e24a 550 // change the price paid by a participant
5e2307dc 551 if (Env::v('adm') == 'prix' && $member) {
50208d22 552 $amount = strtr(Env::v('montant'), ',', '.');
eb41eda9 553 XDB::execute("UPDATE group_event_participants
d4fd2f8a 554 SET paid = paid + {?}
4e4b828b 555 WHERE uid = {?} AND eid = {?} AND item_id = 1",
50208d22
SJ
556 $amount, $member->uid, $evt['eid']);
557 subscribe_lists_event($member->uid, $evt, 1, $amount);
ed21e24a 558 }
bd46a8e4 559
ed21e24a 560 // change the number of personns coming with a participant
5e2307dc 561 if (Env::v('adm') == 'nbs' && $member) {
08cce2ff 562 $res = XDB::query("SELECT paid
eb41eda9 563 FROM group_event_participants
dc2073c3 564 WHERE uid = {?} AND eid = {?}",
4bf97262 565 $member->uid, $evt['eid']);
ed21e24a 566
567 $paid = intval($res->fetchOneCell());
5e2307dc 568 $nbs = Post::v('nb', array());
ed21e24a 569
570 foreach ($nbs as $id => $nb) {
5070a22d 571 $nb = max(intval($nb), 0);
e0422197
SJ
572 XDB::execute('INSERT INTO group_event_participants (eid, uid, item_id, nb, flags, paid)
573 VALUES ({?}, {?}, {?}, {?}, {?}, {?})
574 ON DUPLICATE KEY UPDATE nb = {?}, flags = {?}, paid = {?}',
575 $evt['eid'], $member->uid, $id, $nb, '', ($id == 1 ? $paid : 0),
576 $nb, '', ($id == 1 ? $paid : 0));
bd46a8e4 577 }
ed21e24a 578
50208d22
SJ
579 $res = XDB::query('SELECT COUNT(uid) AS cnt, SUM(nb) AS nb
580 FROM group_event_participants
581 WHERE uid = {?} AND eid = {?}
582 GROUP BY uid',
583 $member->uid, $evt['eid']);
9193e8f7 584 $u = $res->fetchOneAssoc();
3bfa0e8d
PC
585 if ($u['cnt'] == 1 && $paid == 0 && Post::v('cancel')) {
586 XDB::execute("DELETE FROM group_event_participants
587 WHERE uid = {?} AND eid = {?}",
588 $member->uid, $evt['eid']);
589 $u = 0;
50208d22 590 subscribe_lists_event($member->uid, $evt, -1, $paid);
3bfa0e8d
PC
591 } else {
592 $u = $u['cnt'] ? $u['nb'] : null;
50208d22 593 subscribe_lists_event($member->uid, $evt, ($u > 0 ? 1 : 0), $paid);
3bfa0e8d 594 }
bd46a8e4 595 }
ed21e24a 596
bd46a8e4 597 $evt = get_event_detail($eid, $item_id);
598 }
599
e01ebe65 600 $page->assign_by_ref('evt', $evt);
1f3362a3 601 $page->assign('tout', is_null($item_id));
bd46a8e4 602
ed21e24a 603 if (count($evt['moments'])) {
604 $page->assign('moments', $evt['moments']);
605 }
bd46a8e4 606
bd46a8e4 607 if ($evt['paiement_id']) {
07eb5b0e 608 $infos = User::getBulkUsersWithUIDs(
b3cd1320
DB
609 XDB::fetchAllAssoc('SELECT t.uid, t.amount
610 FROM payment_transactions AS t
eb41eda9 611 LEFT JOIN group_event_participants AS ep ON(ep.uid = t.uid AND ep.eid = {?})
07eb5b0e
FB
612 WHERE t.ref = {?} AND ep.uid IS NULL',
613 $evt['eid'], $evt['paiement_id']),
614 'uid', 'user');
615 $page->assign('oublis', count($infos));
616 $page->assign('oubliinscription', $infos);
617 }
618
619 $absents = User::getBulkUsersFromDB('SELECT p.uid
eb41eda9
FB
620 FROM group_event_participants AS p
621 LEFT JOIN group_event_participants AS p2 ON (p2.uid = p.uid
07eb5b0e
FB
622 AND p2.eid = p.eid
623 AND p2.nb != 0)
624 WHERE p.eid = {?} AND p2.eid IS NULL
625 GROUP BY p.uid', $evt['eid']);
ab02e9bc 626
6601ea70
SJ
627 $ofs = Env::i('offset');
628 $tot = (is_null($evt['nb_tot']) ? $evt['nb'] : $evt['nb_tot']);
629 $nbp = ceil($tot / NB_PER_PAGE);
037b02c8
FB
630 if ($nbp > 1) {
631 $links = array();
632 if ($ofs) {
633 $links['précédent'] = $ofs - 1;
634 }
635 for ($i = 1 ; $i <= $nbp; $i++) {
636 $links[(string)$i] = $i - 1;
637 }
6601ea70 638 if ($ofs < $nbp - 1) {
037b02c8
FB
639 $links['suivant'] = $ofs+1;
640 }
ab02e9bc 641 $page->assign('links', $links);
642 }
643
61664f8b 644 $page->assign('absents', $absents);
ab02e9bc 645 $page->assign('participants',
07eb5b0e 646 get_event_participants($evt, $item_id, UserFilter::sortByName(),
4935bab0 647 NB_PER_PAGE, $ofs * NB_PER_PAGE));
bd46a8e4 648 }
4f10a058 649}
650
a7de4ef7 651// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
4f10a058 652?>