3 * Laconica - a distributed open-source microblogging tool
4 * Copyright (C) 2008, Controlez-Vous, 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('LACONICA')) { exit(1); }
22 define('LISTENER', 1);
23 define('LISTENEE', -1);
26 class FoafAction extends Action {
28 function handle($args) {
29 parent::handle($args);
31 $nickname = $this->trimmed('nickname');
33 $user = User::staticGet('nickname', $nickname);
36 common_user_error(_t('No such user'), 404);
40 $profile = $user->getProfile();
43 common_server_error(_t('User has no profile'), 500);
47 header('Content-Type: application/rdf+xml');
50 common_element_start('rdf:RDF', array('xmlns:rdf' =>
51 'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
53 'http://www.w3.org/2000/01/rdf-schema#',
55 'http://www.w3.org/2003/01/geo/wgs84_pos#',
56 'xmlns' => 'http://xmlns.com/foaf/0.1/'));
58 # This is the document about the user
60 $this->show_ppd('', $user->uri);
62 # XXX: might not be a person
63 common_element_start('Person', array('rdf:about' =>
65 common_element('mbox_sha1sum', NULL, sha1('mailto:' . $user->email));
66 if ($profile->fullname) {
67 common_element('name', NULL, $profile->fullname);
69 if ($profile->homepage) {
70 common_element('homepage', array('rdf:resource' => $profile->homepage));
73 common_element('rdfs:comment', NULL, $profile->bio);
75 # XXX: more structured location data
76 if ($profile->location) {
77 common_element_start('based_near');
78 common_element_start('geo:SpatialThing');
79 common_element('name', NULL, $profile->location);
80 common_element_end('geo:SpatialThing');
81 common_element_end('based_near');
84 $this->show_microblogging_account($profile, common_root_url());
86 $avatar = $profile->getOriginalAvatar();
89 common_element_start('img');
90 common_element_start('Image', array('rdf:about' => $avatar->url));
91 foreach (array(AVATAR_PROFILE_SIZE, AVATAR_STREAM_SIZE, AVATAR_MINI_SIZE) as $size) {
92 $scaled = $profile->getAvatar($size);
93 if (!$scaled->original) { # sometimes the original has one of our scaled sizes
94 common_element_start('thumbnail');
95 common_element('Image', array('rdf:about' => $scaled->url));
96 common_element_end('thumbnail');
99 common_element_end('Image');
100 common_element_end('img');
103 # Get people user is subscribed to
107 $sub = new Subscription();
108 $sub->subscriber = $profile->id;
111 while ($sub->fetch()) {
113 $other = Remote_profile::staticGet('id', $sub->subscribed);
115 $other = User::staticGet('id', $sub->subscribed);
118 common_debug('Got a bad subscription: '.print_r($sub,TRUE));
121 common_element('knows', array('rdf:resource' => $other->uri));
122 $person[$other->uri] = array(LISTENEE, $other);
126 # Get people who subscribe to user
128 $sub = new Subscription();
129 $sub->subscribed = $profile->id;
132 while ($sub->fetch()) {
134 $other = Remote_profile::staticGet('id', $sub->subscriber);
136 $other = User::staticGet('id', $sub->subscriber);
139 common_debug('Got a bad subscription: '.print_r($sub,TRUE));
142 if (array_key_exists($other->uri, $person)) {
143 $person[$other->uri][0] = BOTH;
145 $person[$other->uri] = array(LISTENER, $other);
150 common_element_end('Person');
152 foreach ($person as $uri => $p) {
154 if ($p[1] instanceof User) {
155 $foaf_url = common_local_url('foaf', array('nickname' => $p[1]->nickname));
157 $profile = Profile::staticGet($p[1]->id);
158 common_element_start('Person', array('rdf:about' => $uri));
159 if ($p[0] == LISTENER || $p[0] == BOTH) {
160 common_element('knows', array('rdf:resource' => $user->uri));
162 $this->show_microblogging_account($profile, ($p[1] instanceof User) ?
163 common_root_url() : NULL);
165 common_element('rdfs:seeAlso', array('rdf:resource' => $foaf_url));
167 common_element_end('Person');
169 $this->show_ppd($foaf_url, $uri);
173 common_element_end('rdf:RDF');
176 function show_ppd($foaf_url, $person_uri) {
177 common_element_start('PersonalProfileDocument', array('rdf:about' => $foaf_url));
178 common_element('maker', array('rdf:resource' => $person_uri));
179 common_element('primaryTopic', array('rdf:resource' => $person_uri));
180 common_element_end('PersonalProfileDocument');
183 function show_microblogging_account($profile, $service=NULL) {
185 common_element_start('holdsAccount');
186 common_element_start('OnlineAccount');
188 common_element('accountServiceHomepage', array('rdf:resource' =>
191 common_element('accountName', NULL, $profile->nickname);
192 common_element('homepage', array('rdf:resource' => $profile->profileurl));
193 common_element_end('OnlineAccount');
194 common_element_end('holdsAccount');