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