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