2008-06-10 13:11:32 +01:00
|
|
|
<?php
|
|
|
|
/*
|
2009-08-25 23:14:12 +01:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-25 23:12:20 +01:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-06-10 13:11:32 +01:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
|
2008-06-10 13:11:32 +01:00
|
|
|
|
|
|
|
define('LISTENER', 1);
|
|
|
|
define('LISTENEE', -1);
|
|
|
|
define('BOTH', 0);
|
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class FoafAction extends Action
|
|
|
|
{
|
2009-04-13 20:49:26 +01:00
|
|
|
function isReadOnly($args)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-01-22 23:08:30 +00:00
|
|
|
function prepare($args)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-22 23:08:30 +00:00
|
|
|
parent::prepare($args);
|
2009-04-03 19:00:52 +01:00
|
|
|
|
|
|
|
$nickname_arg = $this->arg('nickname');
|
|
|
|
|
|
|
|
if (empty($nickname_arg)) {
|
|
|
|
$this->clientError(_('No such user.'), 404);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->nickname = common_canonical_nickname($nickname_arg);
|
|
|
|
|
|
|
|
// Permanent redirect on non-canonical nickname
|
|
|
|
|
|
|
|
if ($nickname_arg != $this->nickname) {
|
|
|
|
common_redirect(common_local_url('foaf',
|
|
|
|
array('nickname' => $this->nickname)),
|
|
|
|
301);
|
|
|
|
return false;
|
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-22 23:08:30 +00:00
|
|
|
$this->user = User::staticGet('nickname', $this->nickname);
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-22 23:08:30 +00:00
|
|
|
if (!$this->user) {
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('No such user.'), 404);
|
2009-01-22 23:08:30 +00:00
|
|
|
return false;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-22 23:08:30 +00:00
|
|
|
$this->profile = $this->user->getProfile();
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-22 23:08:30 +00:00
|
|
|
if (!$this->profile) {
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->serverError(_('User has no profile.'), 500);
|
2009-01-22 23:08:30 +00:00
|
|
|
return false;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-22 23:08:30 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function handle($args)
|
|
|
|
{
|
|
|
|
parent::handle($args);
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
header('Content-Type: application/rdf+xml');
|
|
|
|
|
2009-01-22 23:08:30 +00:00
|
|
|
$this->startXML();
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('rdf:RDF', array('xmlns:rdf' =>
|
2008-12-23 19:19:07 +00:00
|
|
|
'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
|
|
|
|
'xmlns:rdfs' =>
|
|
|
|
'http://www.w3.org/2000/01/rdf-schema#',
|
|
|
|
'xmlns:geo' =>
|
|
|
|
'http://www.w3.org/2003/01/geo/wgs84_pos#',
|
2009-06-12 18:24:18 +01:00
|
|
|
'xmlns:bio' =>
|
|
|
|
'http://purl.org/vocab/bio/0.1/',
|
|
|
|
'xmlns:sioc' =>
|
|
|
|
'http://rdfs.org/sioc/ns#',
|
2008-12-23 19:19:07 +00:00
|
|
|
'xmlns' => 'http://xmlns.com/foaf/0.1/'));
|
|
|
|
|
2009-01-22 23:08:30 +00:00
|
|
|
// This is the document about the user
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-01-22 23:08:30 +00:00
|
|
|
$this->showPpd('', $this->user->uri);
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-06-12 18:24:18 +01:00
|
|
|
// Would be nice to tell if they were a Person or not (e.g. a #person usertag?)
|
|
|
|
$this->elementStart('Agent', array('rdf:about' =>
|
2009-01-22 23:08:30 +00:00
|
|
|
$this->user->uri));
|
2010-05-18 15:09:16 +01:00
|
|
|
if ($this->user->email) {
|
|
|
|
$this->element('mbox_sha1sum', null, sha1('mailto:' . $this->user->email));
|
|
|
|
}
|
2009-01-22 23:08:30 +00:00
|
|
|
if ($this->profile->fullname) {
|
|
|
|
$this->element('name', null, $this->profile->fullname);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-22 23:08:30 +00:00
|
|
|
if ($this->profile->homepage) {
|
|
|
|
$this->element('homepage', array('rdf:resource' => $this->profile->homepage));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-06-12 18:24:18 +01:00
|
|
|
if ($this->profile->profileurl) {
|
|
|
|
$this->element('weblog', array('rdf:resource' => $this->profile->profileurl));
|
|
|
|
}
|
2009-01-22 23:08:30 +00:00
|
|
|
if ($this->profile->bio) {
|
2009-06-12 18:24:18 +01:00
|
|
|
$this->element('bio:olb', null, $this->profile->bio);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-11-19 17:00:25 +00:00
|
|
|
|
|
|
|
$location = $this->profile->getLocation();
|
|
|
|
if ($location) {
|
|
|
|
$attr = array();
|
|
|
|
if ($location->getRdfURL()) {
|
|
|
|
$attr['rdf:about'] = $location->getRdfURL();
|
|
|
|
}
|
|
|
|
$location_name = $location->getName();
|
|
|
|
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('based_near');
|
2009-11-19 17:00:25 +00:00
|
|
|
$this->elementStart('geo:SpatialThing', $attr);
|
|
|
|
if ($location_name) {
|
|
|
|
$this->element('name', null, $location_name);
|
|
|
|
}
|
|
|
|
if ($location->lat) {
|
|
|
|
$this->element('geo:lat', null, $location->lat);
|
|
|
|
}
|
|
|
|
if ($location->lon) {
|
2010-03-30 01:53:31 +01:00
|
|
|
$this->element('geo:long', null, $location->lon);
|
2009-11-19 17:00:25 +00:00
|
|
|
}
|
|
|
|
if ($location->getURL()) {
|
|
|
|
$this->element('page', array('rdf:resource'=>$location->getURL()));
|
|
|
|
}
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('geo:SpatialThing');
|
|
|
|
$this->elementEnd('based_near');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-22 23:08:30 +00:00
|
|
|
$avatar = $this->profile->getOriginalAvatar();
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($avatar) {
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('img');
|
|
|
|
$this->elementStart('Image', array('rdf:about' => $avatar->url));
|
2008-12-23 19:19:07 +00:00
|
|
|
foreach (array(AVATAR_PROFILE_SIZE, AVATAR_STREAM_SIZE, AVATAR_MINI_SIZE) as $size) {
|
2009-01-22 23:08:30 +00:00
|
|
|
$scaled = $this->profile->getAvatar($size);
|
|
|
|
if (!$scaled->original) { // sometimes the original has one of our scaled sizes
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('thumbnail');
|
|
|
|
$this->element('Image', array('rdf:about' => $scaled->url));
|
|
|
|
$this->elementEnd('thumbnail');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('Image');
|
|
|
|
$this->elementEnd('img');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-06-12 18:24:18 +01:00
|
|
|
$person = $this->showMicrobloggingAccount($this->profile,
|
2010-06-10 19:42:58 +01:00
|
|
|
common_root_url(), $this->user->uri,
|
|
|
|
/*$fetchSubscriptions*/true,
|
|
|
|
/*$isSubscriber*/false);
|
2009-04-03 19:18:29 +01:00
|
|
|
|
2009-01-22 23:08:30 +00:00
|
|
|
// Get people who subscribe to user
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
$sub = new Subscription();
|
2009-01-22 23:08:30 +00:00
|
|
|
$sub->subscribed = $this->profile->id;
|
2008-12-23 19:19:07 +00:00
|
|
|
$sub->whereAdd('subscriber != subscribed');
|
|
|
|
|
|
|
|
if ($sub->find()) {
|
|
|
|
while ($sub->fetch()) {
|
2010-03-23 20:10:23 +00:00
|
|
|
$profile = Profile::staticGet('id', $sub->subscriber);
|
|
|
|
if (empty($profile)) {
|
2008-12-23 19:44:28 +00:00
|
|
|
common_debug('Got a bad subscription: '.print_r($sub,true));
|
2008-12-23 19:19:07 +00:00
|
|
|
continue;
|
|
|
|
}
|
2010-03-23 20:10:23 +00:00
|
|
|
$user = $profile->getUser();
|
|
|
|
$other_uri = $profile->getUri();
|
|
|
|
if (array_key_exists($other_uri, $person)) {
|
|
|
|
$person[$other_uri][0] = BOTH;
|
2008-12-23 19:19:07 +00:00
|
|
|
} else {
|
2010-03-23 20:10:23 +00:00
|
|
|
$person[$other_uri] = array(LISTENER,
|
|
|
|
$profile->id,
|
|
|
|
$profile->nickname,
|
|
|
|
$user ? 'local' : 'remote');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-09-01 15:19:10 +01:00
|
|
|
unset($profile);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-03 19:18:29 +01:00
|
|
|
unset($sub);
|
|
|
|
|
2009-06-12 18:24:18 +01:00
|
|
|
foreach ($person as $uri => $p) {
|
2010-03-23 20:10:23 +00:00
|
|
|
list($type, $id, $nickname, $local) = $p;
|
2009-06-12 18:24:18 +01:00
|
|
|
if ($type == BOTH) {
|
|
|
|
$this->element('knows', array('rdf:resource' => $uri));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->elementEnd('Agent');
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
|
|
|
|
foreach ($person as $uri => $p) {
|
2008-12-23 19:21:29 +00:00
|
|
|
$foaf_url = null;
|
2010-03-23 20:10:23 +00:00
|
|
|
list($type, $id, $nickname, $local) = $p;
|
|
|
|
if ($local == 'local') {
|
2009-04-03 19:18:29 +01:00
|
|
|
$foaf_url = common_local_url('foaf', array('nickname' => $nickname));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-04-03 19:18:29 +01:00
|
|
|
$profile = Profile::staticGet($id);
|
2009-06-12 18:24:18 +01:00
|
|
|
$this->elementStart('Agent', array('rdf:about' => $uri));
|
|
|
|
if ($type == BOTH) {
|
2009-01-22 23:08:30 +00:00
|
|
|
$this->element('knows', array('rdf:resource' => $this->user->uri));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-06-12 18:24:18 +01:00
|
|
|
$this->showMicrobloggingAccount($profile,
|
2010-03-23 20:10:23 +00:00
|
|
|
($local == 'local') ? common_root_url() : null,
|
2009-06-12 18:24:18 +01:00
|
|
|
$uri,
|
2010-06-10 19:42:58 +01:00
|
|
|
/*$fetchSubscriptions*/false,
|
|
|
|
/*$isSubscriber*/($type == LISTENER || $type == BOTH));
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($foaf_url) {
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->element('rdfs:seeAlso', array('rdf:resource' => $foaf_url));
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-06-12 18:24:18 +01:00
|
|
|
$this->elementEnd('Agent');
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($foaf_url) {
|
2009-01-22 23:08:30 +00:00
|
|
|
$this->showPpd($foaf_url, $uri);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-04-03 19:18:29 +01:00
|
|
|
$profile->free();
|
|
|
|
$profile = null;
|
|
|
|
unset($profile);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('rdf:RDF');
|
2009-01-22 23:08:30 +00:00
|
|
|
$this->endXML();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2009-01-22 23:08:30 +00:00
|
|
|
function showPpd($foaf_url, $person_uri)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('PersonalProfileDocument', array('rdf:about' => $foaf_url));
|
|
|
|
$this->element('maker', array('rdf:resource' => $person_uri));
|
|
|
|
$this->element('primaryTopic', array('rdf:resource' => $person_uri));
|
|
|
|
$this->elementEnd('PersonalProfileDocument');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2010-06-10 19:42:58 +01:00
|
|
|
/**
|
|
|
|
* Output FOAF <account> bit for the given profile.
|
|
|
|
*
|
|
|
|
* @param Profile $profile
|
|
|
|
* @param mixed $service Root URL of this StatusNet instance for a local
|
|
|
|
* user, otherwise null.
|
|
|
|
* @param mixed $useruri URI string for the referenced profile..
|
|
|
|
* @param boolean $fetchSubscriptions Should we load and list all their subscriptions?
|
|
|
|
* @param boolean $isSubscriber if not fetching subs, we can still mark the user as following the current page.
|
|
|
|
*
|
|
|
|
* @return array if $fetchSubscribers is set, return a list of info on those
|
|
|
|
* subscriptions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
function showMicrobloggingAccount($profile, $service=null, $useruri=null, $fetchSubscriptions=false, $isSubscriber=false)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-06-12 18:24:18 +01:00
|
|
|
$attr = array();
|
|
|
|
if ($useruri) {
|
|
|
|
$attr['rdf:about'] = $useruri . '#acct';
|
|
|
|
}
|
|
|
|
|
2009-01-22 23:08:30 +00:00
|
|
|
// Their account
|
2010-03-11 22:16:37 +00:00
|
|
|
$this->elementStart('account');
|
2009-06-12 18:24:18 +01:00
|
|
|
$this->elementStart('OnlineAccount', $attr);
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($service) {
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->element('accountServiceHomepage', array('rdf:resource' =>
|
2008-12-23 19:19:07 +00:00
|
|
|
$service));
|
|
|
|
}
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->element('accountName', null, $profile->nickname);
|
2009-06-12 18:24:18 +01:00
|
|
|
$this->element('accountProfilePage', array('rdf:resource' => $profile->profileurl));
|
|
|
|
if ($useruri) {
|
|
|
|
$this->element('sioc:account_of', array('rdf:resource'=>$useruri));
|
|
|
|
}
|
|
|
|
|
|
|
|
$person = array();
|
|
|
|
|
2010-06-10 19:42:58 +01:00
|
|
|
if ($fetchSubscriptions) {
|
2009-06-12 18:24:18 +01:00
|
|
|
// Get people user is subscribed to
|
|
|
|
$sub = new Subscription();
|
|
|
|
$sub->subscriber = $profile->id;
|
|
|
|
$sub->whereAdd('subscriber != subscribed');
|
|
|
|
|
|
|
|
if ($sub->find()) {
|
|
|
|
while ($sub->fetch()) {
|
2010-03-23 20:10:23 +00:00
|
|
|
$profile = Profile::staticGet('id', $sub->subscribed);
|
|
|
|
if (empty($profile)) {
|
2009-06-12 18:24:18 +01:00
|
|
|
common_debug('Got a bad subscription: '.print_r($sub,true));
|
|
|
|
continue;
|
|
|
|
}
|
2010-03-23 20:10:23 +00:00
|
|
|
$user = $profile->getUser();
|
|
|
|
$other_uri = $profile->getUri();
|
|
|
|
$this->element('sioc:follows', array('rdf:resource' => $other_uri.'#acct'));
|
|
|
|
$person[$other_uri] = array(LISTENEE,
|
|
|
|
$profile->id,
|
|
|
|
$profile->nickname,
|
|
|
|
$user ? 'local' : 'remote');
|
2009-09-01 15:19:10 +01:00
|
|
|
unset($profile);
|
2009-06-12 18:24:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unset($sub);
|
2010-06-10 19:42:58 +01:00
|
|
|
} else if ($isSubscriber) {
|
|
|
|
// Just declare that they follow the user whose FOAF we're showing.
|
|
|
|
$this->element('sioc:follows', array('rdf:resource' => $this->user->uri . '#acct'));
|
2009-06-12 18:24:18 +01:00
|
|
|
}
|
|
|
|
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('OnlineAccount');
|
2010-03-11 22:16:37 +00:00
|
|
|
$this->elementEnd('account');
|
2009-06-12 18:24:18 +01:00
|
|
|
|
|
|
|
return $person;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-06-10 13:11:32 +01:00
|
|
|
}
|