1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- /* GNUkebox -- a free software server for recording your listening habits
- Copyright (C) 2009, 2016 Free Software Foundation, Inc
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- header('Content-type: text/html; charset=utf-8');
- require_once('database.php');
- require_once('utils/human-time.php');
- require_once('temp-utils.php');
- ?>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
- "http://www.w3.org/TR/html4/strict.dtd">
- <html>
- <head>
- <title>Statistics</title>
- </head>
- <body>
- <h1><a href="/">GNUkebox</a> Statistics</h1>
- <p>Please note, results are cached for approximately 9 minutes.</p>
- <?php
- $adodb->SetFetchMode(ADODB_FETCH_ASSOC);
- $total = $adodb->CacheGetOne(500, 'SELECT SUM(scrobble_count) as total from User_Stats');
- if (!$total) {
- die('sql error');
- }
- echo '<p>' . stripslashes($total) . ' listens.</p>';
- $total = $adodb->CacheGetOne(500, 'SELECT COUNT(*) as total from Track');
- if (!$total) {
- die('sql error');
- }
- echo '<p>' . stripslashes($total) . ' unique tracks.</p>';
- $total = $adodb->CacheGetOne(500, 'SELECT COUNT(*) as total from Users');
- if (!$total) {
- die('sql error');
- }
- echo '<p>' . stripslashes($total) . ' users.</p>';
-
- $total = $adodb->CacheGetOne(500, 'SELECT COUNT(*) as total from User_Stats');
- if (!$total) {
- die('sql error');
- }
- echo '<p>' . stripslashes($total) . ' users active.</p>';
- ?>
- </body>
- </html>
|