Fix listing of xnetevent participants.
[platal.git] / modules / xnetevents / xnetevents.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2010 Polytechnique.org *
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
22 // {{{ function get_event_detail()
23
24 function get_event_detail($eid, $item_id = false, $asso_id = null)
25 {
26 global $globals;
27 if (is_null($asso_id)) {
28 $asso_id = $globals->asso('id');
29 }
30 $res = XDB::query('SELECT SUM(nb) AS nb_tot, COUNT(DISTINCT ep.uid) AS nb, e.*,
31 IF(e.deadline_inscription,
32 e.deadline_inscription >= LEFT(NOW(), 10),
33 1) AS inscr_open,
34 LEFT(10, e.debut) AS start_day, LEFT(10, e.fin) AS last_day,
35 LEFT(NOW(), 10) AS now,
36 ei.titre, al.vid AS absent_list, pl.vid AS participant_list,
37 pyl.vid AS payed_list, bl.vid AS booked_unpayed_list
38 FROM group_events AS e
39 INNER JOIN group_event_items AS ei ON (e.eid = ei.eid)
40 LEFT JOIN group_event_participants AS ep ON(e.eid = ep.eid AND ei.item_id = ep.item_id)
41 LEFT JOIN virtual AS al ON(al.type = \'evt\' AND al.alias = CONCAT(short_name, {?}))
42 LEFT JOIN virtual AS pl ON(pl.type = \'evt\' AND pl.alias = CONCAT(short_name, {?}))
43 LEFT JOIN virtual AS pyl ON(pyl.type = \'evt\' AND pyl.alias = CONCAT(short_name, {?}))
44 LEFT JOIN virtual AS bl ON(bl.type = \'evt\' AND bl.alias = CONCAT(short_name, {?}))
45 WHERE (e.eid = {?} OR e.short_name = {?}) AND ei.item_id = {?} AND e.asso_id = {?}
46 GROUP BY ei.item_id',
47 '-absents@'.$globals->xnet->evts_domain,
48 '-participants@'.$globals->xnet->evts_domain,
49 '-paye@' . $globals->xnet->evts_domain,
50 '-participants-non-paye@' . $globals->xnet->evts_domain,
51 $eid, $eid, $item_id ? $item_id : 1, $asso_id);
52 $evt = $res->fetchOneAssoc();
53
54 if (!$evt) {
55 return null;
56 }
57 if ($GLOBALS['IS_XNET_SITE'] && $evt['accept_nonmembre'] == 0 && !is_member() && !may_update()) {
58 return false;
59 }
60
61 // smart calculation of the total number
62 if (!$item_id) {
63 $res = XDB::query('SELECT MAX(nb)
64 FROM group_events AS e
65 INNER JOIN group_event_items AS ei ON (e.eid = ei.eid)
66 LEFT JOIN group_event_participants AS ep ON (e.eid = ep.eid AND ei.item_id = ep.item_id)
67 WHERE e.eid = {?}
68 GROUP BY ep.uid', $evt['eid']);
69 $evt['nb_tot'] = array_sum($res->fetchColumn());
70 $evt['titre'] = '';
71 $evt['item_id'] = 0;
72 }
73
74 $evt['moments'] = XDB::fetchAllAssoc('SELECT titre, details, montant, ei.item_id, nb,
75 ep.paid, FIND_IN_SET(\'notify_payment\', ep.flags) AS notify_payment
76 FROM group_event_items AS ei
77 LEFT JOIN group_event_participants AS ep ON (ep.eid = ei.eid AND ep.item_id = ei.item_id
78 AND uid = {?})
79 WHERE ei.eid = {?}',
80 S::i('uid'), $evt['eid']);
81 $evt['topay'] = 0;
82 $evt['paid'] = 0;
83 $evt['notify_payment'] = false;
84 foreach ($evt['moments'] as $m) {
85 $evt['topay'] += $m['nb'] * $m['montant'];
86 if ($m['montant']) {
87 $evt['money'] = true;
88 }
89 $evt['paid'] = $m['paid'];
90 $evt['notify_payment'] = $evt['notify_payment'] || $m['notify_payment'];
91 }
92
93 $montants = XDB::fetchColumn('SELECT amount
94 FROM payment_transactions AS t
95 WHERE ref = {?} AND uid = {?}',
96 $evt['paiement_id'], S::v('uid'));
97 $evt['telepaid'] = 0;
98 foreach ($montants as $m) {
99 $p = strtr(substr($m, 0, strpos($m, 'EUR')), ',', '.');
100 $evt['paid'] += trim($p);
101 $evt['telepaid'] += trim($p);
102 }
103
104 make_event_date($evt);
105
106 return $evt;
107 }
108
109 // }}}
110
111 // {{{ function get_event_participants()
112 function get_event_participants(&$evt, $item_id, array $tri = array(), $limit = null)
113 {
114 global $globals;
115
116 $eid = $evt['eid'];
117 $money = $evt['money'] && (function_exists('may_update')) && may_update();
118 $pay_id = $evt['paiement_id'];
119
120 $append = $item_id ? XDB::format(' AND ep.item_id = {?}', $item_id) : '';
121 $query = XDB::fetchAllAssoc('uid', 'SELECT ep.uid, SUM(ep.paid) AS paid, SUM(ep.nb) AS nb,
122 FIND_IN_SET(\'notify_payment\', ep.flags) AS notify_payment
123 FROM group_event_participants AS ep
124 WHERE ep.eid = {?} AND nb > 0 ' . $append . '
125 GROUP BY ep.uid', $eid);
126 $uf = new UserFilter(new PFC_True(), $tri);
127 $users = User::getBulkUsersWithUIDs($uf->filter(array_keys($query), $limit));
128 $tab = array();
129 foreach ($users as $user) {
130 $uid = $user->id();
131 $tab[$uid] = $query[$uid];
132 $tab[$uid]['user'] = $user;
133 }
134
135 if ($item_id) {
136 return $tab;
137 }
138
139 $evt['adminpaid'] = 0;
140 $evt['telepaid'] = 0;
141 $evt['topay'] = 0;
142 $evt['paid'] = 0;
143 foreach ($tab as $uid=>&$u) {
144 $u['adminpaid'] = $u['paid'];
145 $u['montant'] = 0;
146 if ($money && $pay_id) {
147 $montants = XDB::fetchColumn('SELECT amount
148 FROM payment_transactions AS t
149 WHERE ref = {?} AND uid = {?}',
150 $pay_id, $uid);
151 foreach ($montants as $m) {
152 $p = strtr(substr($m, 0, strpos($m, "EUR")), ",", ".");
153 $u['paid'] += trim($p);
154 }
155 }
156 $u['telepayment'] = $u['paid'] - $u['adminpaid'];
157 $res_ = XDB::iterator('SELECT ep.nb, ep.item_id, ei.montant
158 FROM group_event_participants AS ep
159 INNER JOIN group_event_items AS ei ON (ei.eid = ep.eid AND ei.item_id = ep.item_id)
160 WHERE ep.eid = {?} AND ep.uid = {?}',
161 $eid, $uid);
162 while ($i = $res_->next()) {
163 $u[$i['item_id']] = $i['nb'];
164 $u['montant'] += $i['montant']*$i['nb'];
165 }
166 $evt['telepaid'] += $u['telepayment'];
167 $evt['adminpaid'] += $u['adminpaid'];
168 $evt['paid'] += $u['paid'];
169 $evt['topay'] += $u['montant'];
170 }
171 return $tab;
172 }
173 // }}}
174
175 // {{{ function subscribe_lists_event()
176 function subscribe_lists_event($participate, $uid, $evt, $paid, $payment = null)
177 {
178 global $globals;
179 $page =& Platal::page();
180
181 $participant_list = $evt['participant_list'];
182 $absent_list = $evt['absent_list'];
183 $unpayed_list = $evt['booked_unpayed_list'];
184 $payed_list = $evt['payed_list'];
185
186 $user = User::getSilent($uid);
187 $email = $user->forlifeEmail();
188
189 function subscribe($list, $email)
190 {
191 if ($list && $email) {
192 XDB::execute("REPLACE INTO virtual_redirect
193 VALUES ({?},{?})",
194 $list, $email);
195 }
196 }
197
198 function unsubscribe($list, $email)
199 {
200 if ($list && $email) {
201 XDB::execute("DELETE FROM virtual_redirect
202 WHERE vid = {?} AND redirect = {?}",
203 $list, $email);
204 }
205 }
206
207 if (is_null($payment)) {
208 if (is_null($participate)) {
209 unsubscribe($participant_list, $email);
210 subscribe($absent_list, $email);
211 } elseif ($participate) {
212 subscribe($participant_list, $email);
213 unsubscribe($absent_list, $email);
214 } else {
215 unsubscribe($participant_list, $email);
216 unsubscribe($absent_list, $email);
217 }
218 }
219 if ($paid > 0) {
220 unsubscribe($unpayed_list, $email);
221 subscribe($payed_list, $email);
222 } else {
223 unsubscribe($payed_list, $email);
224 if (!is_null($participate)) {
225 subscribe($unpayed_list, $email);
226 }
227 }
228 }
229 // }}}
230
231 // {{{ function event_change_shortname()
232 function event_change_shortname(&$page, $eid, $old, $new)
233 {
234 global $globals;
235
236 if (is_null($old)) {
237 $old = '';
238 }
239 // Quelques vérifications sur l'alias (caractères spéciaux)
240 if ($new && !preg_match( "/^[a-zA-Z0-9\-.]{3,20}$/", $new)) {
241 $page->trigError("Le raccourci demandé n'est pas valide.
242 Vérifie qu'il comporte entre 3 et 20 caractères
243 et qu'il ne contient que des lettres non accentuées,
244 des chiffres ou les caractères - et .");
245 return $old;
246 } elseif ($new && (is_int($new) || ctype_digit($new))) {
247 $page->trigError("Le raccourci demandé ne peut être accepté car il
248 ne contient que des chiffres. Rajoute-lui par exemple
249 une lettre.");
250 return $old;
251 }
252
253 //vérifier que l'alias n'est pas déja pris
254 if ($new && $old != $new) {
255 $res = XDB::query('SELECT COUNT(*)
256 FROM group_events
257 WHERE short_name = {?}',
258 $new);
259 if ($res->fetchOneCell() > 0) {
260 $page->trigError("Le raccourci demandé est déjà utilisé. Choisis en un autre.");
261 return $old;
262 }
263 }
264
265 if ($old == $new) {
266 return $new;
267 }
268
269 if ($old && $new) {
270 // if had a previous shortname change the old lists
271 foreach (array('-absents@', '-participants@', '-paye@', '-participants-non-paye@') as $v) {
272 $v .= $globals->xnet->evts_domain;
273 XDB::execute("UPDATE virtual
274 SET alias = {?}
275 WHERE type = 'evt' AND alias = {?}",
276 $new . $v, $old . $v);
277 }
278 return $new;
279 }
280
281 if (!$old && $new) {
282 // if we have a first new short_name create the lists
283 $lastid = array();
284 $where = array(
285 '-participants@' => 'ep.nb > 0',
286 '-paye@' => 'ep.paid > 0',
287 '-participants-non-paye@' => 'ep.nb > 0 AND ep.paid = 0'
288 );
289
290 foreach (array('-absents@', '-participants@', '-paye@', '-participants-non-paye@') as $v) {
291 XDB::execute("INSERT INTO virtual
292 SET type = 'evt', alias = {?}",
293 $new . $v . $globals->xnet->evts_domain);
294
295 $lastid[$v] = XDB::insertId();
296 }
297
298 foreach (array('-participants@', '-paye@', '-participants-non-paye@') as $v) {
299 XDB::execute("INSERT IGNORE INTO virtual_redirect (
300 SELECT {?} AS vid, IF(al.alias IS NULL, a.email, CONCAT(al.alias, {?})) AS redirect
301 FROM group_event_participants AS ep
302 LEFT JOIN accounts AS a ON (ep.uid = a.uid)
303 LEFT JOIN aliases AS al ON (al.uid = a.uid AND al.type = 'a_vie')
304 WHERE ep.eid = {?} AND " . $where[$v] . "
305 GROUP BY ep.uid)",
306 $lastid[$v], '@' . $globals->mail->domain, $eid);
307 }
308 XDB::execute("INSERT IGNORE INTO virtual_redirect (
309 SELECT {?} AS vid, IF(al.alias IS NULL, a.email, CONCAT(al.alias, {?})) AS redirect
310 FROM group_members AS m
311 LEFT JOIN accounts AS a ON (a.uid = m.uid)
312 LEFT JOIN aliases AS al ON (al.uid = a.uid AND al.type = 'a_vie')
313 LEFT JOIN group_event_participants AS ep ON (ep.uid = m.uid AND ep.eid = {?})
314 WHERE m.asso_id = {?} AND ep.uid IS NULL
315 GROUP BY m.uid)",
316 $lastid['-absents@'], '@' . $globals->mail->domain, $eid, $globals->asso('id'));
317
318 return $new;
319 }
320
321 if ($old && !$new) {
322 // if we delete the old short name, delete the lists
323 foreach (array('-absents@', '-participants@', '-paye@', '-participants-non-paye@') as $v) {
324 $v .= $globals->xnet->evts_domain;
325 XDB::execute("DELETE virtual, virtual_redirect
326 FROM virtual
327 LEFT JOIN virtual_redirect USING(vid)
328 WHERE virtual.alias = {?}",
329 $infos['short_name'] . $v);
330 }
331 return $new;
332 }
333
334 // cannot happen
335 return $old;
336 }
337 // }}}
338
339 // {{{ function make_event_date()
340 function make_event_date(&$e)
341 {
342 $start = strtotime($e['debut']);
343 $end = strtotime($e['fin']);
344 $first_day = @strtotime($e['first_day']);
345 $last_day = strtotime($e['last_day']);
346 unset($e['debut'], $e['fin'], $e['first_day'], $e['last_day']);
347
348 $date = "";
349 if ($start && $end != $start) {
350 if ($first_day == $last_day) {
351 $date .= "le " . strftime("%d %B %Y", $start) . " de "
352 . strftime("%H:%M", $start) . " à " . strftime("%H:%M", $end);
353 } else {
354 $date .= "du " . strftime("%d %B %Y à %H:%M", $start)
355 . "\nau " . strftime("%d %B %Y à %H:%M", $end);
356 }
357 } else {
358 $date .= "le " . strftime("%d %B %Y à %H:%M", $start);
359 }
360 $e['date'] = $date;
361 }
362 // }}}
363
364 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
365 ?>