123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?php
- /* GNU FM -- a free network service for sharing your music listening habits
- Copyright (C) 2009 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/>.
- */
- require_once('database.php');
- require_once('user-menu.php');
- require_once('templating.php');
- require_once('data/User.php');
- require_once('data/RemoteUser.php');
- require_once('data/TagCloud.php');
- require_once('data/Server.php');
- if (!isset($_GET['user']) && $logged_in == false) {
- displayError("Error", "User not set. You shouldn't be here.");
- }
- try {
- if(strstr($_GET['user'], '@')) {
- $user = new RemoteUser($_GET['user']);
- } else {
- $user = new User($_GET['user']);
- }
- } catch (Exception $e) {
- $user = null;
- }
- if (isset($user->name)) {
- $smarty->assign('geo', Server::getLocationDetails($user->location_uri));
- try {
- $aUserScrobbles = $user->getScrobbles(10);
- $smarty->assign('scrobbles', $aUserScrobbles);
- } catch (Exception $e) {}
- try {
- $aUserNowPlaying = $user->getNowPlaying(10);
- $smarty->assign('nowplaying', $aUserNowPlaying);
- } catch (Exception $e) {}
- if ($user->hasLoved()) {
- $recommendedArtists = $user->getRecommended(10);
- $smarty->assign('recommendedArtists', $recommendedArtists);
- if($user->remote) {
- // Just get the 10 most recently loved artists from a remote user
- $lovedArtists = $user->getLovedArtists(10);
- $smarty->assign('lovedArtists', $lovedArtists);
- } else {
- $lovedArtists = TagCloud::generateTagCloud('loved', 'artist', 10, 'userid', $user->uniqueid);
- $smarty->assign('lovedArtists', $lovedArtists);
- }
- }
- $smarty->assign('isme', ($this_user->name == $user->name));
- $smarty->assign('me', $user);
- $smarty->assign('pagetitle', $user->name);
- $smarty->assign('awesomenumber', $user->uniqueid);
- $smarty->assign('extra_head_links', array(
- array(
- 'rel' => 'alternate',
- 'type' => 'application/rss+xml',
- 'title' => 'RSS 1.0 Feed (Recent plays)',
- 'href' => $base_url . '/rdf.php?fmt=rss&page=' . rawurlencode(str_replace($base_url, '', $user->getURL('recent-tracks')))
- ),
- array(
- 'rel' => 'alternate',
- 'type' => 'application/rss+xml',
- 'title' => 'RSS 1.0 Feed (Journal)',
- 'href' => $user->journal_rss
- ),
- array(
- 'rel' => 'meta',
- 'type' => 'application/rdf+xml',
- 'title' => 'FOAF',
- 'href' => $base_url . '/rdf.php?fmt=xml&page=' . rawurlencode(str_replace($base_url, '', $user->getURL()))
- )
- ));
- $neighbours = $user->getNeighbours(9);
- if (!empty($neighbours)) {
- $smarty->assign('neighbours', $neighbours);
- $smarty->assign('sideblocks', array('sidebar-neighbours.tpl'));
- }
- $submenu = user_menu($user, 'Overview');
- $smarty->assign('submenu', $submenu);
- $smarty->display('user-profile.tpl');
- } else {
- displayError("User not found", "User not found, shall I call in a missing persons report?");
- }
|