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