author | Dan |
Sun, 20 Sep 2009 03:59:36 -0400 | |
changeset 1117 | 4d8ffe107a0d |
parent 1081 | 745200a9cc2a |
child 1227 | bdac73ed481e |
permissions | -rw-r--r-- |
1 | 1 |
<?php |
166
d53cc29308f4
Rebrand as 1.1.1; everything should now be bumped to "unstable" status
Dan
parents:
142
diff
changeset
|
2 |
|
1 | 3 |
/* |
4 |
* Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between |
|
1081
745200a9cc2a
Fixed some upgrade bugs; added support for choosing one's own date/time formats; rebrand as 1.1.7
Dan
parents:
1012
diff
changeset
|
5 |
* Copyright (C) 2006-2009 Dan Fuhry |
1 | 6 |
* stats.php - handles statistics for pages (disablable in the admin CP) |
7 |
* |
|
8 |
* ***** UNFINISHED ***** |
|
9 |
* |
|
10 |
* This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License |
|
11 |
* as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. |
|
12 |
* |
|
13 |
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied |
|
14 |
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. |
|
15 |
*/ |
|
16 |
||
17 |
function doStats( $page_id = false, $namespace = false ) |
|
18 |
{ |
|
19 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
20 |
if(getConfig('log_hits') == '1') |
|
21 |
{ |
|
22 |
if(!$page_id || !$namespace) |
|
23 |
{ |
|
322
5f1cd51bf1be
Many changes. Installer with PostgreSQL is broken badly and will be for some time.
Dan
parents:
166
diff
changeset
|
24 |
$page_id = $paths->page_id; |
1 | 25 |
$namespace = $paths->namespace; |
26 |
} |
|
61 | 27 |
if($namespace == 'Special' || $namespace == 'Admin') |
28 |
{ |
|
29 |
return false; |
|
30 |
} |
|
1 | 31 |
static $stats_done = false; |
32 |
static $stats_data = Array(); |
|
33 |
if(!$stats_done) |
|
34 |
{ |
|
35 |
$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).'\')'); |
|
36 |
if(!$q) |
|
37 |
{ |
|
38 |
echo $db->get_error(); |
|
39 |
return false; |
|
40 |
} |
|
41 |
$db->free_result(); |
|
42 |
$stats_done = true; |
|
43 |
return true; |
|
44 |
} |
|
45 |
} |
|
46 |
} |
|
47 |
||
48 |
/** |
|
49 |
* Fetch a list of the most-viewed pages |
|
50 |
* @param int the number of pages to return, send -1 to get all pages (suicide for large sites) |
|
51 |
* @return array key names are a string set to the page ID/namespace, and values are an int with the number of hits |
|
52 |
*/ |
|
53 |
||
54 |
function stats_top_pages($num = 5) |
|
55 |
{ |
|
56 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
61 | 57 |
if(!is_int($num)) |
1 | 58 |
{ |
59 |
return false; |
|
60 |
} |
|
61 | 61 |
|
62 |
$data = array(); |
|
108
1c7f59df9474
Implemented some extra functionality for friends/foes in comments; fixed lack of table_prefix in stats.php line 63
Dan
parents:
73
diff
changeset
|
63 |
$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 | 64 |
|
1012 | 65 |
while ( $row = $db->fetchrow($q) ) |
1 | 66 |
{ |
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
parents:
801
diff
changeset
|
67 |
$title = get_page_title_ns($row['page_id'], $row['namespace']); |
61 | 68 |
$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
parents:
801
diff
changeset
|
69 |
'page_urlname' => $paths->get_pathskey($row['page_id'], $row['namespace']), |
61 | 70 |
'page_title' => $title, |
71 |
'num_hits' => $row['num_hits'] |
|
72 |
); |
|
1 | 73 |
} |
61 | 74 |
|
75 |
return $data; |
|
1 | 76 |
} |
77 |
||
78 |
?> |