708bdd1d5046c9fa5558657d2f3986db88696312
2 /***************************************************************************
3 * Copyright (C) 2003-2010 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
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. *
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. *
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 *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
22 define('NB_PER_PAGE', 25);
24 class XnetEventsModule
extends PLModule
29 '%grp/events' => $this->make_hook('events', AUTH_MDP
),
30 '%grp/events/sub' => $this->make_hook('sub', AUTH_MDP
),
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
),
33 '%grp/events/edit' => $this->make_hook('edit', AUTH_MDP
, 'groupadmin'),
34 '%grp/events/admin' => $this->make_hook('admin', AUTH_MDP
, 'groupmember'),
38 function handler_events(&$page, $archive = null
)
42 $page->changeTpl('xnetevents/index.tpl');
44 $archive = ($archive == 'archive' && may_update());
46 if (Post
::has('del')) {
48 $eid = Post
::v('del');
49 } elseif (Post
::has('archive')) {
51 $eid = Post
::v('archive');
52 } elseif (Post
::has('unarchive')) {
53 $action = 'unarchive';
54 $eid = Post
::v('unarchive');
57 if (!is_null($action)) {
61 S
::assert_xsrf_token();
63 $res = XDB
::query("SELECT asso_id, short_name FROM group_events
64 WHERE eid = {?} AND asso_id = {?}",
65 $eid, $globals->asso('id'));
67 $tmp = $res->fetchOneRow();
73 if ($action == 'del') {
74 // deletes the event mailing aliases
76 foreach (array('-absents@', '-participants@', '-paye@', '-participants-non-paye@') as $v) {
77 XDB
::execute("DELETE FROM virtual
78 WHERE type = 'evt' AND alias LIKE {?}",
83 // deletes the event items
84 XDB
::execute('DELETE FROM group_event_items
85 WHERE eid = {?}', $eid);
87 // deletes the event participants
88 XDB
::execute('DELETE FROM group_event_participants
89 WHERE eid = {?}', $eid);
92 XDB
::execute('DELETE FROM group_events
93 WHERE eid = {?} AND asso_id = {?}',
94 $eid, $globals->asso('id'));
96 // delete the requests for payments
97 require_once 'validations.inc.php';
98 XDB
::execute("DELETE FROM requests
99 WHERE type = 'paiements' AND data LIKE {?}",
100 PayReq
::same_event($eid, $globals->asso('id')));
101 $globals->updateNbValid();
104 if ($action == 'archive') {
105 XDB
::execute("UPDATE group_events
107 WHERE eid = {?} AND asso_id = {?}",
108 $eid, $globals->asso('id'));
111 if ($action == 'unarchive') {
112 XDB
::execute("UPDATE group_events
114 WHERE eid = {?} AND asso_id = {?}",
115 $eid, $globals->asso('id'));
118 $page->assign('archive', $archive);
119 $evenements = XDB
::iterator('SELECT e.*, LEFT(10, e.debut) AS first_day, LEFT(10, e.fin) AS last_day,
120 IF(e.deadline_inscription,
121 e.deadline_inscription >= LEFT(NOW(), 10),
123 e.deadline_inscription,
124 MAX(ep.nb) IS NOT NULL AS inscrit, MAX(ep.paid) AS paid
125 FROM group_events AS e
126 LEFT JOIN group_event_participants AS ep ON (ep.eid = e.eid AND ep.uid = {?})
127 WHERE asso_id = {?} AND archive = {?}
129 ORDER BY inscr_open DESC, debut DESC',
130 S
::i('uid'), $globals->asso('id'), $archive ?
1 : 0);
133 $undisplayed_events = 0;
134 $this->load('xnetevents.inc.php');
136 while ($e = $evenements->next()) {
137 if (!is_member() && !may_update() && !$e['accept_nonmembre']) {
138 $undisplayed_events ++
;
142 $e['show_participants'] = ($e['show_participants'] && (is_member() ||
may_update()));
143 $e['moments'] = XDB
::fetchAllAssoc('SELECT titre, details, montant, ei.item_id, nb, ep.paid
144 FROM group_event_items AS ei
145 LEFT JOIN group_event_participants AS ep
146 ON (ep.eid = ei.eid AND ep.item_id = ei.item_id AND ep.uid = {?})
148 S
::i('uid'), $e['eid']);
151 $e['paid'] = $e['moments'][0]['paid'];
152 foreach ($e['moments'] as $m) {
153 $e['topay'] +
= $m['nb'] * $m['montant'];
158 FROM {$globals->money->mpay_tprefix}transactions AS t
159 WHERE ref = {?} AND uid = {?}", $e['paiement_id'], S
::v('uid'));
160 $montants = $query->fetchColumn();
162 foreach ($montants as $m) {
163 $p = strtr(substr($m, 0, strpos($m, 'EUR')), ',', '.');
164 $e['paid'] +
= trim($p);
169 if (Env
::has('updated') && $e['eid'] == Env
::i('updated')) {
170 $page->assign('updated', $e);
175 $page->assign('evenements', $evts);
176 $page->assign('undisplayed_events', $undisplayed_events);
179 function handler_sub(&$page, $eid = null
)
181 $this->load('xnetevents.inc.php');
182 $page->changeTpl('xnetevents/subscribe.tpl');
184 $evt = get_event_detail($eid);
188 if ($evt === false
) {
189 global $globals, $platal;
190 $url = $globals->asso('sub_url');
192 $url = $platal->ns
. 'subscribe';
194 $page->kill('Cet événement est reservé aux membres du groupe ' . $globals->asso('nom') .
195 '. Pour devenir membre, rends-toi sur la page de <a href="' . $url . '">demande d\'inscripton</a>.');
198 if (!$evt['inscr_open']) {
199 $page->kill('Les inscriptions pour cet événement sont closes');
201 if (!$evt['accept_nonmembre'] && !is_member() && !may_update()) {
202 $page->kill('Cet événement est fermé aux non-membres du groupe');
206 $res = XDB
::query("SELECT stamp
208 WHERE type = 'paiements' AND data LIKE {?}",
209 PayReq
::same_event($evt['eid'], $globals->asso('id')));
210 $page->assign('validation', $res->numRows());
211 $page->assign('event', $evt);
213 if (!Post
::has('submit')) {
216 S
::assert_xsrf_token();
219 $moments = Post
::v('moment', array());
220 $pers = Post
::v('personnes', array());
223 foreach ($moments as $j => $v) {
224 $subs[$j] = intval($v);
226 // retreive ohter field when more than one person
227 if ($subs[$j] == 2) {
228 if (!isset($pers[$j]) ||
!is_numeric($pers[$j])
231 $page->trigError("Tu dois choisir un nombre d'invités correct !");
234 $subs[$j] = 1 +
$pers[$j];
238 // impossible to unsubscribe if you already paid sthing
239 if (!array_sum($subs) && $evt['paid'] != 0) {
240 $page->trigError("Impossible de te désinscrire complètement " .
241 "parce que tu as fait un paiement par " .
242 "chèque ou par liquide. Contacte un " .
243 "administrateur du groupe si tu es sûr de " .
248 // update actual inscriptions
251 $paid = $evt['paid'] ?
$evt['paid'] : 0;
252 $telepaid= $evt['telepaid'] ?
$evt['telepaid'] : 0;
253 foreach ($subs as $j => $nb) {
256 "REPLACE INTO group_event_participants
257 VALUES ({?}, {?}, {?}, {?}, {?}, {?})",
258 $eid, S
::v('uid'), $j, $nb, Env
::has('notify_payment') ?
'notify_payment' : '',
259 $j == 1 ?
$paid - $telepaid : 0);
263 "DELETE FROM group_event_participants
264 WHERE eid = {?} AND uid = {?} AND item_id = {?}",
265 $eid, S
::v("uid"), $j);
270 if ($updated !== false
) {
271 $page->trigSuccess('Ton inscription à l\'événement a été mise à jour avec succès.');
272 subscribe_lists_event($total, S
::i('uid'), $evt, $paid);
274 $page->assign('event', get_event_detail($eid));
277 function handler_csv(&$page, $eid = null
, $item_id = null
)
279 $this->load('xnetevents.inc.php');
281 if (!is_numeric($item_id)) {
285 $evt = get_event_detail($eid, $item_id);
290 pl_content_headers("text/x-csv");
291 $page->changeTpl('xnetevents/csv.tpl', NO_SKIN
);
293 $admin = may_update();
295 $tri = (Env
::v('order') == 'alpha' ? UserFilter
::sortByPromo() : UserFilter
::sortByName());
297 $page->assign('participants',
298 get_event_participants($evt, $item_id, $tri));
300 $page->assign('admin', $admin);
301 $page->assign('moments', $evt['moments']);
302 $page->assign('money', $evt['money']);
303 $page->assign('telepayment', $evt['paiement_id']);
304 $page->assign('tout', !Env
::v('item_id', false
));
307 function handler_ical(&$page, $eid = null
)
311 $this->load('xnetevents.inc.php');
312 $evt = get_event_detail($eid);
316 $evt['debut'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['debut']);
317 $evt['fin'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['fin']);
319 foreach ($evt['moments'] as $m) {
320 $evt['descriptif'] .= "\n\n** " . $m['titre'] . " **\n" . $m['details'];
323 $page->changeTpl('xnetevents/calendar.tpl', NO_SKIN
);
325 require_once('ical.inc.php');
326 $page->assign('asso', $globals->asso());
327 $page->assign('timestamp', time());
328 $page->assign('admin', may_update());
331 $page->assign('participants', get_event_participants($evt, null
, UserFilter
::sortByPromo()));
333 $page->register_function('display_ical', 'display_ical');
334 $page->assign_by_ref('e', $evt);
336 pl_content_headers("text/calendar");
339 function handler_edit(&$page, $eid = null
)
343 // get eid if the the given one is a short name
344 if (!is_null($eid) && !is_numeric($eid)) {
345 $res = XDB
::query("SELECT eid
347 WHERE asso_id = {?} AND short_name = {?}",
348 $globals->asso('id'), $eid);
349 if ($res->numRows()) {
350 $eid = (int)$res->fetchOneCell();
354 // check the event is in our group
355 if (!is_null($eid)) {
356 $res = XDB
::query("SELECT short_name
358 WHERE eid = {?} AND asso_id = {?}",
359 $eid, $globals->asso('id'));
360 if ($res->numRows()) {
361 $infos = $res->fetchOneAssoc();
367 $page->changeTpl('xnetevents/edit.tpl');
369 $moments = range(1, 4);
371 $page->assign('moments', $moments);
373 if (Post
::v('intitule')) {
374 S
::assert_xsrf_token();
376 $this->load('xnetevents.inc.php');
377 $short_name = event_change_shortname($page, $eid,
378 $infos['short_name'],
379 Env
::v('short_name', ''));
380 if ($short_name != Env
::v('short_name')) {
385 'asso_id' => $globals->asso('id'),
386 'paiement_id' => Post
::v('paiement_id') > 0 ? Post
::v('paiement_id') : null
,
387 'debut' => Post
::v('deb_Year').'-'.Post
::v('deb_Month')
388 .'-'.Post
::v('deb_Day').' '.Post
::v('deb_Hour')
389 .':'.Post
::v('deb_Minute').':00',
390 'fin' => Post
::v('fin_Year').'-'.Post
::v('fin_Month')
391 .'-'.Post
::v('fin_Day').' '.Post
::v('fin_Hour')
392 .':'.Post
::v('fin_Minute').':00',
393 'short_name' => $short_name,
396 $trivial = array('intitule', 'descriptif', 'noinvite',
397 'show_participants', 'accept_nonmembre', 'organisateur_uid');
398 foreach ($trivial as $k) {
399 $evt[$k] = Post
::v($k);
402 $evt['organisateur_uid'] = S
::v('uid');
405 if (Post
::v('deadline')) {
406 $evt['deadline_inscription'] = Post
::v('inscr_Year').'-'
407 . Post
::v('inscr_Month').'-'
408 . Post
::v('inscr_Day');
410 $evt['deadline_inscription'] = null
;
413 // Store the modifications in the database
414 XDB
::execute('REPLACE INTO group_events
415 SET eid={?}, asso_id={?}, organisateur_uid={?}, intitule={?},
416 paiement_id = {?}, descriptif = {?}, debut = {?},
417 fin = {?}, show_participants = {?}, short_name = {?},
418 deadline_inscription = {?}, noinvite = {?},
419 accept_nonmembre = {?}',
420 $evt['eid'], $evt['asso_id'], $evt['organisateur_uid'],
421 $evt['intitule'], $evt['paiement_id'], $evt['descriptif'],
422 $evt['debut'], $evt['fin'], $evt['show_participants'],
423 $evt['short_name'], $evt['deadline_inscription'],
424 $evt['noinvite'], $evt['accept_nonmembre']);
426 // if new event, get its id
428 $eid = XDB
::insertId();
434 foreach ($moments as $i) {
435 if (Post
::v('titre'.$i)) {
438 $montant = strtr(Post
::v('montant'.$i), ',', '.');
439 $money_defaut +
= (float)$montant;
441 REPLACE INTO group_event_items
442 VALUES ({?}, {?}, {?}, {?}, {?})",
443 $eid, $i, Post
::v('titre'.$i),
444 Post
::v('details'.$i), $montant);
446 XDB
::execute("DELETE FROM group_event_items
447 WHERE eid = {?} AND item_id = {?}", $eid, $i);
450 // request for a new payment
451 if (Post
::v('paiement_id') == -1 && $money_defaut >= 0) {
452 require_once 'validations.inc.php';
453 $p = new PayReq(S
::user(),
454 Post
::v('intitule')." - ".$globals->asso('nom'),
455 Post
::v('site'), $money_defaut,
456 Post
::v('confirmation'), 0, 999,
457 $globals->asso('id'), $eid);
461 $page->assign('paiement_message', Post
::v('confirmation'));
462 $page->assign('paiement_site', Post
::v('site'));
467 // events with no sub-event: add a sub-event with no name
468 if ($nb_moments == 0) {
469 XDB
::execute("INSERT INTO group_event_items
470 VALUES ({?}, {?}, '', '', 0)", $eid, 1);
474 pl_redirect('events');
478 // get a list of all the payment for this asso
479 $res = XDB
::iterator("SELECT id, text
480 FROM {$globals->money->mpay_tprefix}paiements
481 WHERE asso_id = {?}", $globals->asso('id'));
482 $paiements = array();
483 while ($a = $res->next()) $paiements[$a['id']] = $a['text']; {
484 $page->assign('paiements', $paiements);
487 // when modifying an old event retreive the old datas
490 "SELECT eid, intitule, descriptif, debut, fin, organisateur_uid,
491 show_participants, paiement_id, short_name,
492 deadline_inscription, noinvite, accept_nonmembre
494 WHERE eid = {?}", $eid);
495 $evt = $res->fetchOneAssoc();
496 // find out if there is already a request for a payment for this event
497 require_once 'validations.inc.php';
498 $res = XDB
::query("SELECT stamp
500 WHERE type = 'paiements' AND data LIKE {?}",
501 PayReq
::same_event($eid, $globals->asso('id')));
502 $stamp = $res->fetchOneCell();
504 $evt['paiement_id'] = -2;
505 $evt['paiement_req'] = $stamp;
507 $page->assign('evt', $evt);
508 // get all the different moments infos
509 $res = XDB
::iterator(
510 "SELECT item_id, titre, details, montant
511 FROM group_event_items AS ei
512 INNER JOIN group_events AS e ON(e.eid = ei.eid)
514 ORDER BY item_id", $eid);
516 while ($item = $res->next()) {
517 $items[$item['item_id']] = $item;
519 $page->assign('items', $items);
521 $page->assign('url_ref', $eid);
524 function handler_admin(&$page, $eid = null
, $item_id = null
)
528 $this->load('xnetevents.inc.php');
530 $evt = get_event_detail($eid, $item_id);
535 $page->changeTpl('xnetevents/admin.tpl');
536 if (!$evt['show_participants'] && !may_update()) {
540 if (may_update() && Post
::v('adm')) {
541 S
::assert_xsrf_token();
543 $member = User
::getSilent(Post
::v('mail'));
545 $page->trigError("Membre introuvable");
548 // change the price paid by a participant
549 if (Env
::v('adm') == 'prix' && $member) {
550 XDB
::execute("UPDATE group_event_participants
551 SET paid = paid + {?}
552 WHERE uid = {?} AND eid = {?} AND item_id = 1",
553 strtr(Env
::v('montant'), ',', '.'),
554 $member->uid
, $evt['eid']);
557 // change the number of personns coming with a participant
558 if (Env
::v('adm') == 'nbs' && $member) {
559 $res = XDB
::query("SELECT paid
560 FROM group_event_participants
561 WHERE uid = {?} AND eid = {?}",
562 $member->uid
, $evt['eid']);
564 $paid = intval($res->fetchOneCell());
565 $nbs = Post
::v('nb', array());
567 foreach ($nbs as $id => $nb) {
568 $nb = max(intval($nb), 0);
569 XDB
::execute("REPLACE INTO group_event_participants
570 VALUES ({?}, {?}, {?}, {?}, {?}, {?})",
571 $evt['eid'], $member->uid
, $id, $nb, '', $id == 1 ?
$paid : 0);
574 $res = XDB
::query("SELECT COUNT(uid) AS cnt, SUM(nb) AS nb
575 FROM group_event_participants
576 WHERE uid = {?} AND eid = {?}
578 $member->uid
, $evt['eid']);
579 $u = $res->fetchOneAssoc();
580 if ($u['cnt'] == 1 && $paid == 0 && Post
::v('cancel')) {
581 XDB
::execute("DELETE FROM group_event_participants
582 WHERE uid = {?} AND eid = {?}",
583 $member->uid
, $evt['eid']);
586 $u = $u['cnt'] ?
$u['nb'] : null
;
588 subscribe_lists_event($u, $member->uid
, $evt, $paid);
591 $evt = get_event_detail($eid, $item_id);
594 $page->assign_by_ref('evt', $evt);
595 $page->assign('tout', is_null($item_id));
597 if (count($evt['moments'])) {
598 $page->assign('moments', $evt['moments']);
601 if ($evt['paiement_id']) {
602 $infos = User
::getBulkUsersWithUIDs(
603 XDB
::fetchAllAssoc('SELECT t.uid, t.montant
604 FROM ' . $globals->money
->mpay_tprefix
. 'transactions AS t
605 LEFT JOIN group_event_participants AS ep ON(ep.uid = t.uid AND ep.eid = {?})
606 WHERE t.ref = {?} AND ep.uid IS NULL',
607 $evt['eid'], $evt['paiement_id']),
609 $page->assign('oublis', count($infos));
610 $page->assign('oubliinscription', $infos);
613 $absents = User
::getBulkUsersFromDB('SELECT p.uid
614 FROM group_event_participants AS p
615 LEFT JOIN group_event_participants AS p2 ON (p2.uid = p.uid
618 WHERE p.eid = {?} AND p2.eid IS NULL
619 GROUP BY p.uid', $evt['eid']);
621 $ofs = Env
::i('offset');
622 $tot = (Env
::v('initiale') ?
$tot : $nb_tot);
623 $nbp = ceil($tot / NB_PER_PAGE
);
627 $links['précédent'] = $ofs - 1;
629 for ($i = 1 ; $i <= $nbp; $i++
) {
630 $links[(string)$i] = $i - 1;
633 $links['suivant'] = $ofs+
1;
635 $page->assign('links', $links);
638 $page->assign('absents', $absents);
639 $page->assign('participants',
640 get_event_participants($evt, $item_id, UserFilter
::sortByName(),
641 new PLLimit(NB_PER_PAGE
), $ofs * NB_PER_PAGE
));
645 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: