X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fnotifs.inc.php;h=0bcf6550e61a5bc1722a422a5cf3fffc34fdf4e2;hb=e0e77c5a55e92d873accf3fe735042eb8b088e34;hp=77dd99453339eaa00c94da1df6159044f19115e3;hpb=e15dcc03aed9dceb1f5c0fbf2d73a2a3aa8945c9;p=platal.git diff --git a/include/notifs.inc.php b/include/notifs.inc.php index 77dd994..0bcf655 100644 --- a/include/notifs.inc.php +++ b/include/notifs.inc.php @@ -1,6 +1,6 @@ Array('wfield' => 'contact', - 'ufield' => 'user_id', - 'freq_sql' => '', - 'where' => 'AND (q.watch_flags=1 OR q.watch_flags=3)' - ), - 'watch_promo' => Array('wfield' => 'promo', - 'ufield' => 'promo', - 'freq_sql' => ' AND ( wc.type = "basic" OR wc.type="near" - AND (u.promo <= v.promo_sortie-2 AND u.promo_sortie >= v.promo+2) )', - 'where' => '', - ), - 'watch_nonins' => Array('wfield' => 'ni_id', - 'ufield' => 'user_id', - 'freq_sql' => '', - 'where' => '', - ) - ); - $our = $cases[$table]; - $sql = " - ( - SELECT COUNT(1) AS count - FROM $table AS w - INNER JOIN auth_user_md5 AS u ON(u.{$our['ufield']} = w.{$our['wfield']}) - INNER JOIN auth_user_quick AS q ON(q.user_id = w.uid) - INNER JOIN auth_user_md5 AS v ON(v.user_id = q.user_id) - INNER JOIN watch_ops AS wo ON(wo.uid = u.user_id AND wo.known > q.watch_last) - INNER JOIN watch_sub AS ws ON(ws.cid = wo.cid AND ws.uid = w.uid) - INNER JOIN watch_cat AS wc ON(wc.id = wo.cid{$our['freq_sql']}) - WHERE w.uid = {?} {$our['where']} - )"; - return $sql; + require_once 'xorg.misc.inc.php'; + update_NbNotifs(); } // }}} @@ -103,11 +70,11 @@ function _select_notifs_base($table, $mail, $where) ), 'watch_promo' => Array('wfield' => 'promo', 'ufield' => 'promo', 'need_contact' => true, 'freq_sql' => ' AND ( wc.type = "basic" OR wc.type="near" AND (u.promo <= v.promo_sortie-2 AND u.promo_sortie >= v.promo+2) )', - 'contact_sql' => 'NOT (c.contact IS NULL)' + 'contact_sql' => 'IF(c.contact IS NULL, 0, 1)' ), - 'watch_nonins' => Array('wfield' => 'ni_id', 'ufield' => 'user_id', 'need_contact' => false, + 'watch_nonins' => Array('wfield' => 'ni_id', 'ufield' => 'user_id', 'need_contact' => true, 'freq_sql' => '', - 'contact_sql' => '0' + 'contact_sql' => 'IF(c.contact IS NULL, 0, 1)' ) ); @@ -115,7 +82,7 @@ function _select_notifs_base($table, $mail, $where) $sql = " ( SELECT u.promo, u.prenom, IF(u.nom_usage='',u.nom,u.nom_usage) AS nom, - u.deces != 0 AS dcd, + u.deces != 0 AS dcd, (u.flags = 'femme') AS sexe, a.alias AS bestalias, wo.*, {$our['contact_sql']} AS contact, @@ -123,7 +90,7 @@ function _select_notifs_base($table, $mail, $where) if ($mail) { $sql.=", w.uid AS aid, v.prenom AS aprenom, IF(v.nom_usage='',v.nom,v.nom_usage) AS anom, - b.alias AS abestalias, (v.flags='femme') AS sexe, q.core_mail_fmt AS mail_fmt"; + b.alias AS abestalias, (v.flags='femme') AS asexe, q.core_mail_fmt AS mail_fmt"; } $sql .= " @@ -169,29 +136,51 @@ function select_notifs($mail, $uid=null, $last=null, $iterator=true) } // }}} -// {{{ function getNbNotifs - -function getNbNotifs() -{ - if (!S::has('uid')) { - return 0; - } - $uid = S::i('uid'); - - // selectionne les notifs de uid, sans detail sur le watcher, depuis - // $watchlast, meme ceux sans surveillance, non ordonnés - $res = XDB::query(_select_notifs_count('contacts') . ' UNION DISTINCT ' - . _select_notifs_count('watch_promo') . ' UNION DISTINCT ' - . _select_notifs_count('watch_nonins'), $uid, $uid, $uid); - $n = array_sum($res->fetchColumn()); - if ($n == 0) { - return; +// {{{ + +global $prf_desc; +$prf_desc = array('nom' => 'Son patronyme', + 'freetext' => 'Le texte libre', + 'mobile' => 'Son numéro de téléphone portable', + 'nationalite' => 'Sa nationalité', + 'nick' => 'Son surnom', + 'web' => 'L\'adresse de son site web', + 'appli1' => 'Son école d\'application', + 'appli2' => 'Son école de post-application', + 'addresses' => 'Ses adresses', + 'section' => 'Sa section sportive', + 'binets' => 'La liste de ses binets', + 'medals' => 'Ses décorations', + 'cv' => 'Son Curriculum Vitae', + 'jobs' => 'Ses informations professionnelles', + 'photo' => 'Sa photographie'); + +function get_profile_change_details($event, $limit) { + global $prf_desc; + $res = XDB::iterRow("SELECT field + FROM watch_profile + WHERE uid = {?} AND ts > {?} + ORDER BY ts DESC", + $event['uid'], $limit); + if ($res->total() > 0) { + $data = array(); + while (list($field) = $res->next()) { + $data[] .= $prf_desc[$field]; + } + return ''; } - - return "$n événement".($n > 1 ? 's' : '')." !"; + return null; } // }}} +// {{{ function register_profile_update + +function register_profile_update($uid, $field) { + XDB::execute("REPLACE INTO watch_profile (uid, ts, field) + VALUES ({?}, NOW(), {?})", + $uid, $field); +} + // {{{ class AllNotifs class AllNotifs @@ -214,10 +203,10 @@ class AllNotifs $aid = $tmp['aid']; if (empty($this->_data[$aid])) { $this->_data[$aid] = Array("prenom" => $tmp['aprenom'], 'nom' => $tmp['anom'], - 'bestalias'=>$tmp['abestalias'], 'sexe' => $tmp['sexe'], 'mail_fmt' => $tmp['mail_fmt'], + 'bestalias'=>$tmp['abestalias'], 'sexe' => $tmp['asexe'], 'mail_fmt' => $tmp['mail_fmt'], 'dcd'=>$tmp['dcd']); } - unset($tmp['aprenom'], $tmp['anom'], $tmp['abestalias'], $tmp['aid'], $tmp['sexe'], $tmp['mail_fmt'], $tmp['dcd']); + unset($tmp['aprenom'], $tmp['anom'], $tmp['abestalias'], $tmp['aid'], $tmp['asexe'], $tmp['mail_fmt'], $tmp['dcd']); $this->_data[$aid]['data'][$tmp['cid']][] = $tmp; } } @@ -247,6 +236,9 @@ class Notifs // depuis la semaine dernière, meme ceux sans surveillance, ordonnés $res = select_notifs(false, $uid, $lastweek); while($tmp = $res->next()) { + if ($tmp['cid'] == WATCH_FICHE) { + $tmp['data'] = get_profile_change_details($tmp, $lastweek); + } $this->_data[$tmp['cid']][$tmp['promo']][] = $tmp; } @@ -276,8 +268,8 @@ class Watch $this->_nonins = new NoninsNotifs($uid); $this->_subs = new WatchSub($uid); $res = XDB::query("SELECT FIND_IN_SET('contacts',watch_flags),FIND_IN_SET('mail',watch_flags) - FROM auth_user_quick - WHERE user_id={?}", $uid); + FROM auth_user_quick + WHERE user_id={?}", $uid); list($this->watch_contacts,$this->watch_mail) = $res->fetchOneRow(); $res = XDB::iterator("SELECT * FROM watch_cat"); @@ -450,12 +442,12 @@ class NoninsNotifs public function del($p) { unset($this->_data["$p"]); - XDB::execute('DELETE FROM watch_nonins WHERE uid={?} AND ni_id={?}', $this->_uid, $p); + XDB::execute('DELETE FROM watch_nonins WHERE uid={?} AND ni_id={?}', $this->_uid, $p); } public function add($p) { - XDB::execute('INSERT INTO watch_nonins (uid,ni_id) VALUES({?},{?})', $this->_uid, $p); + XDB::execute('INSERT INTO watch_nonins (uid,ni_id) VALUES({?},{?})', $this->_uid, $p); $res = XDB::query('SELECT prenom,IF(nom_usage="",nom,nom_usage) AS nom,promo,user_id FROM auth_user_md5 WHERE user_id={?}', $p);