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