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