Merge branch 'fusionax' of /home/git/platal into fusionax
[platal.git] / include / notifs.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2008 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 define('WATCH_FICHE', 1);
23 define('WATCH_INSCR', 2);
24 define('WATCH_DEATH', 3);
25 define('WATCH_BIRTH', 4);
26
27 // {{{ function inscription_notifs_base
28
29 function inscription_notifs_base($uid)
30 {
31 XDB::execute('REPLACE INTO watch_sub (uid,cid) SELECT {?},id FROM watch_cat', $uid);
32 }
33
34 // }}}
35 // {{{ function register_watch_op
36
37 function register_watch_op($uid, $cid, $date='', $info='')
38 {
39 if (empty($date)) {
40 $date = date('Y-m-d');
41 };
42 XDB::execute('REPLACE INTO watch_ops (uid,cid,known,date,info)
43 VALUES ({?}, {?}, NOW(), {?}, {?})',
44 $uid, $cid, $date, $info);
45 if($cid == WATCH_FICHE) {
46 if ($info) {
47 register_profile_update($uid, $info);
48 }
49 XDB::execute('UPDATE auth_user_md5 SET DATE=NOW() WHERE user_id={?}', $uid);
50 } elseif($cid == WATCH_INSCR) {
51 XDB::execute('REPLACE INTO contacts (uid,contact)
52 SELECT uid,ni_id
53 FROM watch_nonins
54 WHERE ni_id={?}', $uid);
55 XDB::execute('DELETE FROM watch_nonins WHERE ni_id={?}', $uid);
56 }
57 Platal::session()->updateNbNotifs();
58 }
59
60 // }}}
61 // {{{ function _select_notifs_base
62
63 function _select_notifs_base($table, $mail, $where)
64 {
65 $cases = Array(
66 'contacts' => Array('wfield' => 'contact', 'ufield' => 'user_id', 'need_contact' => false,
67 'freq_sql' => '',
68 'contact_sql' => '1'
69 ),
70 'watch_promo' => Array('wfield' => 'promo', 'ufield' => 'promo', 'need_contact' => true,
71 'freq_sql' => ' AND ( wc.type = "basic" OR wc.type="near" AND (u.promo <= v.promo_sortie-2 AND u.promo_sortie >= v.promo+2) )',
72 'contact_sql' => 'IF(c.contact IS NULL, 0, 1)'
73 ),
74 'watch_nonins' => Array('wfield' => 'ni_id', 'ufield' => 'user_id', 'need_contact' => true,
75 'freq_sql' => '',
76 'contact_sql' => 'IF(c.contact IS NULL, 0, 1)'
77 )
78 );
79
80 $our = $cases[$table];
81 $sql = "
82 (
83 SELECT u.promo, u.prenom, IF(u.nom_usage='',u.nom,u.nom_usage) AS nom,
84 u.deces != 0 AS dcd, (u.flags = 'femme') AS sexe,
85 a.alias AS bestalias,
86 wo.*,
87 {$our['contact_sql']} AS contact,
88 (u.perms IN('admin','user')) AS inscrit";
89 if ($mail) {
90 $sql.=",
91 w.uid AS aid, v.prenom AS aprenom, IF(v.nom_usage='',v.nom,v.nom_usage) AS anom,
92 b.alias AS abestalias, (v.flags='femme') AS asexe, q.core_mail_fmt AS mail_fmt";
93 }
94
95 $sql .= "
96 FROM $table AS w
97 INNER JOIN auth_user_md5 AS u ON(u.{$our['ufield']} = w.{$our['wfield']})
98 INNER JOIN auth_user_quick AS q ON(q.user_id = w.uid)
99 INNER JOIN auth_user_md5 AS v ON(v.user_id = q.user_id)";
100 if ($mail) {
101 $sql .="
102 INNER JOIN aliases AS b ON(b.id = q.user_id AND FIND_IN_SET('bestalias', b.flags))";
103 }
104 if ($our['need_contact']) {
105 $sql .="
106 LEFT JOIN contacts AS c ON(c.uid = w.uid AND c.contact = u.user_id)";
107 }
108
109 $sql .="
110 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() )').")
111 INNER JOIN watch_sub AS ws ON(ws.cid = wo.cid AND ws.uid = w.uid)
112 INNER JOIN watch_cat AS wc ON(wc.id = wo.cid{$our['freq_sql']})
113 LEFT JOIN aliases AS a ON(a.id = u.user_id AND FIND_IN_SET('bestalias', a.flags))
114 WHERE $where
115 )";
116
117 return $sql;
118 }
119
120 // }}}
121 // {{{ function select_notifs
122
123 function select_notifs($mail, $uid=null, $last=null, $iterator=true)
124 {
125 $where = $mail ? 'q.watch_flags=3' : 'w.uid = {?}';
126 $sql = _select_notifs_base('contacts', $mail, $where.($mail?'':' AND (q.watch_flags=1 OR q.watch_flags=3)')) . " UNION DISTINCT ";
127 $sql .= _select_notifs_base('watch_promo', $mail, $where) . " UNION DISTINCT ";
128 $sql .= _select_notifs_base('watch_nonins', $mail, $where);
129
130 if ($iterator) {
131 return XDB::iterator($sql . ' ORDER BY cid, promo, date DESC, nom', $last, $uid, $last, $uid, $last, $uid);
132 } else {
133 return XDB::query($sql, $last, $uid, $last, $uid, $last, $uid);
134 }
135 }
136
137 // }}}
138 // {{{
139
140 global $prf_desc;
141 $prf_desc = array('nom' => 'Son patronyme',
142 'freetext' => 'Le texte libre',
143 'mobile' => 'Son numéro de téléphone portable',
144 'nationalite' => 'Sa nationalité',
145 'nationalite2' => 'Sa seconde nationalité',
146 'nationalite3' => 'Sa troisième nationalité',
147 'nick' => 'Son surnom',
148 'networking' => 'La liste de ses adresses de networking',
149 'appli1' => 'Son école d\'application',
150 'appli2' => 'Son école de post-application',
151 'addresses' => 'Ses adresses',
152 'section' => 'Sa section sportive',
153 'binets' => 'La liste de ses binets',
154 'medals' => 'Ses décorations',
155 'cv' => 'Son Curriculum Vitae',
156 'jobs' => 'Ses informations professionnelles',
157 'photo' => 'Sa photographie');
158
159 function get_profile_change_details($event, $limit) {
160 global $prf_desc;
161 $res = XDB::iterRow("SELECT field
162 FROM watch_profile
163 WHERE uid = {?} AND ts > {?}
164 ORDER BY ts DESC",
165 $event['uid'], $limit);
166 if ($res->total() > 0) {
167 $data = array();
168 while (list($field) = $res->next()) {
169 $data[] .= $prf_desc[$field];
170 }
171 return '<ul><li>' . implode('</li><li>', $data) . '</li></ul>';
172 }
173 return null;
174 }
175
176 // }}}
177 // {{{ function register_profile_update
178
179 function register_profile_update($uid, $field) {
180 XDB::execute("REPLACE INTO watch_profile (uid, ts, field)
181 VALUES ({?}, NOW(), {?})",
182 $uid, $field);
183 }
184
185 // {{{ class AllNotifs
186
187 class AllNotifs
188 {
189 public $_cats = Array();
190 public $_data = Array();
191
192 public function __construct()
193 {
194 $res = XDB::iterator("SELECT * FROM watch_cat");
195 while($tmp = $res->next()) {
196 $this->_cats[$tmp['id']] = $tmp;
197 }
198
199 // recupère tous les watchers, avec détails des watchers, a partir du
200 // watch_last de chacun, seulement ceux qui sont surveillés, ordonnés
201 $res = select_notifs(true);
202
203 while($tmp = $res->next()) {
204 $aid = $tmp['aid'];
205 if (empty($this->_data[$aid])) {
206 $this->_data[$aid] = Array("prenom" => $tmp['aprenom'], 'nom' => $tmp['anom'],
207 'bestalias'=>$tmp['abestalias'], 'sexe' => $tmp['asexe'], 'mail_fmt' => $tmp['mail_fmt'],
208 'dcd'=>$tmp['dcd']);
209 }
210 unset($tmp['aprenom'], $tmp['anom'], $tmp['abestalias'], $tmp['aid'], $tmp['asexe'], $tmp['mail_fmt'], $tmp['dcd']);
211 $this->_data[$aid]['data'][$tmp['cid']][] = $tmp;
212 }
213 }
214 }
215
216 // }}}
217 // {{{ class Notifs
218
219 class Notifs
220 {
221 public $_uid;
222 public $_cats = Array();
223 public $_data = Array();
224
225 function __construct($uid, $up=false)
226 {
227 $this->_uid = $uid;
228
229 $res = XDB::iterator("SELECT * FROM watch_cat");
230 while($tmp = $res->next()) {
231 $this->_cats[$tmp['id']] = $tmp;
232 }
233
234 $lastweek = date('YmdHis', time() - 7*24*60*60);
235
236 // recupere les notifs du watcher $uid, sans detail sur le watcher,
237 // depuis la semaine dernière, meme ceux sans surveillance, ordonnés
238 $res = select_notifs(false, $uid, $lastweek);
239 while($tmp = $res->next()) {
240 if ($tmp['cid'] == WATCH_FICHE) {
241 $tmp['data'] = get_profile_change_details($tmp, $lastweek);
242 }
243 $this->_data[$tmp['cid']][$tmp['promo']][] = $tmp;
244 }
245
246 if($up) {
247 XDB::execute('UPDATE auth_user_quick SET watch_last=NOW() WHERE user_id={?}', $uid);
248 }
249 }
250 }
251
252 // }}}
253 // {{{ class Watch
254
255 class Watch
256 {
257 public $_uid;
258 public $_promos;
259 public $_nonins;
260 public $_cats = Array();
261 public $_subs;
262 public $watch_contacts;
263 public $watch_mail;
264
265 public function __construct($uid)
266 {
267 $this->_uid = $uid;
268 $this->_promos = new PromoNotifs($uid);
269 $this->_nonins = new NoninsNotifs($uid);
270 $this->_subs = new WatchSub($uid);
271 $res = XDB::query("SELECT FIND_IN_SET('contacts',watch_flags),FIND_IN_SET('mail',watch_flags)
272 FROM auth_user_quick
273 WHERE user_id={?}", $uid);
274 list($this->watch_contacts,$this->watch_mail) = $res->fetchOneRow();
275
276 $res = XDB::iterator("SELECT * FROM watch_cat");
277 while($tmp = $res->next()) {
278 $this->_cats[$tmp['id']] = $tmp;
279 }
280 }
281
282 public function saveFlags()
283 {
284 $flags = "";
285 if ($this->watch_contacts)
286 $flags = "contacts";
287 if ($this->watch_mail)
288 $flags .= ($flags ? ',' : '')."mail";
289 XDB::execute('UPDATE auth_user_quick SET watch_flags={?} WHERE user_id={?}',
290 $flags, $this->_uid);
291 }
292
293 public function cats()
294 {
295 return $this->_cats;
296 }
297
298 public function subs($i)
299 {
300 return $this->_subs->_data[$i];
301 }
302
303 public function promos()
304 {
305 return $this->_promos->toRanges();
306 }
307
308 public function nonins()
309 {
310 return $this->_nonins->_data;
311 }
312 }
313
314 // }}}
315 // {{{ class WatchSub
316
317 class WatchSub
318 {
319 public $_uid;
320 public $_data = Array();
321
322 public function __construct($uid)
323 {
324 $this->_uid = $uid;
325 $res = XDB::iterRow('SELECT cid FROM watch_sub WHERE uid={?}', $uid);
326 while(list($c) = $res->next()) {
327 $this->_data[$c] = $c;
328 }
329 }
330
331 public function update($ind)
332 {
333 $this->_data = Array();
334 XDB::execute('DELETE FROM watch_sub WHERE uid={?}', $this->_uid);
335 foreach (Env::v($ind) as $key=>$val) {
336 XDB::query('INSERT INTO watch_sub SELECT {?},id FROM watch_cat WHERE id={?}', $this->_uid, $key);
337 if(XDB::affectedRows()) {
338 $this->_data[$key] = $key;
339 }
340 }
341 }
342 }
343
344 // }}}
345 // {{{ class PromoNotifs
346
347 class PromoNotifs
348 {
349 public $_uid;
350 public $_data = Array();
351
352 public function __construct($uid)
353 {
354 $this->_uid = $uid;
355 $res = XDB::iterRow('SELECT promo FROM watch_promo WHERE uid={?} ORDER BY promo', $uid);
356 while (list($p) = $res->next()) {
357 $this->_data[intval($p)] = intval($p);
358 }
359 }
360
361 public function add($p)
362 {
363 $promo = intval($p);
364 XDB::execute('REPLACE INTO watch_promo (uid,promo) VALUES({?},{?})', $this->_uid, $promo);
365 $this->_data[$promo] = $promo;
366 asort($this->_data);
367 }
368
369 public function del($p)
370 {
371 $promo = intval($p);
372 XDB::execute('DELETE FROM watch_promo WHERE uid={?} AND promo={?}', $this->_uid, $promo);
373 unset($this->_data[$promo]);
374 }
375
376 public function addRange($_p1,$_p2)
377 {
378 $p1 = intval($_p1);
379 $p2 = intval($_p2);
380 $values = Array();
381 for($i = min($p1,$p2); $i<=max($p1,$p2); $i++) {
382 $values[] = "('{$this->_uid}',$i)";
383 $this->_data[$i] = $i;
384 }
385 XDB::execute('REPLACE INTO watch_promo (uid,promo) VALUES '.join(',',$values));
386 asort($this->_data);
387 }
388
389 public function delRange($_p1,$_p2)
390 {
391 $p1 = intval($_p1);
392 $p2 = intval($_p2);
393 $where = Array();
394 for($i = min($p1,$p2); $i<=max($p1,$p2); $i++) {
395 $where[] = "promo=$i";
396 unset($this->_data[$i]);
397 }
398 XDB::execute('DELETE FROM watch_promo WHERE uid={?} AND ('.join(' OR ',$where).')', $this->_uid);
399 }
400
401 public function toRanges()
402 {
403 $ranges = Array();
404 $I = Array();
405 foreach($this->_data as $promo) {
406 if(!isset($I[0])) {
407 $I = Array($promo,$promo);
408 }
409 elseif($I[1]+1 == $promo) {
410 $I[1] ++;
411 }
412 else {
413 $ranges[] = $I;
414 $I = Array($promo,$promo);
415 }
416 }
417 if(isset($I[0])) $ranges[] = $I;
418 return $ranges;
419 }
420 }
421
422 // }}}
423 // {{{ class NoninsNotifs
424
425 class NoninsNotifs
426 {
427 public $_uid;
428 public $_data = Array();
429
430 public function __construct($uid)
431 {
432 $this->_uid = $uid;
433 $res = XDB::iterator("SELECT u.prenom,IF(u.nom_usage='',u.nom,u.nom_usage) AS nom, u.promo, u.user_id
434 FROM watch_nonins AS w
435 INNER JOIN auth_user_md5 AS u ON (u.user_id = w.ni_id)
436 WHERE w.uid = {?}
437 ORDER BY promo,nom", $uid);
438 while($tmp = $res->next()) {
439 $this->_data[$tmp['user_id']] = $tmp;
440 }
441 }
442
443 public function del($p)
444 {
445 unset($this->_data["$p"]);
446 XDB::execute('DELETE FROM watch_nonins WHERE uid={?} AND ni_id={?}', $this->_uid, $p);
447 }
448
449 public function add($p)
450 {
451 XDB::execute('INSERT INTO watch_nonins (uid,ni_id) VALUES({?},{?})', $this->_uid, $p);
452 $res = XDB::query('SELECT prenom,IF(nom_usage="",nom,nom_usage) AS nom,promo,user_id
453 FROM auth_user_md5
454 WHERE user_id={?}', $p);
455 $this->_data["$p"] = $res->fetchOneAssoc();
456 }
457 }
458
459 // }}}
460
461 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
462 ?>