| 
									
										
										
										
											2008-06-10 08:11:32 -04:00
										 |  |  | <?php | 
					
						
							|  |  |  | /* | 
					
						
							| 
									
										
										
										
											2009-08-25 18:14:12 -04:00
										 |  |  |  * StatusNet - the distributed open-source microblogging tool | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * Copyright (C) 2008, 2009, StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2008-06-10 08:11:32 -04: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 10:41:36 -04:00
										 |  |  | if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } | 
					
						
							| 
									
										
										
										
											2008-06-10 08:11:32 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | define('LISTENER', 1); | 
					
						
							|  |  |  | define('LISTENEE', -1); | 
					
						
							|  |  |  | define('BOTH', 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-31 16:39:54 +01:00
										 |  |  | // @todo XXX: Documentation missing.
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:49:23 -05:00
										 |  |  | class FoafAction extends Action | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-04-13 15:49:26 -04:00
										 |  |  |     function isReadOnly($args) | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 23:08:30 +00:00
										 |  |  |     function prepare($args) | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-01-22 23:08:30 +00:00
										 |  |  |         parent::prepare($args); | 
					
						
							| 
									
										
										
										
											2009-04-03 14:00:52 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $nickname_arg = $this->arg('nickname'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (empty($nickname_arg)) { | 
					
						
							| 
									
										
										
										
											2011-01-31 16:39:54 +01:00
										 |  |  |             // TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
 | 
					
						
							| 
									
										
										
										
											2009-04-03 14:00:52 -04:00
										 |  |  |             $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 14:19:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 23:08:30 +00:00
										 |  |  |         $this->user = User::staticGet('nickname', $this->nickname); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 23:08:30 +00:00
										 |  |  |         if (!$this->user) { | 
					
						
							| 
									
										
										
										
											2011-01-31 16:39:54 +01:00
										 |  |  |             // TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a 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 14:19:07 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 23:08:30 +00:00
										 |  |  |         $this->profile = $this->user->getProfile(); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 23:08:30 +00:00
										 |  |  |         if (!$this->profile) { | 
					
						
							| 
									
										
										
										
											2011-01-31 16:39:54 +01:00
										 |  |  |             // TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
 | 
					
						
							| 
									
										
										
										
											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 14:19:07 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 23:08:30 +00:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function handle($args) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::handle($args); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05: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 14:19:07 -05: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 17:24:18 +00:00
										 |  |  |                                               'xmlns:bio' => | 
					
						
							|  |  |  |                                               'http://purl.org/vocab/bio/0.1/', | 
					
						
							|  |  |  |                                               'xmlns:sioc' => | 
					
						
							|  |  |  |                                               'http://rdfs.org/sioc/ns#', | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05: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 14:19:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 23:08:30 +00:00
										 |  |  |         $this->showPpd('', $this->user->uri); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00: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 10:09:16 -04: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 14:19:07 -05: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 14:19:07 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00: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 17:24:18 +00:00
										 |  |  |             $this->element('bio:olb', null, $this->profile->bio); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-01-31 16:39:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-19 12:00:25 -05:00
										 |  |  |         $location = $this->profile->getLocation(); | 
					
						
							|  |  |  |         if ($location) { | 
					
						
							|  |  |  |             $attr = array(); | 
					
						
							|  |  |  |             if ($location->getRdfURL()) { | 
					
						
							|  |  |  |                 $attr['rdf:about'] = $location->getRdfURL(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $location_name = $location->getName(); | 
					
						
							| 
									
										
										
										
											2011-01-31 16:39:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |             $this->elementStart('based_near'); | 
					
						
							| 
									
										
										
										
											2009-11-19 12:00:25 -05: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-29 17:53:31 -07:00
										 |  |  |                 $this->element('geo:long', null, $location->lon); | 
					
						
							| 
									
										
										
										
											2009-11-19 12:00:25 -05: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 14:19:07 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 23:08:30 +00:00
										 |  |  |         $avatar = $this->profile->getOriginalAvatar(); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05: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 14:19:07 -05: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 14:19:07 -05:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |             $this->elementEnd('Image'); | 
					
						
							|  |  |  |             $this->elementEnd('img'); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  |         $person = $this->showMicrobloggingAccount($this->profile, | 
					
						
							| 
									
										
										
										
											2010-06-10 11:42:58 -07:00
										 |  |  |                                      common_root_url(), $this->user->uri, | 
					
						
							|  |  |  |                                      /*$fetchSubscriptions*/true, | 
					
						
							|  |  |  |                                      /*$isSubscriber*/false); | 
					
						
							| 
									
										
										
										
											2009-04-03 14:18:29 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 23:08:30 +00:00
										 |  |  |         // Get people who subscribe to user
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $sub = new Subscription(); | 
					
						
							| 
									
										
										
										
											2009-01-22 23:08:30 +00:00
										 |  |  |         $sub->subscribed = $this->profile->id; | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         $sub->whereAdd('subscriber != subscribed'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($sub->find()) { | 
					
						
							|  |  |  |             while ($sub->fetch()) { | 
					
						
							| 
									
										
										
										
											2010-03-23 13:10:23 -07:00
										 |  |  |                 $profile = Profile::staticGet('id', $sub->subscriber); | 
					
						
							|  |  |  |                 if (empty($profile)) { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:44:28 -05:00
										 |  |  |                     common_debug('Got a bad subscription: '.print_r($sub,true)); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |                     continue; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2010-03-23 13:10:23 -07:00
										 |  |  |                 $user = $profile->getUser(); | 
					
						
							|  |  |  |                 $other_uri = $profile->getUri(); | 
					
						
							|  |  |  |                 if (array_key_exists($other_uri, $person)) { | 
					
						
							|  |  |  |                     $person[$other_uri][0] = BOTH; | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											2010-03-23 13:10:23 -07:00
										 |  |  |                     $person[$other_uri] = array(LISTENER, | 
					
						
							|  |  |  |                                                 $profile->id, | 
					
						
							|  |  |  |                                                 $profile->nickname, | 
					
						
							|  |  |  |                                                 $user ? 'local' : 'remote'); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2009-09-01 09:19:10 -05:00
										 |  |  |                 unset($profile); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-03 14:18:29 -04:00
										 |  |  |         unset($sub); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  |         foreach ($person as $uri => $p) { | 
					
						
							| 
									
										
										
										
											2010-03-23 13:10:23 -07:00
										 |  |  |             list($type, $id, $nickname, $local) = $p; | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  |             if ($type == BOTH) { | 
					
						
							|  |  |  |                 $this->element('knows', array('rdf:resource' => $uri)); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-01-31 16:39:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  |         $this->elementEnd('Agent'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |         foreach ($person as $uri => $p) { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:21:29 -05:00
										 |  |  |             $foaf_url = null; | 
					
						
							| 
									
										
										
										
											2010-03-23 13:10:23 -07:00
										 |  |  |             list($type, $id, $nickname, $local) = $p; | 
					
						
							|  |  |  |             if ($local == 'local') { | 
					
						
							| 
									
										
										
										
											2009-04-03 14:18:29 -04:00
										 |  |  |                 $foaf_url = common_local_url('foaf', array('nickname' => $nickname)); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-04-03 14:18:29 -04:00
										 |  |  |             $profile = Profile::staticGet($id); | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00: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 14:19:07 -05:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  |             $this->showMicrobloggingAccount($profile, | 
					
						
							| 
									
										
										
										
											2010-03-23 13:10:23 -07:00
										 |  |  |                                    ($local == 'local') ? common_root_url() : null, | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  |                                    $uri, | 
					
						
							| 
									
										
										
										
											2010-06-10 11:42:58 -07:00
										 |  |  |                                    /*$fetchSubscriptions*/false, | 
					
						
							|  |  |  |                                    /*$isSubscriber*/($type == LISTENER || $type == BOTH)); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             if ($foaf_url) { | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |                 $this->element('rdfs:seeAlso', array('rdf:resource' => $foaf_url)); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  |             $this->elementEnd('Agent'); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             if ($foaf_url) { | 
					
						
							| 
									
										
										
										
											2009-01-22 23:08:30 +00:00
										 |  |  |                 $this->showPpd($foaf_url, $uri); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-04-03 14:18:29 -04:00
										 |  |  |             $profile->free(); | 
					
						
							|  |  |  |             $profile = null; | 
					
						
							|  |  |  |             unset($profile); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05: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 14:19:07 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 23:08:30 +00:00
										 |  |  |     function showPpd($foaf_url, $person_uri) | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05: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 14:19:07 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-10 11:42:58 -07:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Output FOAF <account> bit for the given profile. | 
					
						
							| 
									
										
										
										
											2011-01-31 16:39:54 +01:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2010-06-10 11:42:58 -07:00
										 |  |  |      * @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. | 
					
						
							| 
									
										
										
										
											2011-01-31 16:39:54 +01:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2010-06-10 11:42:58 -07:00
										 |  |  |      * @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 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  |         $attr = array(); | 
					
						
							|  |  |  |         if ($useruri) { | 
					
						
							|  |  |  |             $attr['rdf:about'] = $useruri . '#acct'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-22 23:08:30 +00:00
										 |  |  |         // Their account
 | 
					
						
							| 
									
										
										
										
											2010-03-11 17:16:37 -05:00
										 |  |  |         $this->elementStart('account'); | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  |         $this->elementStart('OnlineAccount', $attr); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         if ($service) { | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |             $this->element('accountServiceHomepage', array('rdf:resource' => | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |                                                            $service)); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |         $this->element('accountName', null, $profile->nickname); | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00: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 11:42:58 -07:00
										 |  |  |         if ($fetchSubscriptions) { | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00: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 13:10:23 -07:00
										 |  |  |                     $profile = Profile::staticGet('id', $sub->subscribed); | 
					
						
							|  |  |  |                     if (empty($profile)) { | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  |                         common_debug('Got a bad subscription: '.print_r($sub,true)); | 
					
						
							|  |  |  |                         continue; | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2010-03-23 13:10:23 -07: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 09:19:10 -05:00
										 |  |  |                     unset($profile); | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             unset($sub); | 
					
						
							| 
									
										
										
										
											2010-06-10 11:42:58 -07: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 17:24:18 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |         $this->elementEnd('OnlineAccount'); | 
					
						
							| 
									
										
										
										
											2010-03-11 17:16:37 -05:00
										 |  |  |         $this->elementEnd('account'); | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return $person; | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-06-10 08:11:32 -04:00
										 |  |  | } |