3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2008, 2009, StatusNet, Inc.
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
22 define('LISTENER', 1);
23 define('LISTENEE', -1);
26 // @todo XXX: Documentation missing.
27 class FoafAction extends Action
29 function isReadOnly($args)
34 function prepare($args)
36 parent::prepare($args);
38 $nickname_arg = $this->arg('nickname');
40 if (empty($nickname_arg)) {
41 // TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
42 $this->clientError(_('No such user.'), 404);
46 $this->nickname = common_canonical_nickname($nickname_arg);
48 // Permanent redirect on non-canonical nickname
50 if ($nickname_arg != $this->nickname) {
51 common_redirect(common_local_url('foaf',
52 array('nickname' => $this->nickname)),
57 $this->user = User::staticGet('nickname', $this->nickname);
60 // TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
61 $this->clientError(_('No such user.'), 404);
65 $this->profile = $this->user->getProfile();
67 if (!$this->profile) {
68 // TRANS: Error message displayed when referring to a user without a profile.
69 $this->serverError(_('User has no profile.'), 500);
76 function handle($args)
78 parent::handle($args);
80 header('Content-Type: application/rdf+xml');
83 $this->elementStart('rdf:RDF', array('xmlns:rdf' =>
84 'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
86 'http://www.w3.org/2000/01/rdf-schema#',
88 'http://www.w3.org/2003/01/geo/wgs84_pos#',
90 'http://purl.org/vocab/bio/0.1/',
92 'http://rdfs.org/sioc/ns#',
93 'xmlns' => 'http://xmlns.com/foaf/0.1/'));
95 // This is the document about the user
97 $this->showPpd('', $this->user->uri);
99 // Would be nice to tell if they were a Person or not (e.g. a #person usertag?)
100 $this->elementStart('Agent', array('rdf:about' =>
102 if ($this->user->email) {
103 $this->element('mbox_sha1sum', null, sha1('mailto:' . $this->user->email));
105 if ($this->profile->fullname) {
106 $this->element('name', null, $this->profile->fullname);
108 if ($this->profile->homepage) {
109 $this->element('homepage', array('rdf:resource' => $this->profile->homepage));
111 if ($this->profile->profileurl) {
112 $this->element('weblog', array('rdf:resource' => $this->profile->profileurl));
114 if ($this->profile->bio) {
115 $this->element('bio:olb', null, $this->profile->bio);
118 $location = $this->profile->getLocation();
121 if ($location->getRdfURL()) {
122 $attr['rdf:about'] = $location->getRdfURL();
124 $location_name = $location->getName();
126 $this->elementStart('based_near');
127 $this->elementStart('geo:SpatialThing', $attr);
128 if ($location_name) {
129 $this->element('name', null, $location_name);
131 if ($location->lat) {
132 $this->element('geo:lat', null, $location->lat);
134 if ($location->lon) {
135 $this->element('geo:long', null, $location->lon);
137 if ($location->getURL()) {
138 $this->element('page', array('rdf:resource'=>$location->getURL()));
140 $this->elementEnd('geo:SpatialThing');
141 $this->elementEnd('based_near');
144 $avatar = $this->profile->getOriginalAvatar();
146 $this->elementStart('img');
147 $this->elementStart('Image', array('rdf:about' => $avatar->url));
148 foreach (array(AVATAR_PROFILE_SIZE, AVATAR_STREAM_SIZE, AVATAR_MINI_SIZE) as $size) {
149 $scaled = $this->profile->getAvatar($size);
150 if (!$scaled->original) { // sometimes the original has one of our scaled sizes
151 $this->elementStart('thumbnail');
152 $this->element('Image', array('rdf:about' => $scaled->url));
153 $this->elementEnd('thumbnail');
156 $this->elementEnd('Image');
157 $this->elementEnd('img');
160 $person = $this->showMicrobloggingAccount($this->profile,
161 common_root_url(), $this->user->uri,
162 /*$fetchSubscriptions*/true,
163 /*$isSubscriber*/false);
165 // Get people who subscribe to user
167 $sub = new Subscription();
168 $sub->subscribed = $this->profile->id;
169 $sub->whereAdd('subscriber != subscribed');
172 while ($sub->fetch()) {
173 $profile = Profile::staticGet('id', $sub->subscriber);
174 if (empty($profile)) {
175 common_debug('Got a bad subscription: '.print_r($sub,true));
178 $user = $profile->getUser();
179 $other_uri = $profile->getUri();
180 if (array_key_exists($other_uri, $person)) {
181 $person[$other_uri][0] = BOTH;
183 $person[$other_uri] = array(LISTENER,
186 $user ? 'local' : 'remote');
194 foreach ($person as $uri => $p) {
195 list($type, $id, $nickname, $local) = $p;
197 $this->element('knows', array('rdf:resource' => $uri));
201 $this->elementEnd('Agent');
204 foreach ($person as $uri => $p) {
206 list($type, $id, $nickname, $local) = $p;
207 if ($local == 'local') {
208 $foaf_url = common_local_url('foaf', array('nickname' => $nickname));
210 $profile = Profile::staticGet($id);
211 $this->elementStart('Agent', array('rdf:about' => $uri));
213 $this->element('knows', array('rdf:resource' => $this->user->uri));
215 $this->showMicrobloggingAccount($profile,
216 ($local == 'local') ? common_root_url() : null,
218 /*$fetchSubscriptions*/false,
219 /*$isSubscriber*/($type == LISTENER || $type == BOTH));
221 $this->element('rdfs:seeAlso', array('rdf:resource' => $foaf_url));
223 $this->elementEnd('Agent');
225 $this->showPpd($foaf_url, $uri);
232 $this->elementEnd('rdf:RDF');
236 function showPpd($foaf_url, $person_uri)
238 $this->elementStart('PersonalProfileDocument', array('rdf:about' => $foaf_url));
239 $this->element('maker', array('rdf:resource' => $person_uri));
240 $this->element('primaryTopic', array('rdf:resource' => $person_uri));
241 $this->elementEnd('PersonalProfileDocument');
245 * Output FOAF <account> bit for the given profile.
247 * @param Profile $profile
248 * @param mixed $service Root URL of this StatusNet instance for a local
249 * user, otherwise null.
250 * @param mixed $useruri URI string for the referenced profile..
251 * @param boolean $fetchSubscriptions Should we load and list all their subscriptions?
252 * @param boolean $isSubscriber if not fetching subs, we can still mark the user as following the current page.
254 * @return array if $fetchSubscribers is set, return a list of info on those
257 function showMicrobloggingAccount($profile, $service=null, $useruri=null, $fetchSubscriptions=false, $isSubscriber=false)
261 $attr['rdf:about'] = $useruri . '#acct';
265 $this->elementStart('account');
266 $this->elementStart('OnlineAccount', $attr);
268 $this->element('accountServiceHomepage', array('rdf:resource' =>
271 $this->element('accountName', null, $profile->nickname);
272 $this->element('accountProfilePage', array('rdf:resource' => $profile->profileurl));
274 $this->element('sioc:account_of', array('rdf:resource'=>$useruri));
279 if ($fetchSubscriptions) {
280 // Get people user is subscribed to
281 $sub = new Subscription();
282 $sub->subscriber = $profile->id;
283 $sub->whereAdd('subscriber != subscribed');
286 while ($sub->fetch()) {
287 $profile = Profile::staticGet('id', $sub->subscribed);
288 if (empty($profile)) {
289 common_debug('Got a bad subscription: '.print_r($sub,true));
292 $user = $profile->getUser();
293 $other_uri = $profile->getUri();
294 $this->element('sioc:follows', array('rdf:resource' => $other_uri.'#acct'));
295 $person[$other_uri] = array(LISTENEE,
298 $user ? 'local' : 'remote');
304 } else if ($isSubscriber) {
305 // Just declare that they follow the user whose FOAF we're showing.
306 $this->element('sioc:follows', array('rdf:resource' => $this->user->uri . '#acct'));
309 $this->elementEnd('OnlineAccount');
310 $this->elementEnd('account');