]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OStatus/classes/Ostatus_profile.php
fcef6eb701a3f0f0770faaee59b7546b64e18c05
[quix0rs-gnu-social.git] / plugins / OStatus / classes / Ostatus_profile.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2009-2010, StatusNet, Inc.
5  *
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.
10  *
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.
15  *
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/>.
18  */
19
20 if (!defined('STATUSNET')) {
21     exit(1);
22 }
23
24 /**
25  * @package OStatusPlugin
26  * @maintainer Brion Vibber <brion@status.net>
27  */
28 class Ostatus_profile extends Managed_DataObject
29 {
30     public $__table = 'ostatus_profile';
31
32     public $uri;
33
34     public $profile_id;
35     public $group_id;
36     public $peopletag_id;
37
38     public $feeduri;
39     public $salmonuri;
40     public $avatar; // remote URL of the last avatar we saved
41
42     public $created;
43     public $modified;
44
45     /**
46      * Return table definition for Schema setup and DB_DataObject usage.
47      *
48      * @return array array of column definitions
49      */
50     static function schemaDef()
51     {
52         return array(
53             'fields' => array(
54                 'uri' => array('type' => 'varchar', 'length' => 255, 'not null' => true),
55                 'profile_id' => array('type' => 'integer'),
56                 'group_id' => array('type' => 'integer'),
57                 'peopletag_id' => array('type' => 'integer'),
58                 'feeduri' => array('type' => 'varchar', 'length' => 255),
59                 'salmonuri' => array('type' => 'varchar', 'length' => 255),
60                 'avatar' => array('type' => 'text'),
61                 'created' => array('type' => 'datetime', 'not null' => true),
62                 'modified' => array('type' => 'datetime', 'not null' => true),
63             ),
64             'primary key' => array('uri'),
65             'unique keys' => array(
66                 'ostatus_profile_profile_id_idx' => array('profile_id'),
67                 'ostatus_profile_group_id_idx' => array('group_id'),
68                 'ostatus_profile_peopletag_id_idx' => array('peopletag_id'),
69                 'ostatus_profile_feeduri_idx' => array('feeduri'),
70             ),
71             'foreign keys' => array(
72                 'ostatus_profile_profile_id_fkey' => array('profile', array('profile_id' => 'id')),
73                 'ostatus_profile_group_id_fkey' => array('user_group', array('group_id' => 'id')),
74                 'ostatus_profile_peopletag_id_fkey' => array('profile_list', array('peopletag_id' => 'id')),
75             ),
76         );
77     }
78
79     /**
80      * Fetch the StatusNet-side profile for this feed
81      * @return Profile
82      */
83     public function localProfile()
84     {
85         if ($this->profile_id) {
86             return Profile::getKV('id', $this->profile_id);
87         }
88         return null;
89     }
90
91     /**
92      * Fetch the StatusNet-side profile for this feed
93      * @return Profile
94      */
95     public function localGroup()
96     {
97         if ($this->group_id) {
98             return User_group::getKV('id', $this->group_id);
99         }
100         return null;
101     }
102
103     /**
104      * Fetch the StatusNet-side peopletag for this feed
105      * @return Profile
106      */
107     public function localPeopletag()
108     {
109         if ($this->peopletag_id) {
110             return Profile_list::getKV('id', $this->peopletag_id);
111         }
112         return null;
113     }
114
115     /**
116      * Returns an ActivityObject describing this remote user or group profile.
117      * Can then be used to generate Atom chunks.
118      *
119      * @return ActivityObject
120      */
121     function asActivityObject()
122     {
123         if ($this->isGroup()) {
124             return ActivityObject::fromGroup($this->localGroup());
125         } else if ($this->isPeopletag()) {
126             return ActivityObject::fromPeopletag($this->localPeopletag());
127         } else {
128             return ActivityObject::fromProfile($this->localProfile());
129         }
130     }
131
132     /**
133      * Returns an XML string fragment with profile information as an
134      * Activity Streams noun object with the given element type.
135      *
136      * Assumes that 'activity' namespace has been previously defined.
137      *
138      * @todo FIXME: Replace with wrappers on asActivityObject when it's got everything.
139      *
140      * @param string $element one of 'actor', 'subject', 'object', 'target'
141      * @return string
142      */
143     function asActivityNoun($element)
144     {
145         if ($this->isGroup()) {
146             $noun = ActivityObject::fromGroup($this->localGroup());
147             return $noun->asString('activity:' . $element);
148         } else if ($this->isPeopletag()) {
149             $noun = ActivityObject::fromPeopletag($this->localPeopletag());
150             return $noun->asString('activity:' . $element);
151         } else {
152             $noun = ActivityObject::fromProfile($this->localProfile());
153             return $noun->asString('activity:' . $element);
154         }
155     }
156
157     /**
158      * @return boolean true if this is a remote group
159      */
160     function isGroup()
161     {
162         if ($this->profile_id || $this->peopletag_id && !$this->group_id) {
163             return false;
164         } else if ($this->group_id && !$this->profile_id && !$this->peopletag_id) {
165             return true;
166         } else if ($this->group_id && ($this->profile_id || $this->peopletag_id)) {
167             // TRANS: Server exception. %s is a URI
168             throw new ServerException(sprintf(_m('Invalid ostatus_profile state: Two or more IDs set for %s.'), $this->uri));
169         } else {
170             // TRANS: Server exception. %s is a URI
171             throw new ServerException(sprintf(_m('Invalid ostatus_profile state: All IDs empty for %s.'), $this->uri));
172         }
173     }
174
175     /**
176      * @return boolean true if this is a remote peopletag
177      */
178     function isPeopletag()
179     {
180         if ($this->profile_id || $this->group_id && !$this->peopletag_id) {
181             return false;
182         } else if ($this->peopletag_id && !$this->profile_id && !$this->group_id) {
183             return true;
184         } else if ($this->peopletag_id && ($this->profile_id || $this->group_id)) {
185             // TRANS: Server exception. %s is a URI
186             throw new ServerException(sprintf(_m('Invalid ostatus_profile state: Two or more IDs set for %s.'), $this->uri));
187         } else {
188             // TRANS: Server exception. %s is a URI
189             throw new ServerException(sprintf(_m('Invalid ostatus_profile state: All IDs empty for %s.'), $this->uri));
190         }
191     }
192
193     /**
194      * Send a subscription request to the hub for this feed.
195      * The hub will later send us a confirmation POST to /main/push/callback.
196      *
197      * @return bool true on success, false on failure
198      * @throws ServerException if feed state is not valid
199      */
200     public function subscribe()
201     {
202         $feedsub = FeedSub::ensureFeed($this->feeduri);
203         if ($feedsub->sub_state == 'active') {
204             // Active subscription, we don't need to do anything.
205             return true;
206         } else {
207             // Inactive or we got left in an inconsistent state.
208             // Run a subscription request to make sure we're current!
209             return $feedsub->subscribe();
210         }
211     }
212
213     /**
214      * Check if this remote profile has any active local subscriptions, and
215      * if not drop the PuSH subscription feed.
216      *
217      * @return bool true on success, false on failure
218      */
219     public function unsubscribe() {
220         $this->garbageCollect();
221     }
222
223     /**
224      * Check if this remote profile has any active local subscriptions, and
225      * if not drop the PuSH subscription feed.
226      *
227      * @return boolean
228      */
229     public function garbageCollect()
230     {
231         $feedsub = FeedSub::getKV('uri', $this->feeduri);
232         return $feedsub->garbageCollect();
233     }
234
235     /**
236      * Check if this remote profile has any active local subscriptions, so the
237      * PuSH subscription layer can decide if it can drop the feed.
238      *
239      * This gets called via the FeedSubSubscriberCount event when running
240      * FeedSub::garbageCollect().
241      *
242      * @return int
243      */
244     public function subscriberCount()
245     {
246         if ($this->isGroup()) {
247             $members = $this->localGroup()->getMembers(0, 1);
248             $count = $members->N;
249         } else if ($this->isPeopletag()) {
250             $subscribers = $this->localPeopletag()->getSubscribers(0, 1);
251             $count = $subscribers->N;
252         } else {
253             $profile = $this->localProfile();
254             $count = $profile->subscriberCount();
255             if ($profile->hasLocalTags()) {
256                 $count = 1;
257             }
258         }
259         common_log(LOG_INFO, __METHOD__ . " SUB COUNT BEFORE: $count");
260
261         // Other plugins may be piggybacking on OStatus without having
262         // an active group or user-to-user subscription we know about.
263         Event::handle('Ostatus_profileSubscriberCount', array($this, &$count));
264         common_log(LOG_INFO, __METHOD__ . " SUB COUNT AFTER: $count");
265
266         return $count;
267     }
268
269     /**
270      * Send an Activity Streams notification to the remote Salmon endpoint,
271      * if so configured.
272      *
273      * @param Profile $actor  Actor who did the activity
274      * @param string  $verb   Activity::SUBSCRIBE or Activity::JOIN
275      * @param Object  $object object of the action; must define asActivityNoun($tag)
276      */
277     public function notify($actor, $verb, $object=null, $target=null)
278     {
279         if (!($actor instanceof Profile)) {
280             $type = gettype($actor);
281             if ($type == 'object') {
282                 $type = get_class($actor);
283             }
284             // TRANS: Server exception.
285             // TRANS: %1$s is the method name the exception occured in, %2$s is the actor type.
286             throw new ServerException(sprintf(_m('Invalid actor passed to %1$s: %2$s.'),__METHOD__,$type));
287         }
288         if ($object == null) {
289             $object = $this;
290         }
291         if ($this->salmonuri) {
292             $text = 'update';
293             $id = TagURI::mint('%s:%s:%s',
294                                $verb,
295                                $actor->getURI(),
296                                common_date_iso8601(time()));
297
298             // @todo FIXME: Consolidate all these NS settings somewhere.
299             $attributes = array('xmlns' => Activity::ATOM,
300                                 'xmlns:activity' => 'http://activitystrea.ms/spec/1.0/',
301                                 'xmlns:thr' => 'http://purl.org/syndication/thread/1.0',
302                                 'xmlns:georss' => 'http://www.georss.org/georss',
303                                 'xmlns:ostatus' => 'http://ostatus.org/schema/1.0',
304                                 'xmlns:poco' => 'http://portablecontacts.net/spec/1.0',
305                                 'xmlns:media' => 'http://purl.org/syndication/atommedia');
306
307             $entry = new XMLStringer();
308             $entry->elementStart('entry', $attributes);
309             $entry->element('id', null, $id);
310             $entry->element('title', null, $text);
311             $entry->element('summary', null, $text);
312             $entry->element('published', null, common_date_w3dtf(common_sql_now()));
313
314             $entry->element('activity:verb', null, $verb);
315             $entry->raw($actor->asAtomAuthor());
316             $entry->raw($actor->asActivityActor());
317             $entry->raw($object->asActivityNoun('object'));
318             if ($target != null) {
319                 $entry->raw($target->asActivityNoun('target'));
320             }
321             $entry->elementEnd('entry');
322
323             $xml = $entry->getString();
324             common_log(LOG_INFO, "Posting to Salmon endpoint $this->salmonuri: $xml");
325
326             $salmon = new Salmon(); // ?
327             return $salmon->post($this->salmonuri, $xml, $actor);
328         }
329         return false;
330     }
331
332     /**
333      * Send a Salmon notification ping immediately, and confirm that we got
334      * an acceptable response from the remote site.
335      *
336      * @param mixed $entry XML string, Notice, or Activity
337      * @param Profile $actor
338      * @return boolean success
339      */
340     public function notifyActivity($entry, $actor)
341     {
342         if ($this->salmonuri) {
343             $salmon = new Salmon();
344             return $salmon->post($this->salmonuri, $this->notifyPrepXml($entry), $actor);
345         }
346
347         return false;
348     }
349
350     /**
351      * Queue a Salmon notification for later. If queues are disabled we'll
352      * send immediately but won't get the return value.
353      *
354      * @param mixed $entry XML string, Notice, or Activity
355      * @return boolean success
356      */
357     public function notifyDeferred($entry, $actor)
358     {
359         if ($this->salmonuri) {
360             $data = array('salmonuri' => $this->salmonuri,
361                           'entry' => $this->notifyPrepXml($entry),
362                           'actor' => $actor->id);
363
364             $qm = QueueManager::get();
365             return $qm->enqueue($data, 'salmon');
366         }
367
368         return false;
369     }
370
371     protected function notifyPrepXml($entry)
372     {
373         $preamble = '<?xml version="1.0" encoding="UTF-8" ?' . '>';
374         if (is_string($entry)) {
375             return $entry;
376         } else if ($entry instanceof Activity) {
377             return $preamble . $entry->asString(true);
378         } else if ($entry instanceof Notice) {
379             return $preamble . $entry->asAtomEntry(true, true);
380         } else {
381             // TRANS: Server exception.
382             throw new ServerException(_m('Invalid type passed to Ostatus_profile::notify. It must be XML string or Activity entry.'));
383         }
384     }
385
386     function getBestName()
387     {
388         if ($this->isGroup()) {
389             return $this->localGroup()->getBestName();
390         } else if ($this->isPeopletag()) {
391             return $this->localPeopletag()->getBestName();
392         } else {
393             return $this->localProfile()->getBestName();
394         }
395     }
396
397     /**
398      * Read and post notices for updates from the feed.
399      * Currently assumes that all items in the feed are new,
400      * coming from a PuSH hub.
401      *
402      * @param DOMDocument $doc
403      * @param string $source identifier ("push")
404      */
405     public function processFeed(DOMDocument $doc, $source)
406     {
407         $feed = $doc->documentElement;
408
409         if ($feed->localName == 'feed' && $feed->namespaceURI == Activity::ATOM) {
410             $this->processAtomFeed($feed, $source);
411         } else if ($feed->localName == 'rss') { // @todo FIXME: Check namespace.
412             $this->processRssFeed($feed, $source);
413         } else {
414             // TRANS: Exception.
415             throw new Exception(_m('Unknown feed format.'));
416         }
417     }
418
419     public function processAtomFeed(DOMElement $feed, $source)
420     {
421         $entries = $feed->getElementsByTagNameNS(Activity::ATOM, 'entry');
422         if ($entries->length == 0) {
423             common_log(LOG_ERR, __METHOD__ . ": no entries in feed update, ignoring");
424             return;
425         }
426
427         for ($i = 0; $i < $entries->length; $i++) {
428             $entry = $entries->item($i);
429             $this->processEntry($entry, $feed, $source);
430         }
431     }
432
433     public function processRssFeed(DOMElement $rss, $source)
434     {
435         $channels = $rss->getElementsByTagName('channel');
436
437         if ($channels->length == 0) {
438             // TRANS: Exception.
439             throw new Exception(_m('RSS feed without a channel.'));
440         } else if ($channels->length > 1) {
441             common_log(LOG_WARNING, __METHOD__ . ": more than one channel in an RSS feed");
442         }
443
444         $channel = $channels->item(0);
445
446         $items = $channel->getElementsByTagName('item');
447
448         for ($i = 0; $i < $items->length; $i++) {
449             $item = $items->item($i);
450             $this->processEntry($item, $channel, $source);
451         }
452     }
453
454     /**
455      * Process a posted entry from this feed source.
456      *
457      * @param DOMElement $entry
458      * @param DOMElement $feed for context
459      * @param string $source identifier ("push" or "salmon")
460      *
461      * @return Notice Notice representing the new (or existing) activity
462      */
463     public function processEntry($entry, $feed, $source)
464     {
465         $activity = new Activity($entry, $feed);
466         return $this->processActivity($activity, $source);
467     }
468
469     // TODO: Make this throw an exception
470     public function processActivity($activity, $source)
471     {
472         $notice = null;
473
474         // The "WithProfile" events were added later.
475
476         if (Event::handle('StartHandleFeedEntryWithProfile', array($activity, $this, &$notice)) &&
477             Event::handle('StartHandleFeedEntry', array($activity))) {
478
479             switch ($activity->verb) {
480             case ActivityVerb::POST:
481                 // @todo process all activity objects
482                 switch ($activity->objects[0]->type) {
483                 case ActivityObject::ARTICLE:
484                 case ActivityObject::BLOGENTRY:
485                 case ActivityObject::NOTE:
486                 case ActivityObject::STATUS:
487                 case ActivityObject::COMMENT:
488                 case null:
489                     $notice = $this->processPost($activity, $source);
490                     break;
491                 default:
492                     // TRANS: Client exception.
493                     throw new ClientException(_m('Cannot handle that kind of post.'));
494                 }
495                 break;
496             case ActivityVerb::SHARE:
497                 $notice = $this->processShare($activity, $source);
498                 break;
499             default:
500                 common_log(LOG_INFO, "Ignoring activity with unrecognized verb $activity->verb");
501             }
502
503             Event::handle('EndHandleFeedEntry', array($activity));
504             Event::handle('EndHandleFeedEntryWithProfile', array($activity, $this, $notice));
505         }
506
507         return $notice;
508     }
509
510     public function processShare($activity, $method)
511     {
512         $notice = null;
513
514         $oprofile = $this->checkAuthorship($activity);
515
516         if (empty($oprofile)) {
517             common_log(LOG_INFO, "No author matched share activity");
518             return null;
519         }
520
521         // The id URI will be used as a unique identifier for the notice,
522         // protecting against duplicate saves. It isn't required to be a URL;
523         // tag: URIs for instance are found in Google Buzz feeds.
524         $dupe = Notice::getKV('uri', $activity->id);
525         if ($dupe instanceof Notice) {
526             common_log(LOG_INFO, "OStatus: ignoring duplicate post: {$activity->id}");
527             return $dupe;
528         }
529
530         if (count($activity->objects) != 1) {
531             // TRANS: Client exception thrown when trying to share multiple activities at once.
532             throw new ClientException(_m('Can only handle share activities with exactly one object.'));
533         }
534
535         $shared = $activity->objects[0];
536
537         if (!($shared instanceof Activity)) {
538             // TRANS: Client exception thrown when trying to share a non-activity object.
539             throw new ClientException(_m('Can only handle shared activities.'));
540         }
541
542         $sharedId = $shared->id;
543         if (!empty($shared->objects[0]->id)) {
544             // Because StatusNet since commit 8cc4660 sets $shared->id to a TagURI which
545             // fucks up federation, because the URI is no longer recognised by the origin.
546             // ...but it might still be empty (not present) because $shared->id is set.
547             $sharedId = $shared->objects[0]->id;
548         }
549         if (empty($sharedId)) {
550             throw new ClientException(_m('Shared activity does not have an id'));
551         }
552
553         // First check if we have the shared activity. This has to be done first, because
554         // we can't use these functions to "ensureActivityObjectProfile" of a local user,
555         // who might be the creator of the shared activity in question.
556         $sharedNotice = Notice::getKV('uri', $sharedId);
557         if (!($sharedNotice instanceof Notice)) {
558             // If no local notice is found, process it!
559             // TODO: Remember to check Deleted_notice!
560             $other = Ostatus_profile::ensureActivityObjectProfile($shared->actor);
561             $sharedNotice = $other->processActivity($shared, $method);
562         }
563
564         if (!($sharedNotice instanceof Notice)) {
565             // And if we apparently can't get the shared notice, we'll abort the whole thing.
566             // TRANS: Client exception thrown when saving an activity share fails.
567             // TRANS: %s is a share ID.
568             throw new ClientException(sprintf(_m('Failed to save activity %s.'), $sharedId));
569         }
570
571         // We'll want to save a web link to the original notice, if provided.
572
573         $sourceUrl = null;
574         if ($activity->link) {
575             $sourceUrl = $activity->link;
576         } else if ($activity->link) {
577             $sourceUrl = $activity->link;
578         } else if (preg_match('!^https?://!', $activity->id)) {
579             $sourceUrl = $activity->id;
580         }
581
582         // Use summary as fallback for content
583
584         if (!empty($activity->content)) {
585             $sourceContent = $activity->content;
586         } else if (!empty($activity->summary)) {
587             $sourceContent = $activity->summary;
588         } else if (!empty($activity->title)) {
589             $sourceContent = $activity->title;
590         } else {
591             // @todo FIXME: Fetch from $sourceUrl?
592             // TRANS: Client exception. %s is a source URI.
593             throw new ClientException(sprintf(_m('No content for notice %s.'), $activity->id));
594         }
595
596         // Get (safe!) HTML and text versions of the content
597
598         $rendered = $this->purify($sourceContent);
599         $content = html_entity_decode(strip_tags($rendered), ENT_QUOTES, 'UTF-8');
600
601         $shortened = common_shorten_links($content);
602
603         // If it's too long, try using the summary, and make the
604         // HTML an attachment.
605
606         $attachment = null;
607
608         if (Notice::contentTooLong($shortened)) {
609             $attachment = $this->saveHTMLFile($activity->title, $rendered);
610             $summary = html_entity_decode(strip_tags($activity->summary), ENT_QUOTES, 'UTF-8');
611             if (empty($summary)) {
612                 $summary = $content;
613             }
614             $shortSummary = common_shorten_links($summary);
615             if (Notice::contentTooLong($shortSummary)) {
616                 $url = common_shorten_url($sourceUrl);
617                 $shortSummary = substr($shortSummary,
618                                        0,
619                                        Notice::maxContent() - (mb_strlen($url) + 2));
620                 $content = $shortSummary . ' ' . $url;
621
622                 // We mark up the attachment link specially for the HTML output
623                 // so we can fold-out the full version inline.
624
625                 // @todo FIXME i18n: This tooltip will be saved with the site's default language
626                 // TRANS: Shown when a notice is longer than supported and/or when attachments are present. At runtime
627                 // TRANS: this will usually be replaced with localised text from StatusNet core messages.
628                 $showMoreText = _m('Show more');
629                 $attachUrl = common_local_url('attachment',
630                                               array('attachment' => $attachment->id));
631                 $rendered = common_render_text($shortSummary) .
632                             '<a href="' . htmlspecialchars($attachUrl) .'"'.
633                             ' class="attachment more"' .
634                             ' title="'. htmlspecialchars($showMoreText) . '">' .
635                             '&#8230;' .
636                             '</a>';
637             }
638         }
639
640         $options = array('is_local' => Notice::REMOTE,
641                          'url' => $sourceUrl,
642                          'uri' => $activity->id,
643                          'rendered' => $rendered,
644                          'replies' => array(),
645                          'groups' => array(),
646                          'peopletags' => array(),
647                          'tags' => array(),
648                          'urls' => array(),
649                          'repeat_of' => $sharedNotice->id,
650                          'scope' => $sharedNotice->scope);
651
652         // Check for optional attributes...
653
654         if (!empty($activity->time)) {
655             $options['created'] = common_sql_date($activity->time);
656         }
657
658         if ($activity->context) {
659             // TODO: context->attention
660             list($options['groups'], $options['replies'])
661                 = $this->filterReplies($oprofile, $activity->context->attention);
662
663             // Maintain direct reply associations
664             // @todo FIXME: What about conversation ID?
665             if (!empty($activity->context->replyToID)) {
666                 $orig = Notice::getKV('uri',
667                                           $activity->context->replyToID);
668                 if (!empty($orig)) {
669                     $options['reply_to'] = $orig->id;
670                 }
671             }
672
673             $location = $activity->context->location;
674             if ($location) {
675                 $options['lat'] = $location->lat;
676                 $options['lon'] = $location->lon;
677                 if ($location->location_id) {
678                     $options['location_ns'] = $location->location_ns;
679                     $options['location_id'] = $location->location_id;
680                 }
681             }
682         }
683
684         if ($this->isPeopletag()) {
685             $options['peopletags'][] = $this->localPeopletag();
686         }
687
688         // Atom categories <-> hashtags
689         foreach ($activity->categories as $cat) {
690             if ($cat->term) {
691                 $term = common_canonical_tag($cat->term);
692                 if ($term) {
693                     $options['tags'][] = $term;
694                 }
695             }
696         }
697
698         // Atom enclosures -> attachment URLs
699         foreach ($activity->enclosures as $href) {
700             // @todo FIXME: Save these locally or....?
701             $options['urls'][] = $href;
702         }
703
704         $notice = Notice::saveNew($oprofile->profile_id,
705                                   $content,
706                                   'ostatus',
707                                   $options);
708
709         return $notice;
710     }
711
712     /**
713      * Process an incoming post activity from this remote feed.
714      * @param Activity $activity
715      * @param string $method 'push' or 'salmon'
716      * @return mixed saved Notice or false
717      * @todo FIXME: Break up this function, it's getting nasty long
718      */
719     public function processPost($activity, $method)
720     {
721         $notice = null;
722
723         $oprofile = $this->checkAuthorship($activity);
724
725         if (empty($oprofile)) {
726             return null;
727         }
728
729         // It's not always an ActivityObject::NOTE, but... let's just say it is.
730
731         $note = $activity->objects[0];
732
733         // The id URI will be used as a unique identifier for for the notice,
734         // protecting against duplicate saves. It isn't required to be a URL;
735         // tag: URIs for instance are found in Google Buzz feeds.
736         $sourceUri = $note->id;
737         $dupe = Notice::getKV('uri', $sourceUri);
738         if ($dupe) {
739             common_log(LOG_INFO, "OStatus: ignoring duplicate post: $sourceUri");
740             return $dupe;
741         }
742
743         // We'll also want to save a web link to the original notice, if provided.
744         $sourceUrl = null;
745         if ($note->link) {
746             $sourceUrl = $note->link;
747         } else if ($activity->link) {
748             $sourceUrl = $activity->link;
749         } else if (preg_match('!^https?://!', $note->id)) {
750             $sourceUrl = $note->id;
751         }
752
753         // Use summary as fallback for content
754
755         if (!empty($note->content)) {
756             $sourceContent = $note->content;
757         } else if (!empty($note->summary)) {
758             $sourceContent = $note->summary;
759         } else if (!empty($note->title)) {
760             $sourceContent = $note->title;
761         } else {
762             // @todo FIXME: Fetch from $sourceUrl?
763             // TRANS: Client exception. %s is a source URI.
764             throw new ClientException(sprintf(_m('No content for notice %s.'),$sourceUri));
765         }
766
767         // Get (safe!) HTML and text versions of the content
768
769         $rendered = $this->purify($sourceContent);
770         $content = html_entity_decode(strip_tags($rendered), ENT_QUOTES, 'UTF-8');
771
772         $shortened = common_shorten_links($content);
773
774         // If it's too long, try using the summary, and make the
775         // HTML an attachment.
776
777         $attachment = null;
778
779         if (Notice::contentTooLong($shortened)) {
780             $attachment = $this->saveHTMLFile($note->title, $rendered);
781             $summary = html_entity_decode(strip_tags($note->summary), ENT_QUOTES, 'UTF-8');
782             if (empty($summary)) {
783                 $summary = $content;
784             }
785             $shortSummary = common_shorten_links($summary);
786             if (Notice::contentTooLong($shortSummary)) {
787                 $url = common_shorten_url($sourceUrl);
788                 $shortSummary = substr($shortSummary,
789                                        0,
790                                        Notice::maxContent() - (mb_strlen($url) + 2));
791                 $content = $shortSummary . ' ' . $url;
792
793                 // We mark up the attachment link specially for the HTML output
794                 // so we can fold-out the full version inline.
795
796                 // @todo FIXME i18n: This tooltip will be saved with the site's default language
797                 // TRANS: Shown when a notice is longer than supported and/or when attachments are present. At runtime
798                 // TRANS: this will usually be replaced with localised text from StatusNet core messages.
799                 $showMoreText = _m('Show more');
800                 $attachUrl = common_local_url('attachment',
801                                               array('attachment' => $attachment->id));
802                 $rendered = common_render_text($shortSummary) .
803                             '<a href="' . htmlspecialchars($attachUrl) .'"'.
804                             ' class="attachment more"' .
805                             ' title="'. htmlspecialchars($showMoreText) . '">' .
806                             '&#8230;' .
807                             '</a>';
808             }
809         }
810
811         $options = array('is_local' => Notice::REMOTE,
812                         'url' => $sourceUrl,
813                         'uri' => $sourceUri,
814                         'rendered' => $rendered,
815                         'replies' => array(),
816                         'groups' => array(),
817                         'peopletags' => array(),
818                         'tags' => array(),
819                         'urls' => array());
820
821         // Check for optional attributes...
822
823         if (!empty($activity->time)) {
824             $options['created'] = common_sql_date($activity->time);
825         }
826
827         if ($activity->context) {
828             // TODO: context->attention
829             list($options['groups'], $options['replies'])
830                 = $this->filterReplies($oprofile, $activity->context->attention);
831
832             // Maintain direct reply associations
833             // @todo FIXME: What about conversation ID?
834             if (!empty($activity->context->replyToID)) {
835                 $orig = Notice::getKV('uri',
836                                           $activity->context->replyToID);
837                 if (!empty($orig)) {
838                     $options['reply_to'] = $orig->id;
839                 }
840             }
841
842             $location = $activity->context->location;
843             if ($location) {
844                 $options['lat'] = $location->lat;
845                 $options['lon'] = $location->lon;
846                 if ($location->location_id) {
847                     $options['location_ns'] = $location->location_ns;
848                     $options['location_id'] = $location->location_id;
849                 }
850             }
851         }
852
853         if ($this->isPeopletag()) {
854             $options['peopletags'][] = $this->localPeopletag();
855         }
856
857         // Atom categories <-> hashtags
858         foreach ($activity->categories as $cat) {
859             if ($cat->term) {
860                 $term = common_canonical_tag($cat->term);
861                 if ($term) {
862                     $options['tags'][] = $term;
863                 }
864             }
865         }
866
867         // Atom enclosures -> attachment URLs
868         foreach ($activity->enclosures as $href) {
869             // @todo FIXME: Save these locally or....?
870             $options['urls'][] = $href;
871         }
872
873         try {
874             $saved = Notice::saveNew($oprofile->profile_id,
875                                      $content,
876                                      'ostatus',
877                                      $options);
878             if ($saved) {
879                 Ostatus_source::saveNew($saved, $this, $method);
880                 if (!empty($attachment)) {
881                     File_to_post::processNew($attachment->id, $saved->id);
882                 }
883             }
884         } catch (Exception $e) {
885             common_log(LOG_ERR, "OStatus save of remote message $sourceUri failed: " . $e->getMessage());
886             throw $e;
887         }
888         common_log(LOG_INFO, "OStatus saved remote message $sourceUri as notice id $saved->id");
889         return $saved;
890     }
891
892     /**
893      * Clean up HTML
894      */
895     protected function purify($html)
896     {
897         require_once INSTALLDIR.'/extlib/htmLawed/htmLawed.php';
898         $config = array('safe' => 1,
899                         'deny_attribute' => 'id,style,on*');
900         return htmLawed($html, $config);
901     }
902
903     /**
904      * Filters a list of recipient ID URIs to just those for local delivery.
905      * @param Ostatus_profile local profile of sender
906      * @param array in/out &$attention_uris set of URIs, will be pruned on output
907      * @return array of group IDs
908      */
909     protected function filterReplies($sender, array $attention)
910     {
911         common_log(LOG_DEBUG, "Original reply recipients: " . implode(', ', $attention));
912         $groups = array();
913         $replies = array();
914         foreach ($attention as $recipient=>$type) {
915             // Is the recipient a local user?
916             $user = User::getKV('uri', $recipient);
917             if ($user instanceof User) {
918                 // @todo FIXME: Sender verification, spam etc?
919                 $replies[] = $recipient;
920                 continue;
921             }
922
923             // Is the recipient a local group?
924             // TODO: $group = User_group::getKV('uri', $recipient);
925             $id = OStatusPlugin::localGroupFromUrl($recipient);
926             if ($id) {
927                 $group = User_group::getKV('id', $id);
928                 if ($group instanceof User_group) {
929                     // Deliver to all members of this local group if allowed.
930                     $profile = $sender->localProfile();
931                     if ($profile->isMember($group)) {
932                         $groups[] = $group->id;
933                     } else {
934                         common_log(LOG_DEBUG, "Skipping reply to local group $group->nickname as sender $profile->id is not a member");
935                     }
936                     continue;
937                 } else {
938                     common_log(LOG_DEBUG, "Skipping reply to bogus group $recipient");
939                 }
940             }
941
942             // Is the recipient a remote user or group?
943             try {
944                 $oprofile = self::ensureProfileURI($recipient);
945                 if ($oprofile->isGroup()) {
946                     // Deliver to local members of this remote group.
947                     // @todo FIXME: Sender verification?
948                     $groups[] = $oprofile->group_id;
949                 } else {
950                     // may be canonicalized or something
951                     $replies[] = $oprofile->uri;
952                 }
953                 continue;
954             } catch (Exception $e) {
955                 // Neither a recognizable local nor remote user!
956                 common_log(LOG_DEBUG, "Skipping reply to unrecognized profile $recipient: " . $e->getMessage());
957             }
958
959         }
960         common_log(LOG_DEBUG, "Local reply recipients: " . implode(', ', $replies));
961         common_log(LOG_DEBUG, "Local group recipients: " . implode(', ', $groups));
962         return array($groups, $replies);
963     }
964
965     /**
966      * Look up and if necessary create an Ostatus_profile for the remote entity
967      * with the given profile page URL. This should never return null -- you
968      * will either get an object or an exception will be thrown.
969      *
970      * @param string $profile_url
971      * @return Ostatus_profile
972      * @throws Exception on various error conditions
973      * @throws OStatusShadowException if this reference would obscure a local user/group
974      */
975     public static function ensureProfileURL($profile_url, $hints=array())
976     {
977         $oprofile = self::getFromProfileURL($profile_url);
978
979         if ($oprofile instanceof Ostatus_profile) {
980             return $oprofile;
981         }
982
983         $hints['profileurl'] = $profile_url;
984
985         // Fetch the URL
986         // XXX: HTTP caching
987
988         $client = new HTTPClient();
989         $client->setHeader('Accept', 'text/html,application/xhtml+xml');
990         $response = $client->get($profile_url);
991
992         if (!$response->isOk()) {
993             // TRANS: Exception. %s is a profile URL.
994             throw new Exception(sprintf(_m('Could not reach profile page %s.'),$profile_url));
995         }
996
997         // Check if we have a non-canonical URL
998
999         $finalUrl = $response->getUrl();
1000
1001         if ($finalUrl != $profile_url) {
1002
1003             $hints['profileurl'] = $finalUrl;
1004
1005             $oprofile = self::getFromProfileURL($finalUrl);
1006
1007             if ($oprofile instanceof Ostatus_profile) {
1008                 return $oprofile;
1009             }
1010         }
1011
1012         // Try to get some hCard data
1013
1014         $body = $response->getBody();
1015
1016         $hcardHints = DiscoveryHints::hcardHints($body, $finalUrl);
1017
1018         if (!empty($hcardHints)) {
1019             $hints = array_merge($hints, $hcardHints);
1020         }
1021
1022         // Check if they've got an LRDD header
1023
1024         $lrdd = LinkHeader::getLink($response, 'lrdd');
1025         try {
1026             $xrd = new XML_XRD();
1027             $xrd->loadFile($lrdd);
1028             $xrdHints = DiscoveryHints::fromXRD($xrd);
1029             $hints = array_merge($hints, $xrdHints);
1030         } catch (Exception $e) {
1031             // No hints available from XRD
1032         }
1033
1034         // If discovery found a feedurl (probably from LRDD), use it.
1035
1036         if (array_key_exists('feedurl', $hints)) {
1037             return self::ensureFeedURL($hints['feedurl'], $hints);
1038         }
1039
1040         // Get the feed URL from HTML
1041
1042         $discover = new FeedDiscovery();
1043
1044         $feedurl = $discover->discoverFromHTML($finalUrl, $body);
1045
1046         if (!empty($feedurl)) {
1047             $hints['feedurl'] = $feedurl;
1048             return self::ensureFeedURL($feedurl, $hints);
1049         }
1050
1051         // TRANS: Exception. %s is a URL.
1052         throw new Exception(sprintf(_m('Could not find a feed URL for profile page %s.'),$finalUrl));
1053     }
1054
1055     /**
1056      * Look up the Ostatus_profile, if present, for a remote entity with the
1057      * given profile page URL. Will return null for both unknown and invalid
1058      * remote profiles.
1059      *
1060      * @return mixed Ostatus_profile or null
1061      * @throws OStatusShadowException for local profiles
1062      */
1063     static function getFromProfileURL($profile_url)
1064     {
1065         $profile = Profile::getKV('profileurl', $profile_url);
1066         if (!$profile instanceof Profile) {
1067             return null;
1068         }
1069
1070         // Is it a known Ostatus profile?
1071         $oprofile = Ostatus_profile::getKV('profile_id', $profile->id);
1072         if ($oprofile instanceof Ostatus_profile) {
1073             return $oprofile;
1074         }
1075
1076         // Is it a local user?
1077         $user = User::getKV('id', $profile->id);
1078         if ($user instanceof User) {
1079             // @todo i18n FIXME: use sprintf and add i18n (?)
1080             throw new OStatusShadowException($profile, "'$profile_url' is the profile for local user '{$user->nickname}'.");
1081         }
1082
1083         // Continue discovery; it's a remote profile
1084         // for OMB or some other protocol, may also
1085         // support OStatus
1086
1087         return null;
1088     }
1089
1090     /**
1091      * Look up and if necessary create an Ostatus_profile for remote entity
1092      * with the given update feed. This should never return null -- you will
1093      * either get an object or an exception will be thrown.
1094      *
1095      * @return Ostatus_profile
1096      * @throws Exception
1097      */
1098     public static function ensureFeedURL($feed_url, $hints=array())
1099     {
1100         $discover = new FeedDiscovery();
1101
1102         $feeduri = $discover->discoverFromFeedURL($feed_url);
1103         $hints['feedurl'] = $feeduri;
1104
1105         $huburi = $discover->getHubLink();
1106         $hints['hub'] = $huburi;
1107         $salmonuri = $discover->getAtomLink(Salmon::NS_REPLIES);
1108         $hints['salmon'] = $salmonuri;
1109
1110         if (!$huburi && !common_config('feedsub', 'fallback_hub')) {
1111             // We can only deal with folks with a PuSH hub
1112             throw new FeedSubNoHubException();
1113         }
1114
1115         $feedEl = $discover->root;
1116
1117         if ($feedEl->tagName == 'feed') {
1118             return self::ensureAtomFeed($feedEl, $hints);
1119         } else if ($feedEl->tagName == 'channel') {
1120             return self::ensureRssChannel($feedEl, $hints);
1121         } else {
1122             throw new FeedSubBadXmlException($feeduri);
1123         }
1124     }
1125
1126     /**
1127      * Look up and, if necessary, create an Ostatus_profile for the remote
1128      * profile with the given Atom feed - actually loaded from the feed.
1129      * This should never return null -- you will either get an object or
1130      * an exception will be thrown.
1131      *
1132      * @param DOMElement $feedEl root element of a loaded Atom feed
1133      * @param array $hints additional discovery information passed from higher levels
1134      * @todo FIXME: Should this be marked public?
1135      * @return Ostatus_profile
1136      * @throws Exception
1137      */
1138     public static function ensureAtomFeed($feedEl, $hints)
1139     {
1140         $author = ActivityUtils::getFeedAuthor($feedEl);
1141
1142         if (empty($author)) {
1143             // XXX: make some educated guesses here
1144             // TRANS: Feed sub exception.
1145             throw new FeedSubException(_m('Cannot find enough profile '.
1146                                           'information to make a feed.'));
1147         }
1148
1149         return self::ensureActivityObjectProfile($author, $hints);
1150     }
1151
1152     /**
1153      * Look up and, if necessary, create an Ostatus_profile for the remote
1154      * profile with the given RSS feed - actually loaded from the feed.
1155      * This should never return null -- you will either get an object or
1156      * an exception will be thrown.
1157      *
1158      * @param DOMElement $feedEl root element of a loaded RSS feed
1159      * @param array $hints additional discovery information passed from higher levels
1160      * @todo FIXME: Should this be marked public?
1161      * @return Ostatus_profile
1162      * @throws Exception
1163      */
1164     public static function ensureRssChannel($feedEl, $hints)
1165     {
1166         // Special-case for Posterous. They have some nice metadata in their
1167         // posterous:author elements. We should use them instead of the channel.
1168
1169         $items = $feedEl->getElementsByTagName('item');
1170
1171         if ($items->length > 0) {
1172             $item = $items->item(0);
1173             $authorEl = ActivityUtils::child($item, ActivityObject::AUTHOR, ActivityObject::POSTEROUS);
1174             if (!empty($authorEl)) {
1175                 $obj = ActivityObject::fromPosterousAuthor($authorEl);
1176                 // Posterous has multiple authors per feed, and multiple feeds
1177                 // per author. We check if this is the "main" feed for this author.
1178                 if (array_key_exists('profileurl', $hints) &&
1179                     !empty($obj->poco) &&
1180                     common_url_to_nickname($hints['profileurl']) == $obj->poco->preferredUsername) {
1181                     return self::ensureActivityObjectProfile($obj, $hints);
1182                 }
1183             }
1184         }
1185
1186         // @todo FIXME: We should check whether this feed has elements
1187         // with different <author> or <dc:creator> elements, and... I dunno.
1188         // Do something about that.
1189
1190         $obj = ActivityObject::fromRssChannel($feedEl);
1191
1192         return self::ensureActivityObjectProfile($obj, $hints);
1193     }
1194
1195     /**
1196      * Download and update given avatar image
1197      *
1198      * @param string $url
1199      * @throws Exception in various failure cases
1200      */
1201     protected function updateAvatar($url)
1202     {
1203         if ($url == $this->avatar) {
1204             // We've already got this one.
1205             return;
1206         }
1207         if (!common_valid_http_url($url)) {
1208             // TRANS: Server exception. %s is a URL.
1209             throw new ServerException(sprintf(_m('Invalid avatar URL %s.'), $url));
1210         }
1211
1212         if ($this->isGroup()) {
1213             $self = $this->localGroup();
1214         } else {
1215             $self = $this->localProfile();
1216         }
1217         if (!$self) {
1218             throw new ServerException(sprintf(
1219                 // TRANS: Server exception. %s is a URI.
1220                 _m('Tried to update avatar for unsaved remote profile %s.'),
1221                 $this->uri));
1222         }
1223
1224         // @todo FIXME: This should be better encapsulated
1225         // ripped from oauthstore.php (for old OMB client)
1226         $temp_filename = tempnam(sys_get_temp_dir(), 'listener_avatar');
1227         try {
1228             if (!copy($url, $temp_filename)) {
1229                 // TRANS: Server exception. %s is a URL.
1230                 throw new ServerException(sprintf(_m('Unable to fetch avatar from %s.'), $url));
1231             }
1232
1233             if ($this->isGroup()) {
1234                 $id = $this->group_id;
1235             } else {
1236                 $id = $this->profile_id;
1237             }
1238             // @todo FIXME: Should we be using different ids?
1239             $imagefile = new ImageFile($id, $temp_filename);
1240             $filename = Avatar::filename($id,
1241                                          image_type_to_extension($imagefile->type),
1242                                          null,
1243                                          common_timestamp());
1244             rename($temp_filename, Avatar::path($filename));
1245         } catch (Exception $e) {
1246             unlink($temp_filename);
1247             throw $e;
1248         }
1249         // @todo FIXME: Hardcoded chmod is lame, but seems to be necessary to
1250         // keep from accidentally saving images from command-line (queues)
1251         // that can't be read from web server, which causes hard-to-notice
1252         // problems later on:
1253         //
1254         // http://status.net/open-source/issues/2663
1255         chmod(Avatar::path($filename), 0644);
1256
1257         $self->setOriginal($filename);
1258
1259         $orig = clone($this);
1260         $this->avatar = $url;
1261         $this->update($orig);
1262     }
1263
1264     /**
1265      * Pull avatar URL from ActivityObject or profile hints
1266      *
1267      * @param ActivityObject $object
1268      * @param array $hints
1269      * @return mixed URL string or false
1270      */
1271     public static function getActivityObjectAvatar($object, $hints=array())
1272     {
1273         if ($object->avatarLinks) {
1274             $best = false;
1275             // Take the exact-size avatar, or the largest avatar, or the first avatar if all sizeless
1276             foreach ($object->avatarLinks as $avatar) {
1277                 if ($avatar->width == AVATAR_PROFILE_SIZE && $avatar->height = AVATAR_PROFILE_SIZE) {
1278                     // Exact match!
1279                     $best = $avatar;
1280                     break;
1281                 }
1282                 if (!$best || $avatar->width > $best->width) {
1283                     $best = $avatar;
1284                 }
1285             }
1286             return $best->url;
1287         } else if (array_key_exists('avatar', $hints)) {
1288             return $hints['avatar'];
1289         }
1290         return false;
1291     }
1292
1293     /**
1294      * Get an appropriate avatar image source URL, if available.
1295      *
1296      * @param ActivityObject $actor
1297      * @param DOMElement $feed
1298      * @return string
1299      */
1300     protected static function getAvatar($actor, $feed)
1301     {
1302         $url = '';
1303         $icon = '';
1304         if ($actor->avatar) {
1305             $url = trim($actor->avatar);
1306         }
1307         if (!$url) {
1308             // Check <atom:logo> and <atom:icon> on the feed
1309             $els = $feed->childNodes();
1310             if ($els && $els->length) {
1311                 for ($i = 0; $i < $els->length; $i++) {
1312                     $el = $els->item($i);
1313                     if ($el->namespaceURI == Activity::ATOM) {
1314                         if (empty($url) && $el->localName == 'logo') {
1315                             $url = trim($el->textContent);
1316                             break;
1317                         }
1318                         if (empty($icon) && $el->localName == 'icon') {
1319                             // Use as a fallback
1320                             $icon = trim($el->textContent);
1321                         }
1322                     }
1323                 }
1324             }
1325             if ($icon && !$url) {
1326                 $url = $icon;
1327             }
1328         }
1329         if ($url) {
1330             $opts = array('allowed_schemes' => array('http', 'https'));
1331             if (common_valid_http_url($url)) {
1332                 return $url;
1333             }
1334         }
1335
1336         return Plugin::staticPath('OStatus', 'images/96px-Feed-icon.svg.png');
1337     }
1338
1339     /**
1340      * Fetch, or build if necessary, an Ostatus_profile for the actor
1341      * in a given Activity Streams activity.
1342      * This should never return null -- you will either get an object or
1343      * an exception will be thrown.
1344      *
1345      * @param Activity $activity
1346      * @param string $feeduri if we already know the canonical feed URI!
1347      * @param string $salmonuri if we already know the salmon return channel URI
1348      * @return Ostatus_profile
1349      * @throws Exception
1350      */
1351     public static function ensureActorProfile($activity, $hints=array())
1352     {
1353         return self::ensureActivityObjectProfile($activity->actor, $hints);
1354     }
1355
1356     /**
1357      * Fetch, or build if necessary, an Ostatus_profile for the profile
1358      * in a given Activity Streams object (can be subject, actor, or object).
1359      * This should never return null -- you will either get an object or
1360      * an exception will be thrown.
1361      *
1362      * @param ActivityObject $object
1363      * @param array $hints additional discovery information passed from higher levels
1364      * @return Ostatus_profile
1365      * @throws Exception
1366      */
1367     public static function ensureActivityObjectProfile($object, $hints=array())
1368     {
1369         $profile = self::getActivityObjectProfile($object);
1370         if ($profile) {
1371             $profile->updateFromActivityObject($object, $hints);
1372         } else {
1373             $profile = self::createActivityObjectProfile($object, $hints);
1374         }
1375         return $profile;
1376     }
1377
1378     /**
1379      * @param Activity $activity
1380      * @return mixed matching Ostatus_profile or false if none known
1381      * @throws ServerException if feed info invalid
1382      */
1383     public static function getActorProfile($activity)
1384     {
1385         return self::getActivityObjectProfile($activity->actor);
1386     }
1387
1388     /**
1389      * @param ActivityObject $activity
1390      * @return mixed matching Ostatus_profile or false if none known
1391      * @throws ServerException if feed info invalid
1392      */
1393     protected static function getActivityObjectProfile($object)
1394     {
1395         $uri = self::getActivityObjectProfileURI($object);
1396         return Ostatus_profile::getKV('uri', $uri);
1397     }
1398
1399     /**
1400      * Get the identifier URI for the remote entity described
1401      * by this ActivityObject. This URI is *not* guaranteed to be
1402      * a resolvable HTTP/HTTPS URL.
1403      *
1404      * @param ActivityObject $object
1405      * @return string
1406      * @throws ServerException if feed info invalid
1407      */
1408     protected static function getActivityObjectProfileURI($object)
1409     {
1410         if ($object->id) {
1411             if (ActivityUtils::validateUri($object->id)) {
1412                 return $object->id;
1413             }
1414         }
1415
1416         // If the id is missing or invalid (we've seen feeds mistakenly listing
1417         // things like local usernames in that field) then we'll use the profile
1418         // page link, if valid.
1419         if ($object->link && common_valid_http_url($object->link)) {
1420             return $object->link;
1421         }
1422         // TRANS: Server exception.
1423         throw new ServerException(_m('No author ID URI found.'));
1424     }
1425
1426     /**
1427      * @todo FIXME: Validate stuff somewhere.
1428      */
1429
1430     /**
1431      * Create local ostatus_profile and profile/user_group entries for
1432      * the provided remote user or group.
1433      * This should never return null -- you will either get an object or
1434      * an exception will be thrown.
1435      *
1436      * @param ActivityObject $object
1437      * @param array $hints
1438      *
1439      * @return Ostatus_profile
1440      */
1441     protected static function createActivityObjectProfile($object, $hints=array())
1442     {
1443         $homeuri = $object->id;
1444         $discover = false;
1445
1446         if (!$homeuri) {
1447             common_log(LOG_DEBUG, __METHOD__ . " empty actor profile URI: " . var_export($activity, true));
1448             // TRANS: Exception.
1449             throw new Exception(_m('No profile URI.'));
1450         }
1451
1452         $user = User::getKV('uri', $homeuri);
1453         if ($user) {
1454             // TRANS: Exception.
1455             throw new Exception(_m('Local user cannot be referenced as remote.'));
1456         }
1457
1458         if (OStatusPlugin::localGroupFromUrl($homeuri)) {
1459             // TRANS: Exception.
1460             throw new Exception(_m('Local group cannot be referenced as remote.'));
1461         }
1462
1463         $ptag = Profile_list::getKV('uri', $homeuri);
1464         if ($ptag) {
1465             $local_user = User::getKV('id', $ptag->tagger);
1466             if (!empty($local_user)) {
1467                 // TRANS: Exception.
1468                 throw new Exception(_m('Local list cannot be referenced as remote.'));
1469             }
1470         }
1471
1472         if (array_key_exists('feedurl', $hints)) {
1473             $feeduri = $hints['feedurl'];
1474         } else {
1475             $discover = new FeedDiscovery();
1476             $feeduri = $discover->discoverFromURL($homeuri);
1477         }
1478
1479         if (array_key_exists('salmon', $hints)) {
1480             $salmonuri = $hints['salmon'];
1481         } else {
1482             if (!$discover) {
1483                 $discover = new FeedDiscovery();
1484                 $discover->discoverFromFeedURL($hints['feedurl']);
1485             }
1486             $salmonuri = $discover->getAtomLink(Salmon::NS_REPLIES);
1487         }
1488
1489         if (array_key_exists('hub', $hints)) {
1490             $huburi = $hints['hub'];
1491         } else {
1492             if (!$discover) {
1493                 $discover = new FeedDiscovery();
1494                 $discover->discoverFromFeedURL($hints['feedurl']);
1495             }
1496             $huburi = $discover->getHubLink();
1497         }
1498
1499         if (!$huburi && !common_config('feedsub', 'fallback_hub')) {
1500             // We can only deal with folks with a PuSH hub
1501             throw new FeedSubNoHubException();
1502         }
1503
1504         $oprofile = new Ostatus_profile();
1505
1506         $oprofile->uri        = $homeuri;
1507         $oprofile->feeduri    = $feeduri;
1508         $oprofile->salmonuri  = $salmonuri;
1509
1510         $oprofile->created    = common_sql_now();
1511         $oprofile->modified   = common_sql_now();
1512
1513         if ($object->type == ActivityObject::PERSON) {
1514             $profile = new Profile();
1515             $profile->created = common_sql_now();
1516             self::updateProfile($profile, $object, $hints);
1517
1518             $oprofile->profile_id = $profile->insert();
1519             if ($oprofile->profile_id === false) {
1520                 // TRANS: Server exception.
1521                 throw new ServerException(_m('Cannot save local profile.'));
1522             }
1523         } else if ($object->type == ActivityObject::GROUP) {
1524             $profile = new Profile();
1525             $profile->query('BEGIN');
1526
1527             $group = new User_group();
1528             $group->uri = $homeuri;
1529             $group->created = common_sql_now();
1530             self::updateGroup($group, $object, $hints);
1531
1532             // TODO: We should do this directly in User_group->insert()!
1533             // currently it's duplicated in User_group->update()
1534             // AND User_group->register()!!!
1535             $fields = array(/*group field => profile field*/
1536                         'nickname'      => 'nickname',
1537                         'fullname'      => 'fullname',
1538                         'mainpage'      => 'profileurl',
1539                         'homepage'      => 'homepage',
1540                         'description'   => 'bio',
1541                         'location'      => 'location',
1542                         'created'       => 'created',
1543                         'modified'      => 'modified',
1544                         );
1545             foreach ($fields as $gf=>$pf) {
1546                 $profile->$pf = $group->$gf;
1547             }
1548             $profile_id = $profile->insert();
1549             if ($profile_id === false) {
1550                 $profile->query('ROLLBACK');
1551                 throw new ServerException(_('Profile insertion failed.'));
1552             }
1553
1554             $group->profile_id = $profile_id;
1555
1556             $oprofile->group_id = $group->insert();
1557             if ($oprofile->group_id === false) {
1558                 $profile->query('ROLLBACK');
1559                 // TRANS: Server exception.
1560                 throw new ServerException(_m('Cannot save local profile.'));
1561             }
1562
1563             $profile->query('COMMIT');
1564         } else if ($object->type == ActivityObject::_LIST) {
1565             $ptag = new Profile_list();
1566             $ptag->uri = $homeuri;
1567             $ptag->created = common_sql_now();
1568             self::updatePeopletag($ptag, $object, $hints);
1569
1570             $oprofile->peopletag_id = $ptag->insert();
1571             if ($oprofile->peopletag_id === false) {
1572                 // TRANS: Server exception.
1573                 throw new ServerException(_m('Cannot save local list.'));
1574             }
1575         }
1576
1577         $ok = $oprofile->insert();
1578
1579         if ($ok === false) {
1580             // TRANS: Server exception.
1581             throw new ServerException(_m('Cannot save OStatus profile.'));
1582         }
1583
1584         $avatar = self::getActivityObjectAvatar($object, $hints);
1585
1586         if ($avatar) {
1587             try {
1588                 $oprofile->updateAvatar($avatar);
1589             } catch (Exception $ex) {
1590                 // Profile is saved, but Avatar is messed up. We're
1591                 // just going to continue.
1592                 common_log(LOG_WARNING, "Exception saving OStatus profile avatar: ". $ex->getMessage());
1593             }
1594         }
1595
1596         return $oprofile;
1597     }
1598
1599     /**
1600      * Save any updated profile information to our local copy.
1601      * @param ActivityObject $object
1602      * @param array $hints
1603      */
1604     public function updateFromActivityObject($object, $hints=array())
1605     {
1606         if ($this->isGroup()) {
1607             $group = $this->localGroup();
1608             self::updateGroup($group, $object, $hints);
1609         } else if ($this->isPeopletag()) {
1610             $ptag = $this->localPeopletag();
1611             self::updatePeopletag($ptag, $object, $hints);
1612         } else {
1613             $profile = $this->localProfile();
1614             self::updateProfile($profile, $object, $hints);
1615         }
1616
1617         $avatar = self::getActivityObjectAvatar($object, $hints);
1618         if ($avatar && !isset($ptag)) {
1619             try {
1620                 $this->updateAvatar($avatar);
1621             } catch (Exception $ex) {
1622                 common_log(LOG_WARNING, "Exception saving OStatus profile avatar: " . $ex->getMessage());
1623             }
1624         }
1625     }
1626
1627     public static function updateProfile($profile, $object, $hints=array())
1628     {
1629         $orig = clone($profile);
1630
1631         // Existing nickname is better than nothing.
1632
1633         if (!array_key_exists('nickname', $hints)) {
1634             $hints['nickname'] = $profile->nickname;
1635         }
1636
1637         $nickname = self::getActivityObjectNickname($object, $hints);
1638
1639         if (!empty($nickname)) {
1640             $profile->nickname = $nickname;
1641         }
1642
1643         if (!empty($object->title)) {
1644             $profile->fullname = $object->title;
1645         } else if (array_key_exists('fullname', $hints)) {
1646             $profile->fullname = $hints['fullname'];
1647         }
1648
1649         if (!empty($object->link)) {
1650             $profile->profileurl = $object->link;
1651         } else if (array_key_exists('profileurl', $hints)) {
1652             $profile->profileurl = $hints['profileurl'];
1653         } else if (common_valid_http_url($object->id)) {
1654             $profile->profileurl = $object->id;
1655         }
1656
1657         $bio = self::getActivityObjectBio($object, $hints);
1658
1659         if (!empty($bio)) {
1660             $profile->bio = $bio;
1661         }
1662
1663         $location = self::getActivityObjectLocation($object, $hints);
1664
1665         if (!empty($location)) {
1666             $profile->location = $location;
1667         }
1668
1669         $homepage = self::getActivityObjectHomepage($object, $hints);
1670
1671         if (!empty($homepage)) {
1672             $profile->homepage = $homepage;
1673         }
1674
1675         if (!empty($object->geopoint)) {
1676             $location = ActivityContext::locationFromPoint($object->geopoint);
1677             if (!empty($location)) {
1678                 $profile->lat = $location->lat;
1679                 $profile->lon = $location->lon;
1680             }
1681         }
1682
1683         // @todo FIXME: tags/categories
1684         // @todo tags from categories
1685
1686         if ($profile->id) {
1687             common_log(LOG_DEBUG, "Updating OStatus profile $profile->id from remote info $object->id: " . var_export($object, true) . var_export($hints, true));
1688             $profile->update($orig);
1689         }
1690     }
1691
1692     protected static function updateGroup(User_group $group, $object, $hints=array())
1693     {
1694         $orig = clone($group);
1695
1696         $group->nickname = self::getActivityObjectNickname($object, $hints);
1697         $group->fullname = $object->title;
1698
1699         if (!empty($object->link)) {
1700             $group->mainpage = $object->link;
1701         } else if (array_key_exists('profileurl', $hints)) {
1702             $group->mainpage = $hints['profileurl'];
1703         }
1704
1705         // @todo tags from categories
1706         $group->description = self::getActivityObjectBio($object, $hints);
1707         $group->location = self::getActivityObjectLocation($object, $hints);
1708         $group->homepage = self::getActivityObjectHomepage($object, $hints);
1709
1710         if ($group->id) {   // If no id, we haven't called insert() yet, so don't run update()
1711             common_log(LOG_DEBUG, "Updating OStatus group $group->id from remote info $object->id: " . var_export($object, true) . var_export($hints, true));
1712             $group->update($orig);
1713         }
1714     }
1715
1716     protected static function updatePeopletag($tag, $object, $hints=array()) {
1717         $orig = clone($tag);
1718
1719         $tag->tag = $object->title;
1720
1721         if (!empty($object->link)) {
1722             $tag->mainpage = $object->link;
1723         } else if (array_key_exists('profileurl', $hints)) {
1724             $tag->mainpage = $hints['profileurl'];
1725         }
1726
1727         $tag->description = $object->summary;
1728         $tagger = self::ensureActivityObjectProfile($object->owner);
1729         $tag->tagger = $tagger->profile_id;
1730
1731         if ($tag->id) {
1732             common_log(LOG_DEBUG, "Updating OStatus peopletag $tag->id from remote info $object->id: " . var_export($object, true) . var_export($hints, true));
1733             $tag->update($orig);
1734         }
1735     }
1736
1737     protected static function getActivityObjectHomepage($object, $hints=array())
1738     {
1739         $homepage = null;
1740         $poco     = $object->poco;
1741
1742         if (!empty($poco)) {
1743             $url = $poco->getPrimaryURL();
1744             if ($url && $url->type == 'homepage') {
1745                 $homepage = $url->value;
1746             }
1747         }
1748
1749         // @todo Try for a another PoCo URL?
1750
1751         return $homepage;
1752     }
1753
1754     protected static function getActivityObjectLocation($object, $hints=array())
1755     {
1756         $location = null;
1757
1758         if (!empty($object->poco) &&
1759             isset($object->poco->address->formatted)) {
1760             $location = $object->poco->address->formatted;
1761         } else if (array_key_exists('location', $hints)) {
1762             $location = $hints['location'];
1763         }
1764
1765         if (!empty($location)) {
1766             if (mb_strlen($location) > 255) {
1767                 $location = mb_substr($note, 0, 255 - 3) . ' â€¦ ';
1768             }
1769         }
1770
1771         // @todo Try to find location some othe way? Via goerss point?
1772
1773         return $location;
1774     }
1775
1776     protected static function getActivityObjectBio($object, $hints=array())
1777     {
1778         $bio  = null;
1779
1780         if (!empty($object->poco)) {
1781             $note = $object->poco->note;
1782         } else if (array_key_exists('bio', $hints)) {
1783             $note = $hints['bio'];
1784         }
1785
1786         if (!empty($note)) {
1787             if (Profile::bioTooLong($note)) {
1788                 // XXX: truncate ok?
1789                 $bio = mb_substr($note, 0, Profile::maxBio() - 3) . ' â€¦ ';
1790             } else {
1791                 $bio = $note;
1792             }
1793         }
1794
1795         // @todo Try to get bio info some other way?
1796
1797         return $bio;
1798     }
1799
1800     public static function getActivityObjectNickname($object, $hints=array())
1801     {
1802         if ($object->poco) {
1803             if (!empty($object->poco->preferredUsername)) {
1804                 return common_nicknamize($object->poco->preferredUsername);
1805             }
1806         }
1807
1808         if (!empty($object->nickname)) {
1809             return common_nicknamize($object->nickname);
1810         }
1811
1812         if (array_key_exists('nickname', $hints)) {
1813             return $hints['nickname'];
1814         }
1815
1816         // Try the profile url (like foo.example.com or example.com/user/foo)
1817         if (!empty($object->link)) {
1818             $profileUrl = $object->link;
1819         } else if (!empty($hints['profileurl'])) {
1820             $profileUrl = $hints['profileurl'];
1821         }
1822
1823         if (!empty($profileUrl)) {
1824             $nickname = self::nicknameFromURI($profileUrl);
1825         }
1826
1827         // Try the URI (may be a tag:, http:, acct:, ...
1828
1829         if (empty($nickname)) {
1830             $nickname = self::nicknameFromURI($object->id);
1831         }
1832
1833         // Try a Webfinger if one was passed (way) down
1834
1835         if (empty($nickname)) {
1836             if (array_key_exists('webfinger', $hints)) {
1837                 $nickname = self::nicknameFromURI($hints['webfinger']);
1838             }
1839         }
1840
1841         // Try the name
1842
1843         if (empty($nickname)) {
1844             $nickname = common_nicknamize($object->title);
1845         }
1846
1847         return $nickname;
1848     }
1849
1850     protected static function nicknameFromURI($uri)
1851     {
1852         if (preg_match('/(\w+):/', $uri, $matches)) {
1853             $protocol = $matches[1];
1854         } else {
1855             return null;
1856         }
1857
1858         switch ($protocol) {
1859         case 'acct':
1860         case 'mailto':
1861             if (preg_match("/^$protocol:(.*)?@.*\$/", $uri, $matches)) {
1862                 return common_canonical_nickname($matches[1]);
1863             }
1864             return null;
1865         case 'http':
1866             return common_url_to_nickname($uri);
1867             break;
1868         default:
1869             return null;
1870         }
1871     }
1872
1873     /**
1874      * Look up, and if necessary create, an Ostatus_profile for the remote
1875      * entity with the given webfinger address.
1876      * This should never return null -- you will either get an object or
1877      * an exception will be thrown.
1878      *
1879      * @param string $addr webfinger address
1880      * @return Ostatus_profile
1881      * @throws Exception on error conditions
1882      * @throws OStatusShadowException if this reference would obscure a local user/group
1883      */
1884     public static function ensureWebfinger($addr)
1885     {
1886         // First, try the cache
1887
1888         $uri = self::cacheGet(sprintf('ostatus_profile:webfinger:%s', $addr));
1889
1890         if ($uri !== false) {
1891             if (is_null($uri)) {
1892                 // Negative cache entry
1893                 // TRANS: Exception.
1894                 throw new Exception(_m('Not a valid webfinger address.'));
1895             }
1896             $oprofile = Ostatus_profile::getKV('uri', $uri);
1897             if ($oprofile instanceof Ostatus_profile) {
1898                 return $oprofile;
1899             }
1900         }
1901
1902         // Try looking it up
1903         $oprofile = Ostatus_profile::getKV('uri', 'acct:'.$addr);
1904
1905         if ($oprofile instanceof Ostatus_profile) {
1906             self::cacheSet(sprintf('ostatus_profile:webfinger:%s', $addr), $oprofile->uri);
1907             return $oprofile;
1908         }
1909
1910         // Now, try some discovery
1911
1912         $disco = new Discovery();
1913
1914         try {
1915             $xrd = $disco->lookup($addr);
1916         } catch (Exception $e) {
1917             // Save negative cache entry so we don't waste time looking it up again.
1918             // @todo FIXME: Distinguish temporary failures?
1919             self::cacheSet(sprintf('ostatus_profile:webfinger:%s', $addr), null);
1920             // TRANS: Exception.
1921             throw new Exception(_m('Not a valid webfinger address.'));
1922         }
1923
1924         $hints = array('webfinger' => $addr);
1925
1926         $dhints = DiscoveryHints::fromXRD($xrd);
1927
1928         $hints = array_merge($hints, $dhints);
1929
1930         // If there's an Hcard, let's grab its info
1931         if (array_key_exists('hcard', $hints)) {
1932             if (!array_key_exists('profileurl', $hints) ||
1933                 $hints['hcard'] != $hints['profileurl']) {
1934                 $hcardHints = DiscoveryHints::fromHcardUrl($hints['hcard']);
1935                 $hints = array_merge($hcardHints, $hints);
1936             }
1937         }
1938
1939         // If we got a feed URL, try that
1940         if (array_key_exists('feedurl', $hints)) {
1941             try {
1942                 common_log(LOG_INFO, "Discovery on acct:$addr with feed URL " . $hints['feedurl']);
1943                 $oprofile = self::ensureFeedURL($hints['feedurl'], $hints);
1944                 self::cacheSet(sprintf('ostatus_profile:webfinger:%s', $addr), $oprofile->uri);
1945                 return $oprofile;
1946             } catch (Exception $e) {
1947                 common_log(LOG_WARNING, "Failed creating profile from feed URL '$feedUrl': " . $e->getMessage());
1948                 // keep looking
1949             }
1950         }
1951
1952         // If we got a profile page, try that!
1953         if (array_key_exists('profileurl', $hints)) {
1954             try {
1955                 common_log(LOG_INFO, "Discovery on acct:$addr with profile URL $profileUrl");
1956                 $oprofile = self::ensureProfileURL($hints['profileurl'], $hints);
1957                 self::cacheSet(sprintf('ostatus_profile:webfinger:%s', $addr), $oprofile->uri);
1958                 return $oprofile;
1959             } catch (OStatusShadowException $e) {
1960                 // We've ended up with a remote reference to a local user or group.
1961                 // @todo FIXME: Ideally we should be able to say who it was so we can
1962                 // go back and refer to it the regular way
1963                 throw $e;
1964             } catch (Exception $e) {
1965                 common_log(LOG_WARNING, "Failed creating profile from profile URL '$profileUrl': " . $e->getMessage());
1966                 // keep looking
1967                 //
1968                 // @todo FIXME: This means an error discovering from profile page
1969                 // may give us a corrupt entry using the webfinger URI, which
1970                 // will obscure the correct page-keyed profile later on.
1971             }
1972         }
1973
1974         // XXX: try hcard
1975         // XXX: try FOAF
1976
1977         if (array_key_exists('salmon', $hints)) {
1978             $salmonEndpoint = $hints['salmon'];
1979
1980             // An account URL, a salmon endpoint, and a dream? Not much to go
1981             // on, but let's give it a try
1982
1983             $uri = 'acct:'.$addr;
1984
1985             $profile = new Profile();
1986
1987             $profile->nickname = self::nicknameFromUri($uri);
1988             $profile->created  = common_sql_now();
1989
1990             if (isset($profileUrl)) {
1991                 $profile->profileurl = $profileUrl;
1992             }
1993
1994             $profile_id = $profile->insert();
1995
1996             if ($profile_id === false) {
1997                 common_log_db_error($profile, 'INSERT', __FILE__);
1998                 // TRANS: Exception. %s is a webfinger address.
1999                 throw new Exception(sprintf(_m('Could not save profile for "%s".'),$addr));
2000             }
2001
2002             $oprofile = new Ostatus_profile();
2003
2004             $oprofile->uri        = $uri;
2005             $oprofile->salmonuri  = $salmonEndpoint;
2006             $oprofile->profile_id = $profile_id;
2007             $oprofile->created    = common_sql_now();
2008
2009             if (isset($feedUrl)) {
2010                 $profile->feeduri = $feedUrl;
2011             }
2012
2013             $result = $oprofile->insert();
2014
2015             if ($result === false) {
2016                 common_log_db_error($oprofile, 'INSERT', __FILE__);
2017                 // TRANS: Exception. %s is a webfinger address.
2018                 throw new Exception(sprintf(_m('Could not save OStatus profile for "%s".'),$addr));
2019             }
2020
2021             self::cacheSet(sprintf('ostatus_profile:webfinger:%s', $addr), $oprofile->uri);
2022             return $oprofile;
2023         }
2024
2025         // TRANS: Exception. %s is a webfinger address.
2026         throw new Exception(sprintf(_m('Could not find a valid profile for "%s".'),$addr));
2027     }
2028
2029     /**
2030      * Store the full-length scrubbed HTML of a remote notice to an attachment
2031      * file on our server. We'll link to this at the end of the cropped version.
2032      *
2033      * @param string $title plaintext for HTML page's title
2034      * @param string $rendered HTML fragment for HTML page's body
2035      * @return File
2036      */
2037     function saveHTMLFile($title, $rendered)
2038     {
2039         $final = sprintf("<!DOCTYPE html>\n" .
2040                          '<html><head>' .
2041                          '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">' .
2042                          '<title>%s</title>' .
2043                          '</head>' .
2044                          '<body>%s</body></html>',
2045                          htmlspecialchars($title),
2046                          $rendered);
2047
2048         $filename = File::filename($this->localProfile(),
2049                                    'ostatus', // ignored?
2050                                    'text/html');
2051
2052         $filepath = File::path($filename);
2053
2054         file_put_contents($filepath, $final);
2055
2056         $file = new File;
2057
2058         $file->filename = $filename;
2059         $file->url      = File::url($filename);
2060         $file->size     = filesize($filepath);
2061         $file->date     = time();
2062         $file->mimetype = 'text/html';
2063
2064         $file_id = $file->insert();
2065
2066         if ($file_id === false) {
2067             common_log_db_error($file, "INSERT", __FILE__);
2068             // TRANS: Server exception.
2069             throw new ServerException(_m('Could not store HTML content of long post as file.'));
2070         }
2071
2072         return $file;
2073     }
2074
2075     static function ensureProfileURI($uri)
2076     {
2077         $oprofile = null;
2078
2079         // First, try to query it
2080
2081         $oprofile = Ostatus_profile::getKV('uri', $uri);
2082
2083         if ($oprofile instanceof Ostatus_profile) {
2084             return $oprofile;
2085         }
2086
2087         // If unfound, do discovery stuff
2088         if (preg_match("/^(\w+)\:(.*)/", $uri, $match)) {
2089             $protocol = $match[1];
2090             switch ($protocol) {
2091             case 'http':
2092             case 'https':
2093                 $oprofile = Ostatus_profile::ensureProfileURL($uri);
2094                 break;
2095             case 'acct':
2096             case 'mailto':
2097                 $rest = $match[2];
2098                 $oprofile = Ostatus_profile::ensureWebfinger($rest);
2099                 break;
2100             default:
2101                 // TRANS: Server exception.
2102                 // TRANS: %1$s is a protocol, %2$s is a URI.
2103                 throw new ServerException(sprintf(_m('Unrecognized URI protocol for profile: %1$s (%2$s).'),
2104                                                   $protocol,
2105                                                   $uri));
2106                 break;
2107             }
2108         } else {
2109             // TRANS: Server exception. %s is a URI.
2110             throw new ServerException(sprintf(_m('No URI protocol for profile: %s.'),$uri));
2111         }
2112
2113         return $oprofile;
2114     }
2115
2116     function checkAuthorship($activity)
2117     {
2118         if ($this->isGroup() || $this->isPeopletag()) {
2119             // A group or propletag feed will contain posts from multiple authors.
2120             $oprofile = self::ensureActorProfile($activity);
2121             if ($oprofile->isGroup() || $oprofile->isPeopletag()) {
2122                 // Groups can't post notices in StatusNet.
2123                 common_log(LOG_WARNING,
2124                     "OStatus: skipping post with group listed ".
2125                     "as author: $oprofile->uri in feed from $this->uri");
2126                 return false;
2127             }
2128         } else {
2129             $actor = $activity->actor;
2130
2131             if (empty($actor)) {
2132                 // OK here! assume the default
2133             } else if ($actor->id == $this->uri || $actor->link == $this->uri) {
2134                 $this->updateFromActivityObject($actor);
2135             } else if ($actor->id) {
2136                 // We have an ActivityStreams actor with an explicit ID that doesn't match the feed owner.
2137                 // This isn't what we expect from mainline OStatus person feeds!
2138                 // Group feeds go down another path, with different validation...
2139                 // Most likely this is a plain ol' blog feed of some kind which
2140                 // doesn't match our expectations. We'll take the entry, but ignore
2141                 // the <author> info.
2142                 common_log(LOG_WARNING, "Got an actor '{$actor->title}' ({$actor->id}) on single-user feed for {$this->uri}");
2143             } else {
2144                 // Plain <author> without ActivityStreams actor info.
2145                 // We'll just ignore this info for now and save the update under the feed's identity.
2146             }
2147
2148             $oprofile = $this;
2149         }
2150
2151         return $oprofile;
2152     }
2153 }
2154
2155 /**
2156  * Exception indicating we've got a remote reference to a local user,
2157  * not a remote user!
2158  *
2159  * If we can ue a local profile after all, it's available as $e->profile.
2160  */
2161 class OStatusShadowException extends Exception
2162 {
2163     public $profile;
2164
2165     /**
2166      * @param Profile $profile
2167      * @param string $message
2168      */
2169     function __construct($profile, $message) {
2170         $this->profile = $profile;
2171         parent::__construct($message);
2172     }
2173 }