12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /* GNUkebox -- a free software server for recording your listening habits
- Copyright (C) 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');
- require_once('version.php');
- $adodb->SetFetchMode(ADODB_FETCH_ASSOC);
- try {
- $res = $adodb->CacheGetAll(300, 'select users.username, user_stats.scrobble_count from user_stats left join users on user_stats.userid=users.uniqueid order by user_stats.scrobble_count desc LIMIT 1000;');
- } catch (Exception $e) {
- die($e->getMessage());
- }
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <title>GNUkebox</title>
- </head>
- <body>
- <h2>Top users</h2>
- <ol>
- <?php
- $list = [];
- foreach ($res as $row) {
- $list []= '<li><a href=http://libre.fm/user/' . $row['username'] . '>' . $row['username'] . '</a>—' . $row['scrobble_count'] . '</li>';
- }
- echo implode('', $list);
- ?>
- </ol>
- <p>This server is powered by <a href="https://gitorious.org/foocorp/gnu-fm">GNU FM</a> version <?php echo $version; ?></p>
- </body>
- </html>
|