1
+ − 1
<?php
166
+ − 2
1
+ − 3
/*
+ − 4
* Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
801
eb8b23f11744
Two big commits in one day I know, but redid password storage to use HMAC-SHA1. Consolidated much AES processing to three core methods in session that should handle everything automagically. Installation works; upgrades should. Rebranded as 1.1.6.
Dan
diff
changeset
+ − 5
* Version 1.1.6 (Caoineag beta 1)
536
+ − 6
* Copyright (C) 2006-2008 Dan Fuhry
1
+ − 7
* stats.php - handles statistics for pages (disablable in the admin CP)
+ − 8
*
+ − 9
* ***** UNFINISHED *****
+ − 10
*
+ − 11
* This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
+ − 12
* as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
+ − 13
*
+ − 14
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
+ − 15
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
+ − 16
*/
+ − 17
+ − 18
function doStats( $page_id = false, $namespace = false )
+ − 19
{
+ − 20
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 21
if(getConfig('log_hits') == '1')
+ − 22
{
+ − 23
if(!$page_id || !$namespace)
+ − 24
{
322
+ − 25
$page_id = $paths->page_id;
1
+ − 26
$namespace = $paths->namespace;
+ − 27
}
61
+ − 28
if($namespace == 'Special' || $namespace == 'Admin')
+ − 29
{
+ − 30
return false;
+ − 31
}
1
+ − 32
static $stats_done = false;
+ − 33
static $stats_data = Array();
+ − 34
if(!$stats_done)
+ − 35
{
+ − 36
$q = $db->sql_query('INSERT INTO '.table_prefix.'hits (username,time,page_id,namespace) VALUES(\''.$db->escape($session->username).'\', '.time().', \''.$db->escape($page_id).'\', \''.$db->escape($namespace).'\')');
+ − 37
if(!$q)
+ − 38
{
+ − 39
echo $db->get_error();
+ − 40
return false;
+ − 41
}
+ − 42
$db->free_result();
+ − 43
$stats_done = true;
+ − 44
return true;
+ − 45
}
+ − 46
}
+ − 47
}
+ − 48
+ − 49
/**
+ − 50
* Fetch a list of the most-viewed pages
+ − 51
* @param int the number of pages to return, send -1 to get all pages (suicide for large sites)
+ − 52
* @return array key names are a string set to the page ID/namespace, and values are an int with the number of hits
+ − 53
*/
+ − 54
+ − 55
function stats_top_pages($num = 5)
+ − 56
{
+ − 57
global $db, $session, $paths, $template, $plugins; // Common objects
61
+ − 58
if(!is_int($num))
1
+ − 59
{
+ − 60
return false;
+ − 61
}
61
+ − 62
+ − 63
$data = array();
108
1c7f59df9474
Implemented some extra functionality for friends/foes in comments; fixed lack of table_prefix in stats.php line 63
Dan
diff
changeset
+ − 64
$q = $db->sql_query('SELECT COUNT(hit_id) AS num_hits, page_id, namespace FROM '.table_prefix.'hits GROUP BY page_id, namespace ORDER BY num_hits DESC LIMIT ' . $num . ';');
61
+ − 65
1012
+ − 66
while ( $row = $db->fetchrow($q) )
1
+ − 67
{
953
323c4cd1aa37
Made some more changes to the way namespaces are handled, for optimization purposes. This is a bit of a structural reorganization: $paths->pages is obsoleted in its entirety; calculating page existence and metadata is now the job of the Namespace_* backend class. There are many things in PageProcessor that should be reorganized, and page actions in general should really be rethought. This is probably the beginning of a long process that will be taking place over the course of the betas.
Dan
diff
changeset
+ − 68
$title = get_page_title_ns($row['page_id'], $row['namespace']);
61
+ − 69
$data[] = array(
953
323c4cd1aa37
Made some more changes to the way namespaces are handled, for optimization purposes. This is a bit of a structural reorganization: $paths->pages is obsoleted in its entirety; calculating page existence and metadata is now the job of the Namespace_* backend class. There are many things in PageProcessor that should be reorganized, and page actions in general should really be rethought. This is probably the beginning of a long process that will be taking place over the course of the betas.
Dan
diff
changeset
+ − 70
'page_urlname' => $paths->get_pathskey($row['page_id'], $row['namespace']),
61
+ − 71
'page_title' => $title,
+ − 72
'num_hits' => $row['num_hits']
+ − 73
);
1
+ − 74
}
61
+ − 75
+ − 76
return $data;
1
+ − 77
}
+ − 78
+ − 79
?>