Convert source code to UTF-8
[platal.git] / include / notifs.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
5ddeb07c 3 * Copyright (C) 2003-2007 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
22define('WATCH_FICHE', 1);
23define('WATCH_INSCR', 2);
24define('WATCH_DEATH', 3);
25define('WATCH_BIRTH', 4);
26
27// {{{ function inscription_notifs_base
28
29function inscription_notifs_base($uid)
30{
08cce2ff 31 XDB::execute('REPLACE INTO watch_sub (uid,cid) SELECT {?},id FROM watch_cat', $uid);
0337d704 32}
33
34// }}}
35// {{{ function register_watch_op
36
37function register_watch_op($uid, $cid, $date='', $info='')
38{
0337d704 39 if (empty($date)) {
40 $date = date('Y-m-d');
41 };
08cce2ff 42 XDB::execute('REPLACE INTO watch_ops (uid,cid,known,date,info) VALUES({?},{?},NOW(),{?},{?})',
0337d704 43 $uid, $cid, $date, $info);
44 if($cid == WATCH_FICHE) {
a3a049fc 45 XDB::execute('UPDATE auth_user_md5 SET DATE=NOW() WHERE user_id={?}', $uid);
0337d704 46 } elseif($cid == WATCH_INSCR) {
a3a049fc 47 XDB::execute('REPLACE INTO contacts (uid,contact)
48 SELECT uid,ni_id
49 FROM watch_nonins
50 WHERE ni_id={?}', $uid);
51 XDB::execute('DELETE FROM watch_nonins WHERE ni_id={?}', $uid);
0337d704 52 }
53}
54
55// }}}
56// {{{ function _select_notifs_base
57
58function _select_notifs_base($table, $mail, $where)
59{
60 $cases = Array(
61 'contacts' => Array('wfield' => 'contact', 'ufield' => 'user_id', 'need_contact' => false,
62 'freq_sql' => '',
63 'contact_sql' => '1'
64 ),
65 'watch_promo' => Array('wfield' => 'promo', 'ufield' => 'promo', 'need_contact' => true,
66 'freq_sql' => ' AND ( wc.type = "basic" OR wc.type="near" AND (u.promo <= v.promo_sortie-2 AND u.promo_sortie >= v.promo+2) )',
67 'contact_sql' => 'NOT (c.contact IS NULL)'
68 ),
69 'watch_nonins' => Array('wfield' => 'ni_id', 'ufield' => 'user_id', 'need_contact' => false,
70 'freq_sql' => '',
71 'contact_sql' => '0'
72 )
73 );
74
75 $our = $cases[$table];
76 $sql = "
77 (
78 SELECT u.promo, u.prenom, IF(u.nom_usage='',u.nom,u.nom_usage) AS nom,
f879c351 79 u.deces != 0 AS dcd,
0337d704 80 a.alias AS bestalias,
81 wo.*,
82 {$our['contact_sql']} AS contact,
83 (u.perms IN('admin','user')) AS inscrit";
84 if ($mail) {
85 $sql.=",
86 w.uid AS aid, v.prenom AS aprenom, IF(v.nom_usage='',v.nom,v.nom_usage) AS anom,
a3a049fc 87 b.alias AS abestalias, (v.flags='femme') AS sexe, q.core_mail_fmt AS mail_fmt";
0337d704 88 }
89
90 $sql .= "
91 FROM $table AS w
92 INNER JOIN auth_user_md5 AS u ON(u.{$our['ufield']} = w.{$our['wfield']})
93 INNER JOIN auth_user_quick AS q ON(q.user_id = w.uid)
94 INNER JOIN auth_user_md5 AS v ON(v.user_id = q.user_id)";
95 if ($mail) {
96 $sql .="
97 INNER JOIN aliases AS b ON(b.id = q.user_id AND FIND_IN_SET('bestalias', b.flags))";
98 }
99 if ($our['need_contact']) {
100 $sql .="
101 LEFT JOIN contacts AS c ON(c.uid = w.uid AND c.contact = u.user_id)";
102 }
103
104 $sql .="
105 INNER JOIN watch_ops AS wo ON(wo.uid = u.user_id AND ".($mail ? 'wo.known > q.watch_last' : '( wo.known > {?} OR wo.date=NOW() )').")
106 INNER JOIN watch_sub AS ws ON(ws.cid = wo.cid AND ws.uid = w.uid)
107 INNER JOIN watch_cat AS wc ON(wc.id = wo.cid{$our['freq_sql']})
108 LEFT JOIN aliases AS a ON(a.id = u.user_id AND FIND_IN_SET('bestalias', a.flags))
109 WHERE $where
110 )";
111
112 return $sql;
113}
114
115// }}}
116// {{{ function select_notifs
117
118function select_notifs($mail, $uid=null, $last=null, $iterator=true)
119{
0337d704 120 $where = $mail ? 'q.watch_flags=3' : 'w.uid = {?}';
121 $sql = _select_notifs_base('contacts', $mail, $where.($mail?'':' AND (q.watch_flags=1 OR q.watch_flags=3)')) . " UNION DISTINCT ";
122 $sql .= _select_notifs_base('watch_promo', $mail, $where) . " UNION DISTINCT ";
123 $sql .= _select_notifs_base('watch_nonins', $mail, $where);
124
125 if ($iterator) {
08cce2ff 126 return XDB::iterator($sql . ' ORDER BY cid, promo, date DESC, nom', $last, $uid, $last, $uid, $last, $uid);
0337d704 127 } else {
08cce2ff 128 return XDB::query($sql, $last, $uid, $last, $uid, $last, $uid);
0337d704 129 }
130}
131
132// }}}
133// {{{ function getNbNotifs
134
135function getNbNotifs() {
cab08090 136 if (!S::has('uid')) {
0337d704 137 return 0;
138 }
cab08090 139 $uid = S::v('uid', -1);
140 $watchlast = S::v('watch_last');
0337d704 141
a3a049fc 142 // selectionne les notifs de uid, sans detail sur le watcher, depuis
a7de4ef7 143 // $watchlast, meme ceux sans surveillance, non ordonnés
0337d704 144 $res = select_notifs(false, $uid, $watchlast, false);
145 $n = $res->numRows();
146 $res->free();
7da8ef90 147 if ($n == 0) {
148 return;
149 }
150
a7de4ef7 151 return "<a href='carnet/panel'>$n événement".($n > 1 ? 's' : '')." !</a>";
0337d704 152}
153
154// }}}
155// {{{ class AllNotifs
156
157class AllNotifs {
158 var $_cats = Array();
159 var $_data = Array();
160
161 function AllNotifs() {
a3a049fc 162 $res = XDB::iterator("SELECT * FROM watch_cat");
163 while($tmp = $res->next()) {
0337d704 164 $this->_cats[$tmp['id']] = $tmp;
165 }
166
a7de4ef7 167 // recupère tous les watchers, avec détails des watchers, a partir du
168 // watch_last de chacun, seulement ceux qui sont surveillés, ordonnés
a3a049fc 169 $res = select_notifs(true);
0337d704 170
a3a049fc 171 while($tmp = $res->next()) {
172 $aid = $tmp['aid'];
0337d704 173 if (empty($this->_data[$aid])) {
174 $this->_data[$aid] = Array("prenom" => $tmp['aprenom'], 'nom' => $tmp['anom'],
f879c351 175 'bestalias'=>$tmp['abestalias'], 'sexe' => $tmp['sexe'], 'mail_fmt' => $tmp['mail_fmt'],
176 'dcd'=>$tmp['dcd']);
0337d704 177 }
a3a049fc 178 unset($tmp['aprenom'], $tmp['anom'], $tmp['abestalias'], $tmp['aid'], $tmp['sexe'], $tmp['mail_fmt'], $tmp['dcd']);
179 $this->_data[$aid]['data'][$tmp['cid']][] = $tmp;
180 }
0337d704 181 }
182}
183
184// }}}
185// {{{ class Notifs
186
187class Notifs {
188 var $_uid;
189 var $_cats = Array();
190 var $_data = Array();
a3a049fc 191
0337d704 192 function Notifs($uid, $up=false) {
a3a049fc 193 $this->_uid = $uid;
194
195 $res = XDB::iterator("SELECT * FROM watch_cat");
196 while($tmp = $res->next()) {
0337d704 197 $this->_cats[$tmp['id']] = $tmp;
198 }
199
b576bf60 200 $lastweek = date('YmdHis', time() - 7*24*60*60);
0337d704 201
a3a049fc 202 // recupere les notifs du watcher $uid, sans detail sur le watcher,
a7de4ef7 203 // depuis la semaine dernière, meme ceux sans surveillance, ordonnés
0337d704 204 $res = select_notifs(false, $uid, $lastweek);
a3a049fc 205 while($tmp = $res->next()) {
206 $this->_data[$tmp['cid']][$tmp['promo']][] = $tmp;
207 }
0337d704 208
a3a049fc 209 if($up) {
210 XDB::execute('UPDATE auth_user_quick SET watch_last=NOW() WHERE user_id={?}', $uid);
211 }
0337d704 212 }
213}
214
215// }}}
216// {{{ class Watch
217
218class Watch {
219 var $_uid;
220 var $_promos;
221 var $_nonins;
222 var $_cats = Array();
223 var $_subs;
224 var $watch_contacts;
225 var $watch_mail;
a3a049fc 226
0337d704 227 function Watch($uid) {
a3a049fc 228 $this->_uid = $uid;
229 $this->_promos = new PromoNotifs($uid);
230 $this->_nonins = new NoninsNotifs($uid);
231 $this->_subs = new WatchSub($uid);
232 $res = XDB::query("SELECT FIND_IN_SET('contacts',watch_flags),FIND_IN_SET('mail',watch_flags)
233 FROM auth_user_quick
234 WHERE user_id={?}", $uid);
235 list($this->watch_contacts,$this->watch_mail) = $res->fetchOneRow();
236
237 $res = XDB::iterator("SELECT * FROM watch_cat");
238 while($tmp = $res->next()) {
0337d704 239 $this->_cats[$tmp['id']] = $tmp;
240 }
241 }
242
243 function saveFlags() {
a3a049fc 244 $flags = "";
245 if ($this->watch_contacts)
246 $flags = "contacts";
247 if ($this->watch_mail)
248 $flags .= ($flags ? ',' : '')."mail";
249 XDB::execute('UPDATE auth_user_quick SET watch_flags={?} WHERE user_id={?}',
250 $flags, $this->_uid);
0337d704 251 }
252
253 function cats() {
a3a049fc 254 return $this->_cats;
0337d704 255 }
256
257 function subs($i) {
a3a049fc 258 return $this->_subs->_data[$i];
0337d704 259 }
a3a049fc 260
0337d704 261 function promos() {
a3a049fc 262 return $this->_promos->toRanges();
0337d704 263 }
a3a049fc 264
0337d704 265 function nonins() {
a3a049fc 266 return $this->_nonins->_data;
0337d704 267 }
268}
269
270// }}}
271// {{{ class WatchSub
272
273class WatchSub {
274 var $_uid;
275 var $_data = Array();
276
277 function WatchSub($uid) {
a3a049fc 278 $this->_uid = $uid;
279 $res = XDB::iterRow('SELECT cid FROM watch_sub WHERE uid={?}', $uid);
280 while(list($c) = $res->next()) {
0337d704 281 $this->_data[$c] = $c;
282 }
283 }
284
285 function update($ind) {
a3a049fc 286 $this->_data = Array();
287 XDB::execute('DELETE FROM watch_sub WHERE uid={?}', $this->_uid);
5e2307dc 288 foreach (Env::v($ind) as $key=>$val) {
a3a049fc 289 XDB::query('INSERT INTO watch_sub SELECT {?},id FROM watch_cat WHERE id={?}', $this->_uid, $key);
290 if(mysql_affected_rows()) {
0337d704 291 $this->_data[$key] = $key;
292 }
a3a049fc 293 }
0337d704 294 }
295}
296
297// }}}
298// {{{ class PromoNotifs
299
300class PromoNotifs {
301 var $_uid;
302 var $_data = Array();
303
304 function PromoNotifs($uid) {
a3a049fc 305 $this->_uid = $uid;
306 $res = XDB::iterRow('SELECT promo FROM watch_promo WHERE uid={?} ORDER BY promo', $uid);
307 while (list($p) = $res->next()) {
0337d704 308 $this->_data[intval($p)] = intval($p);
309 }
310 }
311
312 function add($p) {
a3a049fc 313 $promo = intval($p);
314 XDB::execute('REPLACE INTO watch_promo (uid,promo) VALUES({?},{?})', $this->_uid, $promo);
315 $this->_data[$promo] = $promo;
316 asort($this->_data);
0337d704 317 }
a3a049fc 318
0337d704 319 function del($p) {
a3a049fc 320 $promo = intval($p);
321 XDB::execute('DELETE FROM watch_promo WHERE uid={?} AND promo={?}', $this->_uid, $promo);
322 unset($this->_data[$promo]);
0337d704 323 }
a3a049fc 324
0337d704 325 function addRange($_p1,$_p2) {
a3a049fc 326 $p1 = intval($_p1);
327 $p2 = intval($_p2);
328 $values = Array();
329 for($i = min($p1,$p2); $i<=max($p1,$p2); $i++) {
330 $values[] = "('{$this->_uid}',$i)";
331 $this->_data[$i] = $i;
332 }
333 XDB::execute('REPLACE INTO watch_promo (uid,promo) VALUES '.join(',',$values));
334 asort($this->_data);
0337d704 335 }
336
337 function delRange($_p1,$_p2) {
a3a049fc 338 $p1 = intval($_p1);
339 $p2 = intval($_p2);
340 $where = Array();
341 for($i = min($p1,$p2); $i<=max($p1,$p2); $i++) {
342 $where[] = "promo=$i";
343 unset($this->_data[$i]);
344 }
345 XDB::execute('DELETE FROM watch_promo WHERE uid={?} AND ('.join(' OR ',$where).')', $this->_uid);
0337d704 346 }
347
348 function toRanges() {
a3a049fc 349 $ranges = Array();
350 $I = Array();
351 foreach($this->_data as $promo) {
352 if(!isset($I[0])) {
353 $I = Array($promo,$promo);
354 }
355 elseif($I[1]+1 == $promo) {
356 $I[1] ++;
357 }
358 else {
359 $ranges[] = $I;
360 $I = Array($promo,$promo);
361 }
362 }
363 if(isset($I[0])) $ranges[] = $I;
364 return $ranges;
0337d704 365 }
366}
367
368// }}}
369// {{{ class NoninsNotifs
370
371class NoninsNotifs {
372 var $_uid;
373 var $_data = Array();
374
375 function NoninsNotifs($uid) {
a3a049fc 376 $this->_uid = $uid;
377 $res = XDB::iterator("SELECT u.prenom,IF(u.nom_usage='',u.nom,u.nom_usage) AS nom, u.promo, u.user_id
0337d704 378 FROM watch_nonins AS w
379 INNER JOIN auth_user_md5 AS u ON (u.user_id = w.ni_id)
380 WHERE w.uid = {?}
a3a049fc 381 ORDER BY promo,nom", $uid);
382 while($tmp = $res->next()) {
0337d704 383 $this->_data[$tmp['user_id']] = $tmp;
384 }
385 }
386
387 function del($p) {
a3a049fc 388 unset($this->_data["$p"]);
389 XDB::execute('DELETE FROM watch_nonins WHERE uid={?} AND ni_id={?}', $this->_uid, $p);
0337d704 390 }
391
392 function add($p) {
a3a049fc 393 XDB::execute('INSERT INTO watch_nonins (uid,ni_id) VALUES({?},{?})', $this->_uid, $p);
394 $res = XDB::query('SELECT prenom,IF(nom_usage="",nom,nom_usage) AS nom,promo,user_id
0337d704 395 FROM auth_user_md5
396 WHERE user_id={?}', $p);
a3a049fc 397 $this->_data["$p"] = $res->fetchOneAssoc();
0337d704 398 }
399}
a3a049fc 400
0337d704 401// }}}
402
a7de4ef7 403// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 404?>