| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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)) { | 
					
						
							|  |  |  |             $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) { | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											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)); | 
					
						
							|  |  |  |         $this->element('mbox_sha1sum', null, sha1('mailto:' . $this->user->email)); | 
					
						
							|  |  |  |         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
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-01-22 23:08:30 +00:00
										 |  |  |         // XXX: more structured location data
 | 
					
						
							|  |  |  |         if ($this->profile->location) { | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |             $this->elementStart('based_near'); | 
					
						
							|  |  |  |             $this->elementStart('geo:SpatialThing'); | 
					
						
							| 
									
										
										
										
											2009-01-22 23:08:30 +00:00
										 |  |  |             $this->element('name', null, $this->profile->location); | 
					
						
							| 
									
										
										
										
											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, | 
					
						
							|  |  |  |                                      common_root_url(), $this->user->uri, 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()) { | 
					
						
							|  |  |  |                 if ($sub->token) { | 
					
						
							|  |  |  |                     $other = Remote_profile::staticGet('id', $sub->subscriber); | 
					
						
							| 
									
										
										
										
											2009-09-01 09:19:10 -05:00
										 |  |  |                     $profile = Profile::staticGet('id', $sub->subscriber); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |                 } else { | 
					
						
							|  |  |  |                     $other = User::staticGet('id', $sub->subscriber); | 
					
						
							| 
									
										
										
										
											2009-09-01 09:19:10 -05:00
										 |  |  |                     $profile = Profile::staticGet('id', $sub->subscriber); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |                 } | 
					
						
							|  |  |  |                 if (!$other) { | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 if (array_key_exists($other->uri, $person)) { | 
					
						
							|  |  |  |                     $person[$other->uri][0] = BOTH; | 
					
						
							|  |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											2009-04-03 14:18:29 -04:00
										 |  |  |                     $person[$other->uri] = array(LISTENER, | 
					
						
							|  |  |  |                                                  $other->id, | 
					
						
							| 
									
										
										
										
											2009-09-01 09:19:10 -05:00
										 |  |  |                                                  $profile->nickname, | 
					
						
							| 
									
										
										
										
											2009-04-03 14:18:29 -04:00
										 |  |  |                                                  (empty($sub->token)) ? 'User' : 'Remote_profile'); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2009-04-03 14:18:29 -04:00
										 |  |  |                 $other->free(); | 
					
						
							|  |  |  |                 $other = null; | 
					
						
							|  |  |  |                 unset($other); | 
					
						
							| 
									
										
										
										
											2009-09-01 09:19:10 -05:00
										 |  |  |                 $profile->free(); | 
					
						
							|  |  |  |                 $profile = null; | 
					
						
							|  |  |  |                 unset($profile); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-03 14:18:29 -04:00
										 |  |  |         $sub->free(); | 
					
						
							|  |  |  |         $sub = null; | 
					
						
							|  |  |  |         unset($sub); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  |         foreach ($person as $uri => $p) { | 
					
						
							|  |  |  |             list($type, $id, $nickname, $cls) = $p; | 
					
						
							|  |  |  |             if ($type == BOTH) { | 
					
						
							|  |  |  |                 $this->element('knows', array('rdf:resource' => $uri)); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         $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; | 
					
						
							| 
									
										
										
										
											2009-04-03 14:18:29 -04:00
										 |  |  |             list($type, $id, $nickname, $cls) = $p; | 
					
						
							|  |  |  |             if ($cls == 'User') { | 
					
						
							|  |  |  |                 $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, | 
					
						
							|  |  |  |                                    ($cls == 'User') ? common_root_url() : null, | 
					
						
							|  |  |  |                                    $uri, | 
					
						
							|  |  |  |                                    true); | 
					
						
							| 
									
										
										
										
											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
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  |     function showMicrobloggingAccount($profile, $service=null, $useruri=null, $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
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |         $this->elementStart('holdsAccount'); | 
					
						
							| 
									
										
										
										
											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(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($isSubscriber) { | 
					
						
							|  |  |  |              $this->element('sioc:follows', array('rdf:resource'=>$this->user->uri . '#acct')); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             // Get people user is subscribed to
 | 
					
						
							|  |  |  |             $sub = new Subscription(); | 
					
						
							|  |  |  |             $sub->subscriber = $profile->id; | 
					
						
							|  |  |  |             $sub->whereAdd('subscriber != subscribed'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if ($sub->find()) { | 
					
						
							|  |  |  |                 while ($sub->fetch()) { | 
					
						
							|  |  |  |                     if (!empty($sub->token)) { | 
					
						
							|  |  |  |                         $other = Remote_profile::staticGet('id', $sub->subscribed); | 
					
						
							| 
									
										
										
										
											2009-09-01 09:19:10 -05:00
										 |  |  |                         $profile = Profile::staticGet('id', $sub->subscribed); | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  |                     } else { | 
					
						
							|  |  |  |                         $other = User::staticGet('id', $sub->subscribed); | 
					
						
							| 
									
										
										
										
											2009-09-01 09:19:10 -05:00
										 |  |  |                         $profile = Profile::staticGet('id', $sub->subscribed); | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  |                     } | 
					
						
							|  |  |  |                     if (empty($other)) { | 
					
						
							|  |  |  |                         common_debug('Got a bad subscription: '.print_r($sub,true)); | 
					
						
							|  |  |  |                         continue; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     $this->element('sioc:follows', array('rdf:resource' => $other->uri.'#acct')); | 
					
						
							|  |  |  |                     $person[$other->uri] = array(LISTENEE, | 
					
						
							|  |  |  |                                                  $other->id, | 
					
						
							| 
									
										
										
										
											2009-09-01 09:19:10 -05:00
										 |  |  |                                                  $profile->nickname, | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  |                                                  (empty($sub->token)) ? 'User' : 'Remote_profile'); | 
					
						
							|  |  |  |                     $other->free(); | 
					
						
							|  |  |  |                     $other = null; | 
					
						
							|  |  |  |                     unset($other); | 
					
						
							| 
									
										
										
										
											2009-09-01 09:19:10 -05:00
										 |  |  |                     $profile->free(); | 
					
						
							|  |  |  |                     $profile = null; | 
					
						
							|  |  |  |                     unset($profile); | 
					
						
							| 
									
										
										
										
											2009-06-12 17:24:18 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $sub->free(); | 
					
						
							|  |  |  |             $sub = null; | 
					
						
							|  |  |  |             unset($sub); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |         $this->elementEnd('OnlineAccount'); | 
					
						
							|  |  |  |         $this->elementEnd('holdsAccount'); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | } |