Typo.
[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 montant
94 FROM ' . $globals->money->mpay_tprefix . '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(), $count = null, $offset = 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), $count, $offset));
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 montant
148 FROM ' . $globals->money->mpay_tprefix . '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 if ($user) {
188 $email = $user->forlifeEmail();
189 } else {
190 $res = XDB::query("SELECT email
191 FROM group_members
192 WHERE uid = {?} AND asso_id = {?}",
193 $uid, $globals->asso('id'));
194 $email = $res->fetchOneCell();
195 }
196
197 function subscribe($list, $email)
198 {
199 if ($list && $email) {
200 XDB::execute("REPLACE INTO virtual_redirect
201 VALUES ({?},{?})",
202 $list, $email);
203 }
204 }
205
206 function unsubscribe($list, $email)
207 {
208 if ($list && $email) {
209 XDB::execute("DELETE FROM virtual_redirect
210 WHERE vid = {?} AND redirect = {?}",
211 $list, $email);
212 }
213 }
214
215 if (is_null($payment)) {
216 if (is_null($participate)) {
217 unsubscribe($participant_list, $email);
218 subscribe($absent_list, $email);
219 } elseif ($participate) {
220 subscribe($participant_list, $email);
221 unsubscribe($absent_list, $email);
222 } else {
223 unsubscribe($participant_list, $email);
224 unsubscribe($absent_list, $email);
225 }
226 }
227 if ($paid > 0) {
228 unsubscribe($unpayed_list, $email);
229 subscribe($payed_list, $email);
230 } else {
231 unsubscribe($payed_list, $email);
232 if (!is_null($participate)) {
233 subscribe($unpayed_list, $email);
234 }
235 }
236 }
237 // }}}
238
239 // {{{ function event_change_shortname()
240 function event_change_shortname(&$page, $eid, $old, $new)
241 {
242 global $globals;
243
244 if (is_null($old)) {
245 $old = '';
246 }
247 // Quelques vérifications sur l'alias (caractères spéciaux)
248 if ($new && !preg_match( "/^[a-zA-Z0-9\-.]{3,20}$/", $new)) {
249 $page->trigError("Le raccourci demandé n'est pas valide.
250 Vérifie qu'il comporte entre 3 et 20 caractères
251 et qu'il ne contient que des lettres non accentuées,
252 des chiffres ou les caractères - et .");
253 return $old;
254 } elseif ($new && (is_int($new) || ctype_digit($new))) {
255 $page->trigError("Le raccourci demandé ne peut être accepté car il
256 ne contient que des chiffres. Rajoute-lui par exemple
257 une lettre.");
258 return $old;
259 }
260
261 //vérifier que l'alias n'est pas déja pris
262 if ($new && $old != $new) {
263 $res = XDB::query('SELECT COUNT(*)
264 FROM group_events
265 WHERE short_name = {?}',
266 $new);
267 if ($res->fetchOneCell() > 0) {
268 $page->trigError("Le raccourci demandé est déjà utilisé. Choisis en un autre.");
269 return $old;
270 }
271 }
272
273 if ($old == $new) {
274 return $new;
275 }
276
277 if ($old && $new) {
278 // if had a previous shortname change the old lists
279 foreach (array('-absents@', '-participants@', '-paye@', '-participants-non-paye@') as $v) {
280 $v .= $globals->xnet->evts_domain;
281 XDB::execute("UPDATE virtual
282 SET alias = {?}
283 WHERE type = 'evt' AND alias = {?}",
284 $new . $v, $old . $v);
285 }
286 return $new;
287 }
288
289 if (!$old && $new) {
290 // if we have a first new short_name create the lists
291 $lastid = array();
292 $where = array(
293 '-participants@' => 'ep.nb > 0',
294 '-paye@' => 'ep.paid > 0',
295 '-participants-non-paye@' => 'ep.nb > 0 AND ep.paid = 0'
296 );
297
298 foreach (array('-absents@', '-participants@', '-paye@', '-participants-non-paye@') as $v) {
299 XDB::execute("INSERT INTO virtual
300 SET type = 'evt', alias = {?}",
301 $new . $v . $globals->xnet->evts_domain);
302
303 $lastid[$v] = XDB::insertId();
304 }
305
306 foreach (array('-participants@', '-paye@', '-participants-non-paye@') as $v) {
307 XDB::execute("INSERT IGNORE INTO virtual_redirect (
308 SELECT {?} AS vid, IF(al.alias IS NULL, a.email, CONCAT(al.alias, {?})) AS redirect
309 FROM group_event_participants AS ep
310 LEFT JOIN accounts AS a ON (ep.uid = a.uid)
311 LEFT JOIN aliases AS al ON (al.uid = a.uid AND al.type = 'a_vie')
312 WHERE ep.eid = {?} AND " . $where[$v] . "
313 GROUP BY ep.uid)",
314 $lastid[$v], '@' . $globals->mail->domain, $eid);
315 }
316 XDB::execute("INSERT IGNORE INTO virtual_redirect (
317 SELECT {?} AS vid, IF(al.alias IS NULL, a.email, CONCAT(al.alias, {?})) AS redirect
318 FROM group_members AS m
319 LEFT JOIN accounts AS a ON (a.uid = m.uid)
320 LEFT JOIN aliases AS al ON (al.uid = a.uid AND al.type = 'a_vie')
321 LEFT JOIN group_event_participants AS ep ON (ep.uid = m.uid AND ep.eid = {?})
322 WHERE m.asso_id = {?} AND ep.uid IS NULL
323 GROUP BY m.uid)",
324 $lastid['-absents@'], '@' . $globals->mail->domain, $eid, $globals->asso('id'));
325
326 return $new;
327 }
328
329 if ($old && !$new) {
330 // if we delete the old short name, delete the lists
331 foreach (array('-absents@', '-participants@', '-paye@', '-participants-non-paye@') as $v) {
332 $v .= $globals->xnet->evts_domain;
333 XDB::execute("DELETE virtual, virtual_redirect
334 FROM virtual
335 LEFT JOIN virtual_redirect USING(vid)
336 WHERE virtual.alias = {?}",
337 $infos['short_name'] . $v);
338 }
339 return $new;
340 }
341
342 // cannot happen
343 return $old;
344 }
345 // }}}
346
347 // {{{ function make_event_date()
348 function make_event_date(&$e)
349 {
350 $start = strtotime($e['debut']);
351 $end = strtotime($e['fin']);
352 $first_day = @strtotime($e['first_day']);
353 $last_day = strtotime($e['last_day']);
354 unset($e['debut'], $e['fin'], $e['first_day'], $e['last_day']);
355
356 $date = "";
357 if ($start && $end != $start) {
358 if ($first_day == $last_day) {
359 $date .= "le " . strftime("%d %B %Y", $start) . " de "
360 . strftime("%H:%M", $start) . " à " . strftime("%H:%M", $end);
361 } else {
362 $date .= "du " . strftime("%d %B %Y à %H:%M", $start)
363 . "\nau " . strftime("%d %B %Y à %H:%M", $end);
364 }
365 } else {
366 $date .= "le " . strftime("%d %B %Y à %H:%M", $start);
367 }
368 $e['date'] = $date;
369 }
370 // }}}
371
372 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
373 ?>