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