X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fstats.php;h=2304aaae8f59f55fb636954ebcc038cf09800915;hb=c52d86d1d876e6def108e1d458604cc9714c252d;hp=4887934f35645a62baa94a526600ace9a366fd36;hpb=0521940cb7b2b0ef71c52e009461666994d12662;p=platal.git diff --git a/modules/stats.php b/modules/stats.php index 4887934..2304aaa 100644 --- a/modules/stats.php +++ b/modules/stats.php @@ -1,6 +1,6 @@ $this->make_hook('graph_evo', AUTH_COOKIE), 'stats/promos' => $this->make_hook('promos', AUTH_COOKIE), + 'stats/profile' => $this->make_hook('profile', AUTH_COOKIE), 'stats/coupures' => $this->make_hook('coupures', AUTH_PUBLIC), ); @@ -60,17 +61,18 @@ class StatsModule extends PLModule function handler_graph_evo(&$page, $jours = 365) { - define('DUREEJOUR',24*3600); + define('DUREEJOUR', 24 * 3600); //recupere le nombre d'inscriptions par jour sur la plage concernée - $res = XDB::iterRow( - "SELECT IF( date_ins>DATE_SUB(NOW(),INTERVAL $jours DAY), - TO_DAYS(date_ins)-TO_DAYS(NOW()), - ".(-($jours+1)).") AS jour, - COUNT(user_id) AS nb - FROM auth_user_md5 - WHERE perms IN ('admin','user') - GROUP BY jour"); + $res = XDB::iterRow('SELECT IF(registration_date > DATE_SUB(NOW(), INTERVAL {?} DAY), + TO_DAYS(registration_date) - TO_DAYS(NOW()), + -{?}) AS jour, + COUNT(uid) AS nb + FROM accounts AS a + LEFT JOIN account_profiles AS ap ON(ap.uid = a.uid AND FIND_IN_SET(\'owner\', ap.flags)) + LEFT JOIN profiles AS p ON (ap.pid = p.pid) + WHERE state = \'active\' AND p.deathdate IS NULL + GROUP BY jour', (int)$jours, 1 + (int)$jours); //genere des donnees compatibles avec GNUPLOT $inscrits=''; @@ -125,14 +127,16 @@ EOF2; { if ($promo == 'all') { // date de départ - $depart = 1920; + $depart = 1930; //recupere le nombre d'inscriptions par jour sur la plage concernée - $res = XDB::iterRow( - "SELECT promo, SUM(perms IN ('admin', 'user')) / COUNT(*) * 100 - FROM auth_user_md5 - WHERE promo >= $depart AND deces = 0 - GROUP BY promo"); + $res = XDB::iterRow("SELECT pe.entry_year AS promo, SUM(state = 'active') / COUNT(*) * 100 + FROM accounts AS a + INNER JOIN account_profiles AS ap ON (ap.uid = a.uid AND FIND_IN_SET('owner', ap.perms)) + INNER JOIN profiles AS p ON (p.pid = ap.pid) + INNER JOIN profile_education AS pe ON (pe.uid = ap.pid AND FIND_IN_SET('primary', pe.flags)) + WHERE pe.entry_year >= {?} AND p.deathdate IS NULL + GROUP BY promo", $depart); //genere des donnees compatibles avec GNUPLOT $inscrits=''; @@ -164,7 +168,7 @@ set timefmt "%d/%m/%y" set xr [$depart:$fin] set yr [0:100] -set title "Nombre d'inscrits par promotion depuis $depart." +set title "Proportion d'inscrits par promotion depuis $depart, en %." plot "-" using 1:2 title 'inscrits' with boxes; {$inscrits} @@ -174,23 +178,25 @@ EOF2; } else { //nombre de jours sur le graph $jours = 365; - define('DUREEJOUR',24*3600); - $res = XDB::query("SELECT min(TO_DAYS(date_ins)-TO_DAYS(now())) - FROM auth_user_md5 - WHERE promo = {?} - AND perms IN ('admin', 'user')", - $promo); + define('DUREEJOUR', 24 * 3600); + + $res = XDB::query("SELECT MIN(TO_DAYS(a.registration_date) - TO_DAYS(NOW())) + FROM accounts AS a + INNER JOIN account_profiles AS ap ON (ap.uid = a.uid AND FIND_IN_SET('owner', ap.perms)) + INNER JOIN profile_education AS pe ON (pe.uid = ap.pid AND FIND_IN_SET('primary', pe.flags)) + WHERE pe.entry_year = {?} AND a.state = 'active'", (int)$promo); $jours = -$res->fetchOneCell(); //recupere le nombre d'inscriptions par jour sur la plage concernée - $res = XDB::iterRow( - "SELECT IF( date_ins>DATE_SUB(NOW(),INTERVAL $jours DAY), - TO_DAYS(date_ins)-TO_DAYS(NOW()), - ".(-($jours+1)).") AS jour, - COUNT(user_id) AS nb - FROM auth_user_md5 - WHERE promo = {?} AND perms IN ('admin','user') - GROUP BY jour", $promo); + $res = XDB::iterRow("SELECT IF(a.registration_date > DATE_SUB(NOW(), INTERVAL {?} DAY), + TO_DAYS(a.registration_date) - TO_DAYS(NOW()), + -{?}) AS jour, + COUNT(a.uid) AS nb + FROM accounts AS a + INNER JOIN account_profiles AS ap ON (ap.uid = a.uid AND FIND_IN_SET('owner', ap.perms)) + INNER JOIN profile_education AS pe ON (pe.uid = ap.pid AND FIND_IN_SET('primary', pe.flags)) + WHERE pe.entry_year = {?} AND a.state = 'active' + GROUP BY jour", (int)$jours, 1 + (int)$jours, (int)$promo); //genere des donnees compatibles avec GNUPLOT $inscrits=''; @@ -246,12 +252,13 @@ EOF2; { $page->changeTpl('stats/nb_by_promo.tpl'); - $res = XDB::iterRow( - "SELECT promo,COUNT(*) - FROM auth_user_md5 - WHERE promo > 1900 AND perms IN ('admin','user') - GROUP BY promo - ORDER BY promo"); + $res = XDB::iterRow('SELECT pe.entry_year AS promo, COUNT(*) + FROM accounts AS a + INNER JOIN account_profiles AS ap ON (ap.uid = a.uid AND FIND_IN_SET(\'owner\', ap.perms)) + INNER JOIN profile_education AS pe ON (pe.uid = ap.pid AND FIND_IN_SET(\'primary\', pe.flags)) + WHERE pe.entry_year >= 1900 AND a.state = \'active\' + GROUP BY promo + ORDER BY promo'); $max=0; $min=3000; while (list($p,$nb) = $res->next()) { @@ -295,6 +302,31 @@ EOF2; $page->assign('mxs', $res); } } + + function handler_profile(&$page, $period = 'overall') + { + $page->changeTpl('stats/profile.tpl'); + + $time = ''; + switch ($period) { + case 'week': case 'month': case 'year': + $time = ' AND e.stamp > DATE_SUB(CURDATE(), INTERVAL 1 ' . strtoupper($period) . ')'; + break; + } + $rows = XDB::fetchAllAssoc("SELECT p.pid AS profile, COUNT(*) AS count + FROM logger.events AS e + INNER JOIN logger.actions AS act ON (e.action = act.id) + INNER JOIN profiles AS p ON (p.hrpid = e.data) + WHERE act.text = 'view_profile' $time + GROUP BY e.data + ORDER BY count DESC + LIMIT 10"); + foreach ($rows as $key=>$row) { + $rows[$key]['profile'] = Profile::get($rows[$key]['profile']); + } + $page->assign('profiles', $rows); + $page->assign('period', $period); + } } // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: