2 /***************************************************************************
3 * Copyright (C) 2003-2006 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
),
32 '%grp/events/ical' => $this->make_hook('ical', AUTH_MDP
),
33 '%grp/events/edit' => $this->make_hook('edit', AUTH_MDP
),
34 '%grp/events/admin' => $this->make_hook('admin', AUTH_MDP
),
38 function handler_events(&$page, $archive = null
)
42 if ($archive == 'archive') {
44 new_groupadmin_page('xnetevents/index.tpl');
47 new_group_open_page('xnetevents/index.tpl');
51 if (Post
::has('del')) {
53 $eid = Post
::v('del');
54 } elseif (Post
::has('archive')) {
56 $eid = Post
::v('archive');
57 } elseif (Post
::has('unarchive')) {
58 $action = 'unarchive';
59 $eid = Post
::v('unarchive');
62 if (!is_null($action)) {
67 $res = XDB
::query("SELECT asso_id, short_name FROM groupex.evenements
68 WHERE eid = {?} AND asso_id = {?}",
69 $eid, $globals->asso('id'));
71 $tmp = $res->fetchOneRow();
77 if ($action == 'del') {
78 // deletes the event mailing aliases
81 "DELETE FROM virtual WHERE type = 'evt' AND alias LIKE {?}",
82 $tmp[1].'-absents@%');
84 "DELETE FROM virtual WHERE type = 'evt' AND alias LIKE {?}",
85 $tmp[1].'-participants@%');
88 // deletes the event items
89 XDB
::execute("DELETE FROM groupex.evenements_items WHERE eid = {?}", $eid);
91 // deletes the event participants
92 XDB
::execute("DELETE FROM groupex.evenements_participants
93 WHERE eid = {?}", $eid);
96 XDB
::execute("DELETE FROM groupex.evenements
97 WHERE eid = {?} AND asso_id = {?}",
98 $eid, $globals->asso('id'));
100 // delete the requests for payments
101 require_once 'validations.inc.php';
102 XDB
::execute("DELETE FROM requests
103 WHERE type = 'paiements' AND data LIKE {?}",
104 PayReq
::same_event($eid, $globals->asso('id')));
107 if ($action == 'archive') {
108 XDB
::execute("UPDATE groupex.evenements
110 WHERE eid = {?} AND asso_id = {?}",
111 $eid, $globals->asso('id'));
114 if ($action == 'unarchive') {
115 XDB
::execute("UPDATE groupex.evenements
117 WHERE eid = {?} AND asso_id = {?}",
118 $eid, $globals->asso('id'));
121 $page->assign('archive', $archive);
122 $evenements = XDB
::iterator(
123 "SELECT e.*, LEFT(10, e.debut) AS debut_day, LEFT(10, e.fin) AS fin_day,
124 IF(e.deadline_inscription, e.deadline_inscription >= LEFT(NOW(), 10),
125 1) AS inscr_open, e.deadline_inscription,
126 u.nom, u.prenom, u.promo, a.alias,
127 MAX(ep.nb) IS NOT NULL AS inscrit, MAX(ep.paid) AS paid
128 FROM groupex.evenements AS e
129 INNER JOIN x4dat.auth_user_md5 AS u ON u.user_id = e.organisateur_uid
130 INNER JOIN x4dat.aliases AS a ON (a.type = 'a_vie' AND a.id = u.user_id)
131 LEFT JOIN groupex.evenements_participants AS ep ON (ep.eid = e.eid AND ep.uid = {?})
133 AND archive = " . ($archive ?
"1 " : "0 ")
134 . (is_member() ||
may_update() ?
"" : " AND accept_nonmembre != 0 ")
136 ORDER BY inscr_open DESC, debut DESC", S
::v('uid'), $globals->asso('id'));
140 while ($e = $evenements->next()) {
141 $e['show_participants'] = ($e['show_participants'] && (is_member() ||
may_update()));
143 "SELECT titre, details, montant, ei.item_id, nb, ep.paid
144 FROM groupex.evenements_items AS ei
145 LEFT JOIN groupex.evenements_participants AS ep
146 ON (ep.eid = ei.eid AND ep.item_id = ei.item_id AND uid = {?})
148 S
::v('uid'), $e['eid']);
149 $e['moments'] = $res->fetchAllAssoc();
152 $e['paid'] = $e['moments'][0]['paid'];
153 foreach ($e['moments'] as $m) {
154 $e['topay'] +
= $m['nb'] * $m['montant'];
159 FROM {$globals->money->mpay_tprefix}transactions AS t
160 WHERE ref = {?} AND uid = {?}", $e['paiement_id'], S
::v('uid'));
161 $montants = $query->fetchColumn();
163 foreach ($montants as $m) {
164 $p = strtr(substr($m, 0, strpos($m, 'EUR')), ',', '.');
165 $e['paid'] +
= trim($p);
168 if (Env
::has('updated') && $e['eid'] == Env
::i('updated')) {
169 $page->assign('updated', $e);
174 $page->assign('evenements', $evts);
177 function handler_sub(&$page, $eid = null
)
179 require_once dirname(__FILE__
).'/xnetevents/xnetevents.inc.php';
181 new_group_open_page('xnetevents/subscribe.tpl');
183 $evt = get_event_detail($eid);
188 if (!$evt['inscr_open']) {
189 $page->kill('Les inscriptions pour cet événement sont closes');
191 if (!$evt['accept_nonmembre'] && !is_member() && !may_update()) {
192 $page->kill('Cet événement est fermé aux non-membres du groupe');
195 $page->assign('event', $evt);
197 if (!Post
::has('submit')) {
201 $moments = Post
::v('moment', array());
202 $pers = Post
::v('personnes', array());
205 foreach ($moments as $j => $v) {
206 $subs[$j] = intval($v);
208 // retreive ohter field when more than one person
209 if ($subs[$j] == 2) {
210 if (!isset($pers[$j]) ||
!is_numeric($pers[$j])
213 $page->trig('Tu dois choisir un nombre d\'invités correct !');
216 $subs[$j] = 1 +
$pers[$j];
220 // impossible to unsubscribe if you already paid sthing
221 if (!array_sum($subs) && $evt['paid'] != 0) {
222 $page->trig("Impossible de te désinscrire complètement ".
223 "parce que tu as fait un paiement par ".
224 "chèque ou par liquide. Contacte un ".
225 "administrateur du groupe si tu es sûr de ".
230 // update actual inscriptions
233 foreach ($subs as $j => $nb) {
236 "REPLACE INTO groupex.evenements_participants
237 VALUES ({?}, {?}, {?}, {?}, {?})",
238 $eid, S
::v('uid'), $j, $nb, $evt['paid']);
242 "DELETE FROM groupex.evenements_participants
243 WHERE eid = {?} AND uid = {?} AND item_id = {?}",
244 $eid, S
::v("uid"), $j);
249 if ($updated !== false
) {
250 subscribe_lists_event($total, S
::i('uid'), $evt);
252 $page->assign('event', get_event_detail($eid));
255 function handler_csv(&$page, $eid = null
, $item_id = null
)
257 require_once dirname(__FILE__
).'/xnetevents/xnetevents.inc.php';
259 if (!is_numeric($item_id)) {
263 $evt = get_event_detail($eid, $item_id);
268 header('Content-type: text/x-csv; encoding=iso-8859-1');
270 header('Cache-Control: ');
272 $page->changeTpl('xnetevents/csv.tpl', NO_SKIN
);
274 $admin = may_update();
276 $tri = (Env
::v('order') == 'alpha' ?
'promo, nom, prenom' : 'nom, prenom, promo');
278 $page->assign('participants',
279 get_event_participants($evt, $item_id, $tri));
281 $page->assign('admin', $admin);
282 $page->assign('moments', $evt['moments']);
283 $page->assign('money', $evt['money']);
284 $page->assign('tout', !Env
::v('item_id', false
));
287 function handler_ical(&$page, $eid = null
)
291 require_once dirname(__FILE__
).'/xnetevents/xnetevents.inc.php';
292 $evt = get_event_detail($eid);
296 $evt['debut'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['debut']);
297 $evt['fin'] = preg_replace('/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/', "\\1\\2\\3T\\4\\5\\6", $evt['fin']);
299 foreach ($evt['moments'] as $m) {
300 $evt['descriptif'] .= "\n\n** " . $m['titre'] . " **\n" . $m['details'];
303 $page->changeTpl('xnetevents/calendar.tpl', NO_SKIN
);
305 require_once('ical.inc.php');
306 $page->assign('asso', $globals->asso());
307 $page->assign('timestamp', time());
308 $page->assign('admin', may_update());
311 $page->assign('participants', get_event_participants($evt, null
, 'promo, nom, prenom'));
313 $page->register_function('display_ical', 'display_ical');
314 $page->assign_by_ref('e', $evt);
316 header('Content-Type: text/calendar; charset=utf-8');
319 function handler_edit(&$page, $eid = null
)
323 // get eid if the the given one is a short name
324 if (!is_null($eid) && !is_numeric($eid)) {
325 $res = XDB
::query("SELECT eid
326 FROM groupex.evenements
327 WHERE asso_id = {?} AND short_name = {?}",
328 $globals->asso('id'), $eid);
329 if ($res->numRows()) {
330 $eid = (int)$res->fetchOneCell();
334 // check the event is in our group
335 if (!is_null($eid)) {
336 $res = XDB
::query("SELECT short_name
337 FROM groupex.evenements
338 WHERE eid = {?} AND asso_id = {?}",
339 $eid, $globals->asso('id'));
340 if ($res->numRows()) {
341 $infos = $res->fetchOneAssoc();
347 new_groupadmin_page('xnetevents/edit.tpl');
349 $moments = range(1, 4);
350 $page->assign('moments', $moments);
352 if (Post
::v('intitule')) {
353 require_once dirname(__FILE__
).'/xnetevents/xnetevents.inc.php';
354 $short_name = event_change_shortname($page, $infos['short_name'],
355 Env
::v('short_name', ''));
359 'asso_id' => $globals->asso('id'),
360 'paiement_id' => Post
::v('paiement_id') > 0 ? Post
::v('paiement_id') : null
,
361 'debut' => Post
::v('deb_Year').'-'.Post
::v('deb_Month')
362 .'-'.Post
::v('deb_Day').' '.Post
::v('deb_Hour')
363 .':'.Post
::v('deb_Minute').':00',
364 'fin' => Post
::v('fin_Year').'-'.Post
::v('fin_Month')
365 .'-'.Post
::v('fin_Day').' '.Post
::v('fin_Hour')
366 .':'.Post
::v('fin_Minute').':00',
367 'short_name' => $short_name,
370 $trivial = array('intitule', 'descriptif', 'noinvite',
371 'show_participants', 'accept_nonmembre', 'organisateur_uid');
372 foreach ($trivial as $k) {
373 $evt[$k] = Post
::v($k);
376 $evt['organisateur_uid'] = S
::v('uid');
379 if (Post
::v('deadline')) {
380 $evt['deadline_inscription'] = Post
::v('inscr_Year').'-'
381 . Post
::v('inscr_Month').'-'
382 . Post
::v('inscr_Day');
384 $evt['deadline_inscription'] = null
;
387 // Store the modifications in the database
388 XDB
::execute('REPLACE INTO groupex.evenements
389 SET eid={?}, asso_id={?}, organisateur_uid={?}, intitule={?},
390 paiement_id = {?}, descriptif = {?}, debut = {?},
391 fin = {?}, show_participants = {?}, short_name = {?},
392 deadline_inscription = {?}, noinvite = {?},
393 accept_nonmembre = {?}',
394 $evt['eid'], $evt['asso_id'], $evt['organisateur_uid'],
395 $evt['intitule'], $evt['paiement_id'], $evt['descriptif'],
396 $evt['debut'], $evt['fin'], $evt['show_participants'],
397 $evt['short_name'], $evt['deadline_inscription'],
398 $evt['noinvite'], $evt['accept_nonmembre']);
400 // if new event, get its id
402 $eid = XDB
::insertId();
408 foreach ($moments as $i) {
409 if (Post
::v('titre'.$i)) {
412 $montant = strtr(Post
::v('montant'.$i), ',', '.');
413 $money_defaut +
= (float)$montant;
415 REPLACE INTO groupex.evenements_items
416 VALUES ({?}, {?}, {?}, {?}, {?})",
417 $eid, $i, Post
::v('titre'.$i),
418 Post
::v('details'.$i), $montant);
420 XDB
::execute("DELETE FROM groupex.evenements_items
421 WHERE eid = {?} AND item_id = {?}", $eid, $i);
425 // request for a new payment
426 if (Post
::v('paiement_id') == -1 && $money_defaut >= 0) {
427 require_once 'validations.inc.php';
428 $p = new PayReq(S
::v('uid'),
429 Post
::v('intitule')." - ".$globals->asso('nom'),
430 Post
::v('site'), $money_defaut,
431 Post
::v('confirmation'), 0, 999,
432 $globals->asso('id'), $eid);
436 // events with no sub-event: add a sub-event with no name
437 if ($nb_moments == 0) {
438 XDB
::execute("INSERT INTO groupex.evenements_items
439 VALUES ({?}, {?}, '', '', 0)", $eid, 1);
442 pl_redirect('events');
445 // get a list of all the payment for this asso
446 $res = XDB
::iterator("SELECT id, text
447 FROM {$globals->money->mpay_tprefix}paiements
448 WHERE asso_id = {?}", $globals->asso('id'));
449 $paiements = array();
450 while ($a = $res->next()) $paiements[$a['id']] = $a['text']; {
451 $page->assign('paiements', $paiements);
454 // when modifying an old event retreive the old datas
457 "SELECT eid, intitule, descriptif, debut, fin, organisateur_uid,
458 show_participants, paiement_id, short_name,
459 deadline_inscription, noinvite, accept_nonmembre
460 FROM groupex.evenements
461 WHERE eid = {?}", $eid);
462 $evt = $res->fetchOneAssoc();
463 // find out if there is already a request for a payment for this event
464 require_once 'validations.inc.php';
465 $res = XDB
::query("SELECT stamp FROM requests
466 WHERE type = 'paiements' AND data LIKE {?}",
467 PayReq
::same_event($eid, $globals->asso('id')));
468 $stamp = $res->fetchOneCell();
470 $evt['paiement_id'] = -2;
471 $evt['paiement_req'] = $stamp;
473 $page->assign('evt', $evt);
474 // get all the different moments infos
475 $res = XDB
::iterator(
476 "SELECT item_id, titre, details, montant
477 FROM groupex.evenements_items AS ei
478 INNER JOIN groupex.evenements AS e ON(e.eid = ei.eid)
480 ORDER BY item_id", $eid);
482 while ($item = $res->next()) {
483 $items[$item['item_id']] = $item;
485 $page->assign('items', $items);
487 $page->assign('url_ref', $eid);
490 function handler_admin(&$page, $eid = null
, $item_id = null
)
494 require_once dirname(__FILE__
).'/xnetevents/xnetevents.inc.php';
496 $evt = get_event_detail($eid, $item_id);
501 if ($evt['show_participants']) {
502 new_group_page('xnetevents/admin.tpl');
504 new_groupadmin_page('xnetevents/admin.tpl');
507 if (may_update() && Post
::v('adm')) {
508 $member = get_infos(Post
::v('mail'));
510 $page->trig("Membre introuvable");
513 // change the price paid by a participant
514 if (Env
::v('adm') == 'prix' && $member) {
515 XDB
::execute("UPDATE groupex.evenements_participants
516 SET paid = IF(paid + {?} > 0, paid + {?}, 0)
517 WHERE uid = {?} AND eid = {?}",
518 strtr(Env
::v('montant'), ',', '.'),
519 strtr(Env
::v('montant'), ',', '.'),
520 $member['uid'], $evt['eid']);
523 // change the number of personns coming with a participant
524 if (Env
::v('adm') == 'nbs' && $member) {
525 $res = XDB
::query("SELECT paid
526 FROM groupex.evenements_participants
527 WHERE uid = {?} AND eid = {?}",
528 $member['uid'], $evt['eid']);
530 $paid = intval($res->fetchOneCell());
531 $nbs = Post
::v('nb', array());
533 foreach ($nbs as $id => $nb) {
534 $nb = max(intval($nb), 0);
537 XDB
::execute("REPLACE INTO groupex.evenements_participants
538 VALUES ({?}, {?}, {?}, {?}, {?})",
539 $evt['eid'], $member['uid'], $id, $nb, $paid);
543 $res = XDB
::query("SELECT COUNT(uid) AS cnt, SUM(nb) AS nb
544 FROM groupex.evenements_participants
545 WHERE uid = {?} AND eid = {?}
547 $member['uid'], $evt['eid']);
548 $u = $res->fetchOneAssoc();
549 $u = $u['cnt'] ? null
: $u['nb'];
550 subscribe_lists_event($u, $member['uid'], $evt);
553 $evt = get_event_detail($eid, $item_id);
556 $page->assign('evt', $evt);
557 $page->assign('tout', is_null($item_id));
559 if (count($evt['moments'])) {
560 $page->assign('moments', $evt['moments']);
563 $tri = (Env
::v('order') == 'alpha' ?
'promo, nom, prenom' : 'nom, prenom, promo');
564 $whereitemid = is_null($item_id) ?
'' : "AND ep.item_id = $item_id";
566 'SELECT UPPER(SUBSTRING(IF(u.nom IS NULL, m.nom,
567 IF(u.nom_usage<>"", u.nom_usage, u.nom)), 1, 1)),
568 COUNT(DISTINCT ep.uid)
569 FROM groupex.evenements_participants AS ep
570 INNER JOIN groupex.evenements AS e ON (ep.eid = e.eid)
571 LEFT JOIN groupex.membres AS m ON ( ep.uid = m.uid AND e.asso_id = m.asso_id)
572 LEFT JOIN auth_user_md5 AS u ON ( u.user_id = ep.uid )
573 WHERE ep.eid = {?} '.$whereitemid.'
574 GROUP BY UPPER(SUBSTRING(IF(u.nom IS NULL,m.nom,u.nom), 1, 1))', $evt['eid']);
578 while (list($char, $nb) = $res->next()) {
579 $alphabet[ord($char)] = $char;
581 if (Env
::has('initiale') && $char == strtoupper(Env
::v('initiale'))) {
586 $page->assign('alphabet', $alphabet);
588 $ofs = Env
::i('offset');
589 $tot = Env
::v('initiale') ?
$tot : $nb_tot;
590 $nbp = intval(($tot-1)/NB_PER_PAGE
);
593 $links['précédent'] = $ofs-1;
595 for ($i = 0; $i <= $nbp; $i++
) {
596 $links[(string)($i+
1)] = $i;
599 $links['suivant'] = $ofs+
1;
601 if (count($links)>1) {
602 $page->assign('links', $links);
605 if ($evt['paiement_id']) {
606 $res = XDB
::iterator(
607 "SELECT IF(u.nom_usage<>'', u.nom_usage, u.nom) AS nom, u.prenom,
608 u.promo, a.alias AS email, t.montant
609 FROM {$globals->money->mpay_tprefix}transactions AS t
610 INNER JOIN auth_user_md5 AS u ON(t.uid = u.user_id)
611 INNER JOIN aliases AS a ON (a.id = t.uid AND a.type='a_vie' )
612 LEFT JOIN groupex.evenements_participants AS ep ON(ep.uid = t.uid AND ep.eid = {?})
613 WHERE t.ref = {?} AND ep.uid IS NULL",
614 $evt['eid'], $evt['paiement_id']);
615 $page->assign('oublis', $res->total());
616 $page->assign('oubliinscription', $res);
619 $page->assign('participants',
620 get_event_participants($evt, $item_id, $tri,
621 "LIMIT ".($ofs*NB_PER_PAGE
).", ".NB_PER_PAGE
));