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