]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Notice.php
Merge branch 'master' of https://git.gnu.io/gnu/gnu-social into social-master
[quix0rs-gnu-social.git] / classes / Notice.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008-2011 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  * @category Notices
20  * @package  StatusNet
21  * @author   Brenda Wallace <shiny@cpan.org>
22  * @author   Christopher Vollick <psycotica0@gmail.com>
23  * @author   CiaranG <ciaran@ciarang.com>
24  * @author   Craig Andrews <candrews@integralblue.com>
25  * @author   Evan Prodromou <evan@controlezvous.ca>
26  * @author   Gina Haeussge <osd@foosel.net>
27  * @author   Jeffery To <jeffery.to@gmail.com>
28  * @author   Mike Cochrane <mikec@mikenz.geek.nz>
29  * @author   Robin Millette <millette@controlyourself.ca>
30  * @author   Sarven Capadisli <csarven@controlyourself.ca>
31  * @author   Tom Adams <tom@holizz.com>
32  * @author   Mikael Nordfeldth <mmn@hethane.se>
33  * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
34  * @license  GNU Affero General Public License http://www.gnu.org/licenses/
35  */
36
37 if (!defined('GNUSOCIAL')) { exit(1); }
38
39 /**
40  * Table Definition for notice
41  */
42
43 /* We keep 200 notices, the max number of notices available per API request,
44  * in the memcached cache. */
45
46 define('NOTICE_CACHE_WINDOW', CachingNoticeStream::CACHE_WINDOW);
47
48 define('MAX_BOXCARS', 128);
49
50 class Notice extends Managed_DataObject
51 {
52     ###START_AUTOCODE
53     /* the code below is auto generated do not remove the above tag */
54
55     public $__table = 'notice';                          // table name
56     public $id;                              // int(4)  primary_key not_null
57     public $profile_id;                      // int(4)  multiple_key not_null
58     public $uri;                             // varchar(191)  unique_key   not 255 because utf8mb4 takes more space
59     public $content;                         // text
60     public $rendered;                        // text
61     public $url;                             // varchar(191)   not 255 because utf8mb4 takes more space
62     public $created;                         // datetime  multiple_key not_null default_0000-00-00%2000%3A00%3A00
63     public $modified;                        // timestamp   not_null default_CURRENT_TIMESTAMP
64     public $reply_to;                        // int(4)
65     public $is_local;                        // int(4)
66     public $source;                          // varchar(32)
67     public $conversation;                    // int(4)
68     public $lat;                             // decimal(10,7)
69     public $lon;                             // decimal(10,7)
70     public $location_id;                     // int(4)
71     public $location_ns;                     // int(4)
72     public $repeat_of;                       // int(4)
73     public $verb;                            // varchar(191)   not 255 because utf8mb4 takes more space
74     public $object_type;                     // varchar(191)   not 255 because utf8mb4 takes more space
75     public $scope;                           // int(4)
76
77     /* the code above is auto generated do not remove the tag below */
78     ###END_AUTOCODE
79
80     public static function schemaDef()
81     {
82         $def = array(
83             'fields' => array(
84                 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'),
85                 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'who made the update'),
86                 'uri' => array('type' => 'varchar', 'length' => 191, 'description' => 'universally unique identifier, usually a tag URI'),
87                 'content' => array('type' => 'text', 'description' => 'update content', 'collate' => 'utf8mb4_general_ci'),
88                 'rendered' => array('type' => 'text', 'description' => 'HTML version of the content'),
89                 'url' => array('type' => 'varchar', 'length' => 191, 'description' => 'URL of any attachment (image, video, bookmark, whatever)'),
90                 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
91                 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
92                 'reply_to' => array('type' => 'int', 'description' => 'notice replied to (usually a guess)'),
93                 'is_local' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'notice was generated by a user'),
94                 'source' => array('type' => 'varchar', 'length' => 32, 'description' => 'source of comment, like "web", "im", or "clientname"'),
95                 'conversation' => array('type' => 'int', 'description' => 'id of root notice in this conversation'),
96                 'lat' => array('type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'latitude'),
97                 'lon' => array('type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'longitude'),
98                 'location_id' => array('type' => 'int', 'description' => 'location id if possible'),
99                 'location_ns' => array('type' => 'int', 'description' => 'namespace for location'),
100                 'repeat_of' => array('type' => 'int', 'description' => 'notice this is a repeat of'),
101                 'object_type' => array('type' => 'varchar', 'length' => 191, 'description' => 'URI representing activity streams object type', 'default' => 'http://activitystrea.ms/schema/1.0/note'),
102                 'verb' => array('type' => 'varchar', 'length' => 191, 'description' => 'URI representing activity streams verb', 'default' => 'http://activitystrea.ms/schema/1.0/post'),
103                 'scope' => array('type' => 'int',
104                                  'description' => 'bit map for distribution scope; 0 = everywhere; 1 = this server only; 2 = addressees; 4 = followers; null = default'),
105             ),
106             'primary key' => array('id'),
107             'unique keys' => array(
108                 'notice_uri_key' => array('uri'),
109             ),
110             'foreign keys' => array(
111                 'notice_profile_id_fkey' => array('profile', array('profile_id' => 'id')),
112                 'notice_reply_to_fkey' => array('notice', array('reply_to' => 'id')),
113                 'notice_conversation_fkey' => array('conversation', array('conversation' => 'id')), # note... used to refer to notice.id
114                 'notice_repeat_of_fkey' => array('notice', array('repeat_of' => 'id')), # @fixme: what about repeats of deleted notices?
115             ),
116             'indexes' => array(
117                 'notice_created_id_is_local_idx' => array('created', 'id', 'is_local'),
118                 'notice_profile_id_idx' => array('profile_id', 'created', 'id'),
119                 'notice_repeat_of_created_id_idx' => array('repeat_of', 'created', 'id'),
120                 'notice_conversation_created_id_idx' => array('conversation', 'created', 'id'),
121                 'notice_replyto_idx' => array('reply_to')
122             )
123         );
124
125         if (common_config('search', 'type') == 'fulltext') {
126             $def['fulltext indexes'] = array('content' => array('content'));
127         }
128
129         return $def;
130     }
131
132     /* Notice types */
133     const LOCAL_PUBLIC    =  1;
134     const REMOTE          =  0;
135     const LOCAL_NONPUBLIC = -1;
136     const GATEWAY         = -2;
137
138     const PUBLIC_SCOPE    = 0; // Useful fake constant
139     const SITE_SCOPE      = 1;
140     const ADDRESSEE_SCOPE = 2;
141     const GROUP_SCOPE     = 4;
142     const FOLLOWER_SCOPE  = 8;
143
144     protected $_profile = array();
145
146     /**
147      * Will always return a profile, if anything fails it will
148      * (through _setProfile) throw a NoProfileException.
149      */
150     public function getProfile()
151     {
152         if (!isset($this->_profile[$this->profile_id])) {
153             // We could've sent getKV directly to _setProfile, but occasionally we get
154             // a "false" (instead of null), likely because it indicates a cache miss.
155             $profile = Profile::getKV('id', $this->profile_id);
156             $this->_setProfile($profile instanceof Profile ? $profile : null);
157         }
158         return $this->_profile[$this->profile_id];
159     }
160
161     public function _setProfile(Profile $profile=null)
162     {
163         if (!$profile instanceof Profile) {
164             throw new NoProfileException($this->profile_id);
165         }
166         $this->_profile[$this->profile_id] = $profile;
167     }
168
169     function delete($useWhere=false)
170     {
171         // For auditing purposes, save a record that the notice
172         // was deleted.
173
174         // @fixme we have some cases where things get re-run and so the
175         // insert fails.
176         $deleted = Deleted_notice::getKV('id', $this->id);
177
178         if (!$deleted instanceof Deleted_notice) {
179             $deleted = Deleted_notice::getKV('uri', $this->uri);
180         }
181
182         if (!$deleted instanceof Deleted_notice) {
183             $deleted = new Deleted_notice();
184
185             $deleted->id         = $this->id;
186             $deleted->profile_id = $this->profile_id;
187             $deleted->uri        = $this->uri;
188             $deleted->created    = $this->created;
189             $deleted->deleted    = common_sql_now();
190
191             $deleted->insert();
192         }
193
194         if (Event::handle('NoticeDeleteRelated', array($this))) {
195
196             // Clear related records
197
198             $this->clearReplies();
199             $this->clearRepeats();
200             $this->clearTags();
201             $this->clearGroupInboxes();
202             $this->clearFiles();
203             $this->clearAttentions();
204
205             // NOTE: we don't clear queue items
206         }
207
208         $result = parent::delete($useWhere);
209
210         $this->blowOnDelete();
211         return $result;
212     }
213
214     public function getUri()
215     {
216         return $this->uri;
217     }
218
219     /*
220      * Get a Notice object by URI. Will call external plugins for help
221      * using the event StartGetNoticeFromURI.
222      *
223      * @param string $uri A unique identifier for a resource (notice in this case)
224      */
225     static function fromUri($uri)
226     {
227         $notice = null;
228
229         if (Event::handle('StartGetNoticeFromUri', array($uri, &$notice))) {
230             $notice = Notice::getKV('uri', $uri);
231             Event::handle('EndGetNoticeFromUri', array($uri, $notice));
232         }
233
234         if (!$notice instanceof Notice) {
235             throw new UnknownUriException($uri);
236         }
237
238         return $notice;
239     }
240
241     /*
242      * @param $root boolean If true, link to just the conversation root.
243      *
244      * @return URL to conversation
245      */
246     public function getConversationUrl($anchor=true)
247     {
248         return Conversation::getUrlFromNotice($this, $anchor);
249     }
250
251     /*
252      * Get the local representation URL of this notice.
253      */
254     public function getLocalUrl()
255     {
256         return common_local_url('shownotice', array('notice' => $this->id), null, null, false);
257     }
258
259     public function getTitle()
260     {
261         $title = null;
262         if (Event::handle('GetNoticeTitle', array($this, &$title))) {
263             // TRANS: Title of a notice posted without a title value.
264             // TRANS: %1$s is a user name, %2$s is the notice creation date/time.
265             $title = sprintf(_('%1$s\'s status on %2$s'),
266                              $this->getProfile()->getFancyName(),
267                              common_exact_date($this->created));
268         }
269         return $title;
270     }
271
272     public function getContent()
273     {
274         return $this->content;
275     }
276
277     /*
278      * Get the original representation URL of this notice.
279      *
280      * @param boolean $fallback     Whether to fall back to generate a local URL or throw InvalidUrlException
281      */
282     public function getUrl($fallback=false)
283     {
284         // The risk is we start having empty urls and non-http uris...
285         // and we can't really handle any other protocol right now.
286         switch (true) {
287         case common_valid_http_url($this->url): // should we allow non-http/https URLs?
288             return $this->url;
289         case !$this->isLocal() && common_valid_http_url($this->uri): // Sometimes we only have the URI for remote posts.
290             return $this->uri;
291         case $this->isLocal() || $fallback:
292             // let's generate a valid link to our locally available notice on demand
293             return common_local_url('shownotice', array('notice' => $this->id), null, null, false);
294         default:
295             common_debug('No URL available for notice: id='.$this->id);
296             throw new InvalidUrlException($this->url);
297         }
298     }
299
300     public function get_object_type($canonical=false) {
301         return $canonical
302                 ? ActivityObject::canonicalType($this->object_type)
303                 : $this->object_type;
304     }
305
306     public static function getByUri($uri)
307     {
308         $notice = new Notice();
309         $notice->uri = $uri;
310         if (!$notice->find(true)) {
311             throw new NoResultException($notice);
312         }
313         return $notice;
314     }
315
316     /**
317      * Extract #hashtags from this notice's content and save them to the database.
318      */
319     function saveTags()
320     {
321         /* extract all #hastags */
322         $count = preg_match_all('/(?:^|\s)#([\pL\pN_\-\.]{1,64})/u', strtolower($this->content), $match);
323         if (!$count) {
324             return true;
325         }
326
327         /* Add them to the database */
328         return $this->saveKnownTags($match[1]);
329     }
330
331     /**
332      * Record the given set of hash tags in the db for this notice.
333      * Given tag strings will be normalized and checked for dupes.
334      */
335     function saveKnownTags(array $hashtags)
336     {
337         //turn each into their canonical tag
338         //this is needed to remove dupes before saving e.g. #hash.tag = #hashtag
339         for($i=0; $i<count($hashtags); $i++) {
340             /* elide characters we don't want in the tag */
341             $hashtags[$i] = common_canonical_tag($hashtags[$i]);
342         }
343
344         foreach(array_unique($hashtags) as $hashtag) {
345             $this->saveTag($hashtag);
346             self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, $hashtag);
347         }
348         return true;
349     }
350
351     /**
352      * Record a single hash tag as associated with this notice.
353      * Tag format and uniqueness must be validated by caller.
354      */
355     function saveTag($hashtag)
356     {
357         $tag = new Notice_tag();
358         $tag->notice_id = $this->id;
359         $tag->tag = $hashtag;
360         $tag->created = $this->created;
361         $id = $tag->insert();
362
363         if (!$id) {
364             // TRANS: Server exception. %s are the error details.
365             throw new ServerException(sprintf(_('Database error inserting hashtag: %s.'),
366                                               $last_error->message));
367             return;
368         }
369
370         // if it's saved, blow its cache
371         $tag->blowCache(false);
372     }
373
374     /**
375      * Save a new notice and push it out to subscribers' inboxes.
376      * Poster's permissions are checked before sending.
377      *
378      * @param int $profile_id Profile ID of the poster
379      * @param string $content source message text; links may be shortened
380      *                        per current user's preference
381      * @param string $source source key ('web', 'api', etc)
382      * @param array $options Associative array of optional properties:
383      *              string 'created' timestamp of notice; defaults to now
384      *              int 'is_local' source/gateway ID, one of:
385      *                  Notice::LOCAL_PUBLIC    - Local, ok to appear in public timeline
386      *                  Notice::REMOTE          - Sent from a remote service;
387      *                                            hide from public timeline but show in
388      *                                            local "and friends" timelines
389      *                  Notice::LOCAL_NONPUBLIC - Local, but hide from public timeline
390      *                  Notice::GATEWAY         - From another non-OStatus service;
391      *                                            will not appear in public views
392      *              float 'lat' decimal latitude for geolocation
393      *              float 'lon' decimal longitude for geolocation
394      *              int 'location_id' geoname identifier
395      *              int 'location_ns' geoname namespace to interpret location_id
396      *              int 'reply_to'; notice ID this is a reply to
397      *              int 'repeat_of'; notice ID this is a repeat of
398      *              string 'uri' unique ID for notice; a unique tag uri (can be url or anything too)
399      *              string 'url' permalink to notice; defaults to local notice URL
400      *              string 'rendered' rendered HTML version of content
401      *              array 'replies' list of profile URIs for reply delivery in
402      *                              place of extracting @-replies from content.
403      *              array 'groups' list of group IDs to deliver to, in place of
404      *                              extracting ! tags from content
405      *              array 'tags' list of hashtag strings to save with the notice
406      *                           in place of extracting # tags from content
407      *              array 'urls' list of attached/referred URLs to save with the
408      *                           notice in place of extracting links from content
409      *              boolean 'distribute' whether to distribute the notice, default true
410      *              string 'object_type' URL of the associated object type (default ActivityObject::NOTE)
411      *              string 'verb' URL of the associated verb (default ActivityVerb::POST)
412      *              int 'scope' Scope bitmask; default to SITE_SCOPE on private sites, 0 otherwise
413      *
414      * @fixme tag override
415      *
416      * @return Notice
417      * @throws ClientException
418      */
419     static function saveNew($profile_id, $content, $source, array $options=array()) {
420         $defaults = array('uri' => null,
421                           'url' => null,
422                           'conversation' => null,   // URI of conversation
423                           'reply_to' => null,       // This will override convo URI if the parent is known
424                           'repeat_of' => null,      // This will override convo URI if the repeated notice is known
425                           'scope' => null,
426                           'distribute' => true,
427                           'object_type' => null,
428                           'verb' => null);
429
430         /*
431          * Above type-hint is already array, so simply count it, this saves
432          * "some" CPU cycles.
433          */
434         if (count($options) > 0) {
435             $options = array_merge($defaults, $options);
436         }
437
438         extract($options);
439
440         if (!isset($is_local)) {
441             $is_local = Notice::LOCAL_PUBLIC;
442         }
443
444         $profile = Profile::getKV('id', $profile_id);
445         if (!$profile instanceof Profile) {
446             // TRANS: Client exception thrown when trying to save a notice for an unknown user.
447             throw new ClientException(_('Problem saving notice. Unknown user.'));
448         }
449
450         $user = User::getKV('id', $profile_id);
451         if ($user instanceof User) {
452             // Use the local user's shortening preferences, if applicable.
453             $final = $user->shortenLinks($content);
454         } else {
455             $final = common_shorten_links($content);
456         }
457
458         if (Notice::contentTooLong($final)) {
459             // TRANS: Client exception thrown if a notice contains too many characters.
460             throw new ClientException(_('Problem saving notice. Too long.'));
461         }
462
463         if (common_config('throttle', 'enabled') && !Notice::checkEditThrottle($profile_id)) {
464             common_log(LOG_WARNING, 'Excessive posting by profile #' . $profile_id . '; throttled.');
465             // TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
466             throw new ClientException(_('Too many notices too fast; take a breather '.
467                                         'and post again in a few minutes.'));
468         }
469
470         if (common_config('site', 'dupelimit') > 0 && !Notice::checkDupes($profile_id, $final)) {
471             common_log(LOG_WARNING, 'Dupe posting by profile #' . $profile_id . '; throttled.');
472             // TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
473             throw new ClientException(_('Too many duplicate messages too quickly;'.
474                                         ' take a breather and post again in a few minutes.'));
475         }
476
477         if (!$profile->hasRight(Right::NEWNOTICE)) {
478             common_log(LOG_WARNING, "Attempted post from user disallowed to post: " . $profile->nickname);
479
480             // TRANS: Client exception thrown when a user tries to post while being banned.
481             throw new ClientException(_('You are banned from posting notices on this site.'), 403);
482         }
483
484         $notice = new Notice();
485         $notice->profile_id = $profile_id;
486
487         $autosource = common_config('public', 'autosource');
488
489         // Sandboxed are non-false, but not 1, either
490
491         if (!$profile->hasRight(Right::PUBLICNOTICE) ||
492             ($source && $autosource && in_array($source, $autosource))) {
493             $notice->is_local = Notice::LOCAL_NONPUBLIC;
494         } else {
495             $notice->is_local = $is_local;
496         }
497
498         if (!empty($created)) {
499             $notice->created = $created;
500         } else {
501             $notice->created = common_sql_now();
502         }
503
504         if (!$notice->isLocal()) {
505             // Only do these checks for non-local notices. Local notices will generate these values later.
506             if (!common_valid_http_url($url)) {
507                 common_debug('Bad notice URL: ['.$url.'], URI: ['.$uri.']. Cannot link back to original! This is normal for shared notices etc.');
508             }
509             if (empty($uri)) {
510                 throw new ServerException('No URI for remote notice. Cannot accept that.');
511             }
512         }
513
514         $notice->content = $final;
515
516         $notice->source = $source;
517         $notice->uri = $uri;
518         $notice->url = $url;
519
520         // Get the groups here so we can figure out replies and such
521         if (!isset($groups)) {
522             $groups = User_group::idsFromText($notice->content, $profile);
523         }
524
525         $reply = null;
526
527         // Handle repeat case
528
529         if (isset($repeat_of)) {
530
531             // Check for a private one
532
533             $repeat = Notice::getKV('id', $repeat_of);
534
535             if (!($repeat instanceof Notice)) {
536                 // TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice.
537                 throw new ClientException(_('Cannot repeat; original notice is missing or deleted.'));
538             }
539
540             if ($profile->id == $repeat->profile_id) {
541                 // TRANS: Client error displayed when trying to repeat an own notice.
542                 throw new ClientException(_('You cannot repeat your own notice.'));
543             }
544
545             if ($repeat->isPrivateScope()) {
546                 // TRANS: Client error displayed when trying to repeat a non-public notice.
547                 throw new ClientException(_('Cannot repeat a private notice.'), 403);
548             }
549
550             if (!$repeat->inScope($profile)) {
551                 // The generic checks above should cover this, but let's be sure!
552                 // TRANS: Client error displayed when trying to repeat a notice you cannot access.
553                 throw new ClientException(_('Cannot repeat a notice you cannot read.'), 403);
554             }
555
556             if ($profile->hasRepeated($repeat)) {
557                 // TRANS: Client error displayed when trying to repeat an already repeated notice.
558                 throw new ClientException(_('You already repeated that notice.'));
559             }
560
561             $notice->repeat_of = $repeat->id;
562             $notice->conversation = $repeat->conversation;
563         } else {
564             $reply = null;
565
566             // If $reply_to is specified, we check that it exists, and then
567             // return it if it does
568             if (!empty($reply_to)) {
569                 $reply = Notice::getKV('id', $reply_to);
570             } elseif (in_array($source, array('xmpp', 'mail', 'sms'))) {
571                 // If the source lacks capability of sending the "reply_to"
572                 // metadata, let's try to find an inline replyto-reference.
573                 $reply = self::getInlineReplyTo($profile, $final);
574             }
575
576             if ($reply instanceof Notice) {
577                 if (!$reply->inScope($profile)) {
578                     // TRANS: Client error displayed when trying to reply to a notice a the target has no access to.
579                     // TRANS: %1$s is a user nickname, %2$d is a notice ID (number).
580                     throw new ClientException(sprintf(_('%1$s has no access to notice %2$d.'),
581                                                       $profile->nickname, $reply->id), 403);
582                 }
583
584                 // If it's a repeat, the reply_to should be to the original
585                 if ($reply->isRepeat()) {
586                     $notice->reply_to = $reply->repeat_of;
587                 } else {
588                     $notice->reply_to = $reply->id;
589                 }
590                 // But the conversation ought to be the same :)
591                 $notice->conversation = $reply->conversation;
592
593                 // If the original is private to a group, and notice has
594                 // no group specified, make it to the same group(s)
595
596                 if (empty($groups) && ($reply->scope & Notice::GROUP_SCOPE)) {
597                     $groups = array();
598                     $replyGroups = $reply->getGroups();
599                     foreach ($replyGroups as $group) {
600                         if ($profile->isMember($group)) {
601                             $groups[] = $group->id;
602                         }
603                     }
604                 }
605
606                 // Scope set below
607             }
608
609             // If we don't know the reply, we might know the conversation!
610             // This will happen if a known remote user replies to an
611             // unknown remote user - within a known conversation.
612             if (empty($notice->conversation) and !empty($options['conversation'])) {
613                 $conv = Conversation::getKV('uri', $options['conversation']);
614                 if ($conv instanceof Conversation) {
615                     common_debug('Conversation stitched together from (probably) reply to unknown remote user. Activity creation time ('.$notice->created.') should maybe be compared to conversation creation time ('.$conv->created.').');
616                     $notice->conversation = $conv->id;
617                 } else {
618                     // Conversation URI was not found, so we must create it. But we can't create it
619                     // until we have a Notice ID because of the database layout...
620                     $notice->tmp_conv_uri = $options['conversation'];
621                 }
622             } else {
623                 // If we're not using the attached conversation URI let's remove it
624                 // so we don't mistake ourselves later, when creating our own Conversation.
625                 // This implies that the notice knows which conversation it belongs to.
626                 $options['conversation'] = null;
627             }
628         }
629
630         if (!empty($lat) && !empty($lon)) {
631             $notice->lat = $lat;
632             $notice->lon = $lon;
633         }
634
635         if (!empty($location_ns) && !empty($location_id)) {
636             $notice->location_id = $location_id;
637             $notice->location_ns = $location_ns;
638         }
639
640         if (!empty($rendered)) {
641             $notice->rendered = $rendered;
642         } else {
643             $notice->rendered = common_render_content($final, $notice);
644         }
645
646         if (empty($verb)) {
647             if ($notice->isRepeat()) {
648                 $notice->verb        = ActivityVerb::SHARE;
649                 $notice->object_type = ActivityObject::ACTIVITY;
650             } else {
651                 $notice->verb        = ActivityVerb::POST;
652             }
653         } else {
654             $notice->verb = $verb;
655         }
656
657         if (empty($object_type)) {
658             $notice->object_type = (empty($notice->reply_to)) ? ActivityObject::NOTE : ActivityObject::COMMENT;
659         } else {
660             $notice->object_type = $object_type;
661         }
662
663         if (is_null($scope) && $reply instanceof Notice) {
664             $notice->scope = $reply->scope;
665         } else {
666             $notice->scope = $scope;
667         }
668
669         $notice->scope = self::figureOutScope($profile, $groups, $notice->scope);
670
671         if (Event::handle('StartNoticeSave', array(&$notice))) {
672
673             // XXX: some of these functions write to the DB
674
675             try {
676                 $notice->insert();  // throws exception on failure
677                 // If it's not part of a conversation, it's
678                 // the beginning of a new conversation.
679                 if (empty($notice->conversation)) {
680                     $orig = clone($notice);
681                     // $act->context->conversation will be null if it was not provided
682                     $conv = Conversation::create($notice, $options['conversation']);
683                     $notice->conversation = $conv->id;
684                     $notice->update($orig);
685                 }
686             } catch (Exception $e) {
687                 // Let's test if we managed initial insert, which would imply
688                 // failing on some update-part (check 'insert()'). Delete if
689                 // something had been stored to the database.
690                 if (!empty($notice->id)) {
691                     $notice->delete();
692                 }
693                 throw $e;
694             }
695         }
696
697         // Clear the cache for subscribed users, so they'll update at next request
698         // XXX: someone clever could prepend instead of clearing the cache
699
700         // Save per-notice metadata...
701
702         if (isset($replies)) {
703             $notice->saveKnownReplies($replies);
704         } else {
705             $notice->saveReplies();
706         }
707
708         if (isset($tags)) {
709             $notice->saveKnownTags($tags);
710         } else {
711             $notice->saveTags();
712         }
713
714         // Note: groups may save tags, so must be run after tags are saved
715         // to avoid errors on duplicates.
716         // Note: groups should always be set.
717
718         $notice->saveKnownGroups($groups);
719
720         if (isset($urls)) {
721             $notice->saveKnownUrls($urls);
722         } else {
723             $notice->saveUrls();
724         }
725
726         if ($distribute) {
727             // Prepare inbox delivery, may be queued to background.
728             $notice->distribute();
729         }
730
731         return $notice;
732     }
733
734     static function saveActivity(Activity $act, Profile $actor, array $options=array())
735     {
736         // First check if we're going to let this Activity through from the specific actor
737         if (!$actor->hasRight(Right::NEWNOTICE)) {
738             common_log(LOG_WARNING, "Attempted post from user disallowed to post: " . $actor->getNickname());
739
740             // TRANS: Client exception thrown when a user tries to post while being banned.
741             throw new ClientException(_m('You are banned from posting notices on this site.'), 403);
742         }
743         if (common_config('throttle', 'enabled') && !self::checkEditThrottle($actor->id)) {
744             common_log(LOG_WARNING, 'Excessive posting by profile #' . $actor->id . '; throttled.');
745             // TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
746             throw new ClientException(_m('Too many notices too fast; take a breather '.
747                                         'and post again in a few minutes.'));
748         }
749
750         // Get ActivityObject properties
751         if (!empty($act->id)) {
752             // implied object
753             $options['uri'] = $act->id;
754             $options['url'] = $act->link;
755         } else {
756             $actobj = count($act->objects)==1 ? $act->objects[0] : null;
757             if (!is_null($actobj) && !empty($actobj->id)) {
758                 $options['uri'] = $actobj->id;
759                 if ($actobj->link) {
760                     $options['url'] = $actobj->link;
761                 } elseif (preg_match('!^https?://!', $actobj->id)) {
762                     $options['url'] = $actobj->id;
763                 }
764             }
765         }
766
767         $defaults = array(
768                           'groups'   => array(),
769                           'is_local' => self::LOCAL_PUBLIC,
770                           'mentions' => array(),
771                           'reply_to' => null,
772                           'repeat_of' => null,
773                           'scope' => null,
774                           'source' => 'unknown',
775                           'tags' => array(),
776                           'uri' => null,
777                           'url' => null,
778                           'urls' => array(),
779                           'distribute' => true);
780
781         // options will have default values when nothing has been supplied
782         $options = array_merge($defaults, $options);
783         foreach (array_keys($defaults) as $key) {
784             // Only convert the keynames we specify ourselves from 'defaults' array into variables
785             $$key = $options[$key];
786         }
787         extract($options, EXTR_SKIP);
788
789         $stored = new Notice();
790         if (!empty($uri)) {
791             $stored->uri = $uri;
792             if ($stored->find()) {
793                 common_debug('cannot create duplicate Notice URI: '.$stored->uri);
794                 throw new Exception('Notice URI already exists');
795             }
796         }
797
798         $stored->profile_id = $actor->id;
799         $stored->source = $source;
800         $stored->uri = $uri;
801         $stored->url = $url;
802         $stored->verb = $act->verb;
803
804         // Use the local user's shortening preferences, if applicable.
805         $stored->rendered = $actor->isLocal()
806                                 ? $actor->shortenLinks($act->content)
807                                 : $act->content;
808         $stored->content = common_strip_html($stored->rendered);
809
810         $autosource = common_config('public', 'autosource');
811
812         // Sandboxed are non-false, but not 1, either
813         if (!$actor->hasRight(Right::PUBLICNOTICE) ||
814             ($source && $autosource && in_array($source, $autosource))) {
815             $stored->is_local = Notice::LOCAL_NONPUBLIC;
816         }
817
818         // Maybe a missing act-time should be fatal if the actor is not local?
819         if (!empty($act->time)) {
820             $stored->created = common_sql_date($act->time);
821         } else {
822             $stored->created = common_sql_now();
823         }
824
825         $reply = null;
826         if ($act->context instanceof ActivityContext && !empty($act->context->replyToID)) {
827             $reply = self::getKV('uri', $act->context->replyToID);
828         }
829         if (!$reply instanceof Notice && $act->target instanceof ActivityObject) {
830             $reply = self::getKV('uri', $act->target->id);
831         }
832
833         if ($reply instanceof Notice) {
834             if (!$reply->inScope($actor)) {
835                 // TRANS: Client error displayed when trying to reply to a notice a the target has no access to.
836                 // TRANS: %1$s is a user nickname, %2$d is a notice ID (number).
837                 throw new ClientException(sprintf(_m('%1$s has no right to reply to notice %2$d.'), $actor->getNickname(), $reply->id), 403);
838             }
839
840             $stored->reply_to     = $reply->id;
841             $stored->conversation = $reply->conversation;
842
843             // If the original is private to a group, and notice has no group specified,
844             // make it to the same group(s)
845             if (empty($groups) && ($reply->scope & Notice::GROUP_SCOPE)) {
846                 $groups = array();
847                 $replyGroups = $reply->getGroups();
848                 foreach ($replyGroups as $group) {
849                     if ($actor->isMember($group)) {
850                         $groups[] = $group->id;
851                     }
852                 }
853             }
854
855             if (is_null($scope)) {
856                 $scope = $reply->scope;
857             }
858         }
859
860         if ($act->context instanceof ActivityContext) {
861             $location = $act->context->location;
862             if ($location) {
863                 $stored->lat = $location->lat;
864                 $stored->lon = $location->lon;
865                 if ($location->location_id) {
866                     $stored->location_ns = $location->location_ns;
867                     $stored->location_id = $location->location_id;
868                 }
869             }
870         } else {
871             $act->context = new ActivityContext();
872         }
873
874         $stored->scope = self::figureOutScope($actor, $groups, $scope);
875
876         foreach ($act->categories as $cat) {
877             if ($cat->term) {
878                 $term = common_canonical_tag($cat->term);
879                 if (!empty($term)) {
880                     $tags[] = $term;
881                 }
882             }
883         }
884
885         foreach ($act->enclosures as $href) {
886             // @todo FIXME: Save these locally or....?
887             $urls[] = $href;
888         }
889
890         if (Event::handle('StartNoticeSave', array(&$stored))) {
891             // XXX: some of these functions write to the DB
892
893             try {
894                 $stored->insert();    // throws exception on error
895                 $orig = clone($stored); // for updating later in this try clause
896
897                 $object = null;
898                 Event::handle('StoreActivityObject', array($act, $stored, $options, &$object));
899                 if (empty($object)) {
900                     throw new ServerException('Unsuccessful call to StoreActivityObject '.$stored->uri . ': '.$act->asString());
901                 }
902
903                 // If it's not part of a conversation, it's
904                 // the beginning of a new conversation.
905                 if (empty($stored->conversation)) {
906                     // $act->context->conversation will be null if it was not provided
907                     $conv = Conversation::create($stored, $act->context->conversation);
908                     $stored->conversation = $conv->id;
909                 }
910
911                 $stored->update($orig);
912             } catch (Exception $e) {
913                 if (empty($stored->id)) {
914                     common_debug('Failed to save stored object entry in database ('.$e->getMessage().')');
915                 } else {
916                     common_debug('Failed to store activity object in database ('.$e->getMessage().'), deleting notice id '.$stored->id);
917                     $stored->delete();
918                 }
919                 throw $e;
920             }
921         }
922         if (!$stored instanceof Notice) {
923             throw new ServerException('StartNoticeSave did not give back a Notice');
924         }
925
926         // Save per-notice metadata...
927         $mentions = array();
928         $groups   = array();
929
930         // This event lets plugins filter out non-local recipients (attentions we don't care about)
931         // Used primarily for OStatus (and if we don't federate, all attentions would be local anyway)
932         Event::handle('GetLocalAttentions', array($actor, $act->context->attention, &$mentions, &$groups));
933
934         if (!empty($mentions)) {
935             $stored->saveKnownReplies($mentions);
936         } else {
937             $stored->saveReplies();
938         }
939
940         if (!empty($tags)) {
941             $stored->saveKnownTags($tags);
942         } else {
943             $stored->saveTags();
944         }
945
946         // Note: groups may save tags, so must be run after tags are saved
947         // to avoid errors on duplicates.
948         // Note: groups should always be set.
949
950         $stored->saveKnownGroups($groups);
951
952         if (!empty($urls)) {
953             $stored->saveKnownUrls($urls);
954         } else {
955             $stored->saveUrls();
956         }
957
958         if ($distribute) {
959             // Prepare inbox delivery, may be queued to background.
960             $stored->distribute();
961         }
962
963         return $stored;
964     }
965
966     static public function figureOutScope(Profile $actor, array $groups, $scope=null) {
967         if (is_null($scope)) {
968             $scope = self::defaultScope();
969         }
970
971         // For private streams
972         try {
973             $user = $actor->getUser();
974             // FIXME: We can't do bit comparison with == (Legacy StatusNet thing. Let's keep it for now.)
975             if ($user->private_stream && ($scope == Notice::PUBLIC_SCOPE || $scope == Notice::SITE_SCOPE)) {
976                 $scope |= Notice::FOLLOWER_SCOPE;
977             }
978         } catch (NoSuchUserException $e) {
979             // TODO: Not a local user, so we don't know about scope preferences... yet!
980         }
981
982         // Force the scope for private groups
983         foreach ($groups as $group_id) {
984             try {
985                 $group = User_group::getByID($group_id);
986                 if ($group->force_scope) {
987                     $scope |= Notice::GROUP_SCOPE;
988                     break;
989                 }
990             } catch (Exception $e) {
991                 common_log(LOG_ERR, 'Notice figureOutScope threw exception: '.$e->getMessage());
992             }
993         }
994
995         return $scope;
996     }
997
998     function blowOnInsert($conversation = false)
999     {
1000         $this->blowStream('profile:notice_ids:%d', $this->profile_id);
1001
1002         if ($this->isPublic()) {
1003             $this->blowStream('public');
1004             $this->blowStream('networkpublic');
1005         }
1006
1007         self::blow('notice:list-ids:conversation:%s', $this->conversation);
1008         self::blow('conversation:notice_count:%d', $this->conversation);
1009
1010         if ($this->isRepeat()) {
1011             // XXX: we should probably only use one of these
1012             $this->blowStream('notice:repeats:%d', $this->repeat_of);
1013             self::blow('notice:list-ids:repeat_of:%d', $this->repeat_of);
1014         }
1015
1016         $original = Notice::getKV('id', $this->repeat_of);
1017
1018         if ($original instanceof Notice) {
1019             $originalUser = User::getKV('id', $original->profile_id);
1020             if ($originalUser instanceof User) {
1021                 $this->blowStream('user:repeats_of_me:%d', $originalUser->id);
1022             }
1023         }
1024
1025         $profile = Profile::getKV($this->profile_id);
1026
1027         if ($profile instanceof Profile) {
1028             $profile->blowNoticeCount();
1029         }
1030
1031         $ptags = $this->getProfileTags();
1032         foreach ($ptags as $ptag) {
1033             $ptag->blowNoticeStreamCache();
1034         }
1035     }
1036
1037     /**
1038      * Clear cache entries related to this notice at delete time.
1039      * Necessary to avoid breaking paging on public, profile timelines.
1040      */
1041     function blowOnDelete()
1042     {
1043         $this->blowOnInsert();
1044
1045         self::blow('profile:notice_ids:%d;last', $this->profile_id);
1046
1047         if ($this->isPublic()) {
1048             self::blow('public;last');
1049             self::blow('networkpublic;last');
1050         }
1051
1052         self::blow('fave:by_notice', $this->id);
1053
1054         if ($this->conversation) {
1055             // In case we're the first, will need to calc a new root.
1056             self::blow('notice:conversation_root:%d', $this->conversation);
1057         }
1058
1059         $ptags = $this->getProfileTags();
1060         foreach ($ptags as $ptag) {
1061             $ptag->blowNoticeStreamCache(true);
1062         }
1063     }
1064
1065     function blowStream()
1066     {
1067         $c = self::memcache();
1068
1069         if (empty($c)) {
1070             return false;
1071         }
1072
1073         $args = func_get_args();
1074         $format = array_shift($args);
1075         $keyPart = vsprintf($format, $args);
1076         $cacheKey = Cache::key($keyPart);
1077         $c->delete($cacheKey);
1078
1079         // delete the "last" stream, too, if this notice is
1080         // older than the top of that stream
1081
1082         $lastKey = $cacheKey.';last';
1083
1084         $lastStr = $c->get($lastKey);
1085
1086         if ($lastStr !== false) {
1087             $window     = explode(',', $lastStr);
1088             $lastID     = $window[0];
1089             $lastNotice = Notice::getKV('id', $lastID);
1090             if (!$lastNotice instanceof Notice // just weird
1091                 || strtotime($lastNotice->created) >= strtotime($this->created)) {
1092                 $c->delete($lastKey);
1093             }
1094         }
1095     }
1096
1097     /** save all urls in the notice to the db
1098      *
1099      * follow redirects and save all available file information
1100      * (mimetype, date, size, oembed, etc.)
1101      *
1102      * @return void
1103      */
1104     function saveUrls() {
1105         if (common_config('attachments', 'process_links')) {
1106             common_replace_urls_callback($this->content, array($this, 'saveUrl'), $this);
1107         }
1108     }
1109
1110     /**
1111      * Save the given URLs as related links/attachments to the db
1112      *
1113      * follow redirects and save all available file information
1114      * (mimetype, date, size, oembed, etc.)
1115      *
1116      * @return void
1117      */
1118     function saveKnownUrls(array $urls)
1119     {
1120         if (common_config('attachments', 'process_links')) {
1121             // @fixme validation?
1122             foreach (array_unique($urls) as $url) {
1123                 $this->saveUrl($url, $this);
1124             }
1125         }
1126     }
1127
1128     /**
1129      * @private callback
1130      */
1131     function saveUrl($url, Notice $notice) {
1132         try {
1133             File::processNew($url, $notice);
1134         } catch (ServerException $e) {
1135             // Could not save URL. Log it?
1136         }
1137     }
1138
1139     static function checkDupes($profile_id, $content) {
1140         $profile = Profile::getKV($profile_id);
1141         if (!$profile instanceof Profile) {
1142             return false;
1143         }
1144         $notice = $profile->getNotices(0, CachingNoticeStream::CACHE_WINDOW);
1145         if (!empty($notice)) {
1146             $last = 0;
1147             while ($notice->fetch()) {
1148                 if (time() - strtotime($notice->created) >= common_config('site', 'dupelimit')) {
1149                     return true;
1150                 } else if ($notice->content == $content) {
1151                     return false;
1152                 }
1153             }
1154         }
1155         // If we get here, oldest item in cache window is not
1156         // old enough for dupe limit; do direct check against DB
1157         $notice = new Notice();
1158         $notice->profile_id = $profile_id;
1159         $notice->content = $content;
1160         $threshold = common_sql_date(time() - common_config('site', 'dupelimit'));
1161         $notice->whereAdd(sprintf("created > '%s'", $notice->escape($threshold)));
1162
1163         $cnt = $notice->count();
1164         return ($cnt == 0);
1165     }
1166
1167     static function checkEditThrottle($profile_id) {
1168         $profile = Profile::getKV($profile_id);
1169         if (!$profile instanceof Profile) {
1170             return false;
1171         }
1172         // Get the Nth notice
1173         $notice = $profile->getNotices(common_config('throttle', 'count') - 1, 1);
1174         if ($notice && $notice->fetch()) {
1175             // If the Nth notice was posted less than timespan seconds ago
1176             if (time() - strtotime($notice->created) <= common_config('throttle', 'timespan')) {
1177                 // Then we throttle
1178                 return false;
1179             }
1180         }
1181         // Either not N notices in the stream, OR the Nth was not posted within timespan seconds
1182         return true;
1183     }
1184
1185         protected $_attachments = array();
1186
1187     function attachments() {
1188                 if (isset($this->_attachments[$this->id])) {
1189             return $this->_attachments[$this->id];
1190         }
1191
1192         $f2ps = File_to_post::listGet('post_id', array($this->id));
1193                 $ids = array();
1194                 foreach ($f2ps[$this->id] as $f2p) {
1195             $ids[] = $f2p->file_id;
1196         }
1197
1198                 $files = File::multiGet('id', $ids);
1199                 $this->_attachments[$this->id] = $files->fetchAll();
1200         return $this->_attachments[$this->id];
1201     }
1202
1203         function _setAttachments($attachments)
1204         {
1205             $this->_attachments[$this->id] = $attachments;
1206         }
1207
1208     function publicStream($offset=0, $limit=20, $since_id=0, $max_id=0)
1209     {
1210         $stream = new PublicNoticeStream();
1211         return $stream->getNotices($offset, $limit, $since_id, $max_id);
1212     }
1213
1214
1215     function conversationStream($id, $offset=0, $limit=20, $since_id=0, $max_id=0)
1216     {
1217         $stream = new ConversationNoticeStream($id);
1218
1219         return $stream->getNotices($offset, $limit, $since_id, $max_id);
1220     }
1221
1222     /**
1223      * Is this notice part of an active conversation?
1224      *
1225      * @return boolean true if other messages exist in the same
1226      *                 conversation, false if this is the only one
1227      */
1228     function hasConversation()
1229     {
1230         if (!empty($this->conversation)) {
1231             $conversation = Notice::conversationStream(
1232                 $this->conversation,
1233                 1,
1234                 1
1235             );
1236
1237             if ($conversation->N > 0) {
1238                 return true;
1239             }
1240         }
1241         return false;
1242     }
1243
1244     /**
1245      * Grab the earliest notice from this conversation.
1246      *
1247      * @return Notice or null
1248      */
1249     function conversationRoot($profile=-1)
1250     {
1251         // XXX: can this happen?
1252
1253         if (empty($this->conversation)) {
1254             return null;
1255         }
1256
1257         // Get the current profile if not specified
1258
1259         if (is_int($profile) && $profile == -1) {
1260             $profile = Profile::current();
1261         }
1262
1263         // If this notice is out of scope, no root for you!
1264
1265         if (!$this->inScope($profile)) {
1266             return null;
1267         }
1268
1269         // If this isn't a reply to anything, then it's its own
1270         // root if it's the earliest notice in the conversation:
1271
1272         if (empty($this->reply_to)) {
1273             $root = new Notice;
1274             $root->conversation = $this->conversation;
1275             $root->orderBy('notice.created ASC');
1276             $root->find();
1277             $root->fetch();
1278             $root->free();
1279             return $root;
1280         }
1281
1282         if (is_null($profile)) {
1283             $keypart = sprintf('notice:conversation_root:%d:null', $this->id);
1284         } else {
1285             $keypart = sprintf('notice:conversation_root:%d:%d',
1286                                $this->id,
1287                                $profile->id);
1288         }
1289
1290         $root = self::cacheGet($keypart);
1291
1292         if ($root !== false && $root->inScope($profile)) {
1293             return $root;
1294         }
1295
1296         $last = $this;
1297         while (true) {
1298             try {
1299                 $parent = $last->getParent();
1300                 if ($parent->inScope($profile)) {
1301                     $last = $parent;
1302                     continue;
1303                 }
1304             } catch (NoParentNoticeException $e) {
1305                 // Latest notice has no parent
1306             }
1307             // No parent, or parent out of scope
1308             $root = $last;
1309             break;
1310         }
1311
1312         self::cacheSet($keypart, $root);
1313
1314         return $root;
1315     }
1316
1317     /**
1318      * Pull up a full list of local recipients who will be getting
1319      * this notice in their inbox. Results will be cached, so don't
1320      * change the input data wily-nilly!
1321      *
1322      * @param array $groups optional list of Group objects;
1323      *              if left empty, will be loaded from group_inbox records
1324      * @param array $recipient optional list of reply profile ids
1325      *              if left empty, will be loaded from reply records
1326      * @return array associating recipient user IDs with an inbox source constant
1327      */
1328     function whoGets(array $groups=null, array $recipients=null)
1329     {
1330         $c = self::memcache();
1331
1332         if (!empty($c)) {
1333             $ni = $c->get(Cache::key('notice:who_gets:'.$this->id));
1334             if ($ni !== false) {
1335                 return $ni;
1336             }
1337         }
1338
1339         if (is_null($recipients)) {
1340             $recipients = $this->getReplies();
1341         }
1342
1343         $ni = array();
1344
1345         // Give plugins a chance to add folks in at start...
1346         if (Event::handle('StartNoticeWhoGets', array($this, &$ni))) {
1347
1348             $users = $this->getSubscribedUsers();
1349             foreach ($users as $id) {
1350                 $ni[$id] = NOTICE_INBOX_SOURCE_SUB;
1351             }
1352
1353             if (is_null($groups)) {
1354                 $groups = $this->getGroups();
1355             }
1356             foreach ($groups as $group) {
1357                 $users = $group->getUserMembers();
1358                 foreach ($users as $id) {
1359                     if (!array_key_exists($id, $ni)) {
1360                         $ni[$id] = NOTICE_INBOX_SOURCE_GROUP;
1361                     }
1362                 }
1363             }
1364
1365             $ptAtts = $this->getAttentionsFromProfileTags();
1366             foreach ($ptAtts as $key=>$val) {
1367                 if (!array_key_exists($key, $ni)) {
1368                     $ni[$key] = $val;
1369                 }
1370             }
1371
1372             foreach ($recipients as $recipient) {
1373                 if (!array_key_exists($recipient, $ni)) {
1374                     $ni[$recipient] = NOTICE_INBOX_SOURCE_REPLY;
1375                 }
1376             }
1377
1378             // Exclude any deleted, non-local, or blocking recipients.
1379             $profile = $this->getProfile();
1380             $originalProfile = null;
1381             if ($this->isRepeat()) {
1382                 // Check blocks against the original notice's poster as well.
1383                 $original = Notice::getKV('id', $this->repeat_of);
1384                 if ($original instanceof Notice) {
1385                     $originalProfile = $original->getProfile();
1386                 }
1387             }
1388
1389             foreach ($ni as $id => $source) {
1390                 try {
1391                     $user = User::getKV('id', $id);
1392                     if (!$user instanceof User ||
1393                         $user->hasBlocked($profile) ||
1394                         ($originalProfile && $user->hasBlocked($originalProfile))) {
1395                         unset($ni[$id]);
1396                     }
1397                 } catch (UserNoProfileException $e) {
1398                     // User doesn't have a profile; invalid; skip them.
1399                     unset($ni[$id]);
1400                 }
1401             }
1402
1403             // Give plugins a chance to filter out...
1404             Event::handle('EndNoticeWhoGets', array($this, &$ni));
1405         }
1406
1407         if (!empty($c)) {
1408             // XXX: pack this data better
1409             $c->set(Cache::key('notice:who_gets:'.$this->id), $ni);
1410         }
1411
1412         return $ni;
1413     }
1414
1415     function getSubscribedUsers()
1416     {
1417         $user = new User();
1418
1419         if(common_config('db','quote_identifiers'))
1420           $user_table = '"user"';
1421         else $user_table = 'user';
1422
1423         $qry =
1424           'SELECT id ' .
1425           'FROM '. $user_table .' JOIN subscription '.
1426           'ON '. $user_table .'.id = subscription.subscriber ' .
1427           'WHERE subscription.subscribed = %d ';
1428
1429         $user->query(sprintf($qry, $this->profile_id));
1430
1431         $ids = array();
1432
1433         while ($user->fetch()) {
1434             $ids[] = $user->id;
1435         }
1436
1437         $user->free();
1438
1439         return $ids;
1440     }
1441
1442     function getProfileTags()
1443     {
1444         $profile = $this->getProfile();
1445         $list    = $profile->getOtherTags($profile);
1446         $ptags   = array();
1447
1448         while($list->fetch()) {
1449             $ptags[] = clone($list);
1450         }
1451
1452         return $ptags;
1453     }
1454
1455     public function getAttentionsFromProfileTags()
1456     {
1457         $ni = array();
1458         $ptags = $this->getProfileTags();
1459         foreach ($ptags as $ptag) {
1460             $users = $ptag->getUserSubscribers();
1461             foreach ($users as $id) {
1462                 $ni[$id] = NOTICE_INBOX_SOURCE_PROFILE_TAG;
1463             }
1464         }
1465         return $ni;
1466     }
1467
1468     /**
1469      * Record this notice to the given group inboxes for delivery.
1470      * Overrides the regular parsing of !group markup.
1471      *
1472      * @param string $group_ids
1473      * @fixme might prefer URIs as identifiers, as for replies?
1474      *        best with generalizations on user_group to support
1475      *        remote groups better.
1476      */
1477     function saveKnownGroups($group_ids)
1478     {
1479         if (!is_array($group_ids)) {
1480             // TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
1481             throw new ServerException(_('Bad type provided to saveKnownGroups.'));
1482         }
1483
1484         $groups = array();
1485         foreach (array_unique($group_ids) as $id) {
1486             $group = User_group::getKV('id', $id);
1487             if ($group instanceof User_group) {
1488                 common_log(LOG_DEBUG, "Local delivery to group id $id, $group->nickname");
1489                 $result = $this->addToGroupInbox($group);
1490                 if (!$result) {
1491                     common_log_db_error($gi, 'INSERT', __FILE__);
1492                 }
1493
1494                 if (common_config('group', 'addtag')) {
1495                     // we automatically add a tag for every group name, too
1496
1497                     $tag = Notice_tag::pkeyGet(array('tag' => common_canonical_tag($group->nickname),
1498                                                      'notice_id' => $this->id));
1499
1500                     if (is_null($tag)) {
1501                         $this->saveTag($group->nickname);
1502                     }
1503                 }
1504
1505                 $groups[] = clone($group);
1506             } else {
1507                 common_log(LOG_ERR, "Local delivery to group id $id skipped, doesn't exist");
1508             }
1509         }
1510
1511         return $groups;
1512     }
1513
1514     function addToGroupInbox(User_group $group)
1515     {
1516         $gi = Group_inbox::pkeyGet(array('group_id' => $group->id,
1517                                          'notice_id' => $this->id));
1518
1519         if (!$gi instanceof Group_inbox) {
1520
1521             $gi = new Group_inbox();
1522
1523             $gi->group_id  = $group->id;
1524             $gi->notice_id = $this->id;
1525             $gi->created   = $this->created;
1526
1527             $result = $gi->insert();
1528
1529             if (!$result) {
1530                 common_log_db_error($gi, 'INSERT', __FILE__);
1531                 // TRANS: Server exception thrown when an update for a group inbox fails.
1532                 throw new ServerException(_('Problem saving group inbox.'));
1533             }
1534
1535             self::blow('user_group:notice_ids:%d', $gi->group_id);
1536         }
1537
1538         return true;
1539     }
1540
1541     /**
1542      * Save reply records indicating that this notice needs to be
1543      * delivered to the local users with the given URIs.
1544      *
1545      * Since this is expected to be used when saving foreign-sourced
1546      * messages, we won't deliver to any remote targets as that's the
1547      * source service's responsibility.
1548      *
1549      * Mail notifications etc will be handled later.
1550      *
1551      * @param array  $uris   Array of unique identifier URIs for recipients
1552      */
1553     function saveKnownReplies(array $uris)
1554     {
1555         if (empty($uris)) {
1556             return;
1557         }
1558
1559         $sender = Profile::getKV($this->profile_id);
1560
1561         foreach (array_unique($uris) as $uri) {
1562             try {
1563                 $profile = Profile::fromUri($uri);
1564             } catch (UnknownUriException $e) {
1565                 common_log(LOG_WARNING, "Unable to determine profile for URI '$uri'");
1566                 continue;
1567             }
1568
1569             if ($profile->hasBlocked($sender)) {
1570                 common_log(LOG_INFO, "Not saving reply to profile {$profile->id} ($uri) from sender {$sender->id} because of a block.");
1571                 continue;
1572             }
1573
1574             $this->saveReply($profile->id);
1575             self::blow('reply:stream:%d', $profile->id);
1576         }
1577
1578         return;
1579     }
1580
1581     /**
1582      * Pull @-replies from this message's content in StatusNet markup format
1583      * and save reply records indicating that this message needs to be
1584      * delivered to those users.
1585      *
1586      * Mail notifications to local profiles will be sent later.
1587      *
1588      * @return array of integer profile IDs
1589      */
1590
1591     function saveReplies()
1592     {
1593         // Don't save reply data for repeats
1594
1595         if ($this->isRepeat()) {
1596             return array();
1597         }
1598
1599         $sender = $this->getProfile();
1600
1601         $replied = array();
1602
1603         // If it's a reply, save for the replied-to author
1604         try {
1605             $parent = $this->getParent();
1606             $parentauthor = $parent->getProfile();
1607             $this->saveReply($parentauthor->id);
1608             $replied[$parentauthor->id] = 1;
1609             self::blow('reply:stream:%d', $parentauthor->id);
1610         } catch (NoParentNoticeException $e) {
1611             // Not a reply, since it has no parent!
1612         }
1613
1614         // @todo ideally this parser information would only
1615         // be calculated once.
1616
1617         $mentions = common_find_mentions($this->content, $this);
1618
1619         // store replied only for first @ (what user/notice what the reply directed,
1620         // we assume first @ is it)
1621
1622         foreach ($mentions as $mention) {
1623
1624             foreach ($mention['mentioned'] as $mentioned) {
1625
1626                 // skip if they're already covered
1627                 if (array_key_exists($mentioned->id, $replied)) {
1628                     continue;
1629                 }
1630
1631                 // Don't save replies from blocked profile to local user
1632
1633                 $mentioned_user = User::getKV('id', $mentioned->id);
1634                 if ($mentioned_user instanceof User && $mentioned_user->hasBlocked($sender)) {
1635                     continue;
1636                 }
1637
1638                 $this->saveReply($mentioned->id);
1639                 $replied[$mentioned->id] = 1;
1640                 self::blow('reply:stream:%d', $mentioned->id);
1641             }
1642         }
1643
1644         $recipientIds = array_keys($replied);
1645
1646         return $recipientIds;
1647     }
1648
1649     function saveReply($profileId)
1650     {
1651         $reply = new Reply();
1652
1653         $reply->notice_id  = $this->id;
1654         $reply->profile_id = $profileId;
1655         $reply->modified   = $this->created;
1656
1657         $reply->insert();
1658
1659         return $reply;
1660     }
1661
1662     protected $_replies = array();
1663
1664     /**
1665      * Pull the complete list of @-reply targets for this notice.
1666      *
1667      * @return array of integer profile ids
1668      */
1669     function getReplies()
1670     {
1671         if (isset($this->_replies[$this->id])) {
1672             return $this->_replies[$this->id];
1673         }
1674
1675         $replyMap = Reply::listGet('notice_id', array($this->id));
1676
1677         $ids = array();
1678
1679         foreach ($replyMap[$this->id] as $reply) {
1680             $ids[] = $reply->profile_id;
1681         }
1682
1683         $this->_setReplies($ids);
1684
1685         return $ids;
1686     }
1687
1688     function _setReplies(array $replies)
1689     {
1690         $this->_replies[$this->id] = $replies;
1691     }
1692
1693     /**
1694      * Pull the complete list of @-reply targets for this notice.
1695      *
1696      * @return array of Profiles
1697      */
1698     function getReplyProfiles()
1699     {
1700         $ids = $this->getReplies();
1701
1702         $profiles = Profile::multiGet('id', $ids);
1703
1704         return $profiles->fetchAll();
1705     }
1706
1707     /**
1708      * Send e-mail notifications to local @-reply targets.
1709      *
1710      * Replies must already have been saved; this is expected to be run
1711      * from the distrib queue handler.
1712      */
1713     function sendReplyNotifications()
1714     {
1715         // Don't send reply notifications for repeats
1716
1717         if ($this->isRepeat()) {
1718             return array();
1719         }
1720
1721         $recipientIds = $this->getReplies();
1722         if (Event::handle('StartNotifyMentioned', array($this, &$recipientIds))) {
1723             require_once INSTALLDIR.'/lib/mail.php';
1724
1725             foreach ($recipientIds as $recipientId) {
1726                 $user = User::getKV('id', $recipientId);
1727                 if ($user instanceof User) {
1728                     mail_notify_attn($user, $this);
1729                 }
1730             }
1731             Event::handle('EndNotifyMentioned', array($this, $recipientIds));
1732         }
1733     }
1734
1735     /**
1736      * Pull list of groups this notice needs to be delivered to,
1737      * as previously recorded by saveKnownGroups().
1738      *
1739      * @return array of Group objects
1740      */
1741
1742     protected $_groups = array();
1743
1744     function getGroups()
1745     {
1746         // Don't save groups for repeats
1747
1748         if (!empty($this->repeat_of)) {
1749             return array();
1750         }
1751
1752         if (isset($this->_groups[$this->id])) {
1753             return $this->_groups[$this->id];
1754         }
1755
1756         $gis = Group_inbox::listGet('notice_id', array($this->id));
1757
1758         $ids = array();
1759
1760                 foreach ($gis[$this->id] as $gi) {
1761                     $ids[] = $gi->group_id;
1762                 }
1763
1764                 $groups = User_group::multiGet('id', $ids);
1765                 $this->_setGroups($groups->fetchAll());
1766                 return $this->_groups[$this->id];
1767     }
1768
1769     function _setGroups(array $groups)
1770     {
1771         $this->_groups[$this->id] = $groups;
1772     }
1773
1774     /**
1775      * Convert a notice into an activity for export.
1776      *
1777      * @param Profile $scoped   The currently logged in/scoped profile
1778      *
1779      * @return Activity activity object representing this Notice.
1780      */
1781
1782     function asActivity(Profile $scoped=null)
1783     {
1784         $act = self::cacheGet(Cache::codeKey('notice:as-activity:'.$this->id));
1785
1786         if ($act instanceof Activity) {
1787             return $act;
1788         }
1789         $act = new Activity();
1790
1791         if (Event::handle('StartNoticeAsActivity', array($this, $act, $scoped))) {
1792
1793             $act->id      = $this->uri;
1794             $act->time    = strtotime($this->created);
1795             try {
1796                 $act->link    = $this->getUrl();
1797             } catch (InvalidUrlException $e) {
1798                 // The notice is probably a share or similar, which don't
1799                 // have a representational URL of their own.
1800             }
1801             $act->content = common_xml_safe_str($this->rendered);
1802
1803             $profile = $this->getProfile();
1804
1805             $act->actor            = $profile->asActivityObject();
1806             $act->actor->extra[]   = $profile->profileInfo($scoped);
1807
1808             $act->verb = $this->verb;
1809
1810             if (!$this->repeat_of) {
1811                 $act->objects[] = $this->asActivityObject();
1812             }
1813
1814             // XXX: should this be handled by default processing for object entry?
1815
1816             // Categories
1817
1818             $tags = $this->getTags();
1819
1820             foreach ($tags as $tag) {
1821                 $cat       = new AtomCategory();
1822                 $cat->term = $tag;
1823
1824                 $act->categories[] = $cat;
1825             }
1826
1827             // Enclosures
1828             // XXX: use Atom Media and/or File activity objects instead
1829
1830             $attachments = $this->attachments();
1831
1832             foreach ($attachments as $attachment) {
1833                 // Include local attachments in Activity
1834                 if (!empty($attachment->filename)) {
1835                     $act->enclosures[] = $attachment->getEnclosure();
1836                 }
1837             }
1838
1839             $ctx = new ActivityContext();
1840
1841             try {
1842                 $reply = $this->getParent();
1843                 $ctx->replyToID  = $reply->getUri();
1844                 $ctx->replyToUrl = $reply->getUrl(true);    // true for fallback to local URL, less messy
1845             } catch (NoParentNoticeException $e) {
1846                 // This is not a reply to something
1847             }
1848
1849             $ctx->location = $this->getLocation();
1850
1851             $conv = null;
1852
1853             if (!empty($this->conversation)) {
1854                 $conv = Conversation::getKV('id', $this->conversation);
1855                 if ($conv instanceof Conversation) {
1856                     $ctx->conversation = $conv->uri;
1857                 }
1858             }
1859
1860             $reply_ids = $this->getReplies();
1861
1862             foreach ($reply_ids as $id) {
1863                 $rprofile = Profile::getKV('id', $id);
1864                 if ($rprofile instanceof Profile) {
1865                     $ctx->attention[$rprofile->getUri()] = ActivityObject::PERSON;
1866                 }
1867             }
1868
1869             $groups = $this->getGroups();
1870
1871             foreach ($groups as $group) {
1872                 $ctx->attention[$group->getUri()] = ActivityObject::GROUP;
1873             }
1874
1875             switch ($this->scope) {
1876             case Notice::PUBLIC_SCOPE:
1877                 $ctx->attention[ActivityContext::ATTN_PUBLIC] = ActivityObject::COLLECTION;
1878                 break;
1879             case Notice::FOLLOWER_SCOPE:
1880                 $surl = common_local_url("subscribers", array('nickname' => $profile->nickname));
1881                 $ctx->attention[$surl] = ActivityObject::COLLECTION;
1882                 break;
1883             }
1884
1885             $act->context = $ctx;
1886
1887             $source = $this->getSource();
1888
1889             if ($source instanceof Notice_source) {
1890                 $act->generator = ActivityObject::fromNoticeSource($source);
1891             }
1892
1893             // Source
1894
1895             $atom_feed = $profile->getAtomFeed();
1896
1897             if (!empty($atom_feed)) {
1898
1899                 $act->source = new ActivitySource();
1900
1901                 // XXX: we should store the actual feed ID
1902
1903                 $act->source->id = $atom_feed;
1904
1905                 // XXX: we should store the actual feed title
1906
1907                 $act->source->title = $profile->getBestName();
1908
1909                 $act->source->links['alternate'] = $profile->profileurl;
1910                 $act->source->links['self']      = $atom_feed;
1911
1912                 $act->source->icon = $profile->avatarUrl(AVATAR_PROFILE_SIZE);
1913
1914                 $notice = $profile->getCurrentNotice();
1915
1916                 if ($notice instanceof Notice) {
1917                     $act->source->updated = self::utcDate($notice->created);
1918                 }
1919
1920                 $user = User::getKV('id', $profile->id);
1921
1922                 if ($user instanceof User) {
1923                     $act->source->links['license'] = common_config('license', 'url');
1924                 }
1925             }
1926
1927             if ($this->isLocal()) {
1928                 $act->selfLink = common_local_url('ApiStatusesShow', array('id' => $this->id,
1929                                                                            'format' => 'atom'));
1930                 $act->editLink = $act->selfLink;
1931             }
1932
1933             Event::handle('EndNoticeAsActivity', array($this, $act, $scoped));
1934         }
1935
1936         self::cacheSet(Cache::codeKey('notice:as-activity:'.$this->id), $act);
1937
1938         return $act;
1939     }
1940
1941     // This has gotten way too long. Needs to be sliced up into functional bits
1942     // or ideally exported to a utility class.
1943
1944     function asAtomEntry($namespace=false,
1945                          $source=false,
1946                          $author=true,
1947                          Profile $scoped=null)
1948     {
1949         $act = $this->asActivity($scoped);
1950         $act->extra[] = $this->noticeInfo($scoped);
1951         return $act->asString($namespace, $author, $source);
1952     }
1953
1954     /**
1955      * Extra notice info for atom entries
1956      *
1957      * Clients use some extra notice info in the atom stream.
1958      * This gives it to them.
1959      *
1960      * @param Profile $scoped   The currently logged in/scoped profile
1961      *
1962      * @return array representation of <statusnet:notice_info> element
1963      */
1964
1965     function noticeInfo(Profile $scoped=null)
1966     {
1967         // local notice ID (useful to clients for ordering)
1968
1969         $noticeInfoAttr = array('local_id' => $this->id);
1970
1971         // notice source
1972
1973         $ns = $this->getSource();
1974
1975         if ($ns instanceof Notice_source) {
1976             $noticeInfoAttr['source'] =  $ns->code;
1977             if (!empty($ns->url)) {
1978                 $noticeInfoAttr['source_link'] = $ns->url;
1979                 if (!empty($ns->name)) {
1980                     $noticeInfoAttr['source'] =  '<a href="'
1981                         . htmlspecialchars($ns->url)
1982                         . '" rel="nofollow">'
1983                         . htmlspecialchars($ns->name)
1984                         . '</a>';
1985                 }
1986             }
1987         }
1988
1989         // favorite and repeated
1990
1991         if ($scoped instanceof Profile) {
1992             $noticeInfoAttr['repeated'] = ($scoped->hasRepeated($this)) ? "true" : "false";
1993         }
1994
1995         if (!empty($this->repeat_of)) {
1996             $noticeInfoAttr['repeat_of'] = $this->repeat_of;
1997         }
1998
1999         Event::handle('StatusNetApiNoticeInfo', array($this, &$noticeInfoAttr, $scoped));
2000
2001         return array('statusnet:notice_info', $noticeInfoAttr, null);
2002     }
2003
2004     /**
2005      * Returns an XML string fragment with a reference to a notice as an
2006      * Activity Streams noun object with the given element type.
2007      *
2008      * Assumes that 'activity' namespace has been previously defined.
2009      *
2010      * @param string $element one of 'subject', 'object', 'target'
2011      * @return string
2012      */
2013
2014     function asActivityNoun($element)
2015     {
2016         $noun = $this->asActivityObject();
2017         return $noun->asString('activity:' . $element);
2018     }
2019
2020     public function asActivityObject()
2021     {
2022         $object = new ActivityObject();
2023
2024         if (Event::handle('StartActivityObjectFromNotice', array($this, &$object))) {
2025             $object->type    = $this->object_type ?: ActivityObject::NOTE;
2026             $object->id      = $this->getUri();
2027             $object->title   = sprintf('New %1$s by %2$s', ActivityObject::canonicalType($object->type), $this->getProfile()->getNickname());
2028             $object->content = $this->rendered;
2029             $object->link    = $this->getUrl();
2030
2031             $object->extra[] = array('status_net', array('notice_id' => $this->id));
2032
2033             Event::handle('EndActivityObjectFromNotice', array($this, &$object));
2034         }
2035
2036         return $object;
2037     }
2038
2039     /**
2040      * Determine which notice, if any, a new notice is in reply to.
2041      *
2042      * For conversation tracking, we try to see where this notice fits
2043      * in the tree. Beware that this may very well give false positives
2044      * and add replies to wrong threads (if there have been newer posts
2045      * by the same user as we're replying to).
2046      *
2047      * @param Profile $sender     Author profile
2048      * @param string  $content    Final notice content
2049      *
2050      * @return integer ID of replied-to notice, or null for not a reply.
2051      */
2052
2053     static function getInlineReplyTo(Profile $sender, $content)
2054     {
2055         // Is there an initial @ or T?
2056         if (preg_match('/^T ([A-Z0-9]{1,64}) /', $content, $match)
2057                 || preg_match('/^@([a-z0-9]{1,64})\s+/', $content, $match)) {
2058             $nickname = common_canonical_nickname($match[1]);
2059         } else {
2060             return null;
2061         }
2062
2063         // Figure out who that is.
2064         $recipient = common_relative_profile($sender, $nickname, common_sql_now());
2065
2066         if ($recipient instanceof Profile) {
2067             // Get their last notice
2068             $last = $recipient->getCurrentNotice();
2069             if ($last instanceof Notice) {
2070                 return $last;
2071             }
2072             // Maybe in the future we want to handle something else below
2073             // so don't return getCurrentNotice() immediately.
2074         }
2075
2076         return null;
2077     }
2078
2079     static function maxContent()
2080     {
2081         $contentlimit = common_config('notice', 'contentlimit');
2082         // null => use global limit (distinct from 0!)
2083         if (is_null($contentlimit)) {
2084             $contentlimit = common_config('site', 'textlimit');
2085         }
2086         return $contentlimit;
2087     }
2088
2089     static function contentTooLong($content)
2090     {
2091         $contentlimit = self::maxContent();
2092         return ($contentlimit > 0 && !empty($content) && (mb_strlen($content) > $contentlimit));
2093     }
2094
2095     function getLocation()
2096     {
2097         $location = null;
2098
2099         if (!empty($this->location_id) && !empty($this->location_ns)) {
2100             $location = Location::fromId($this->location_id, $this->location_ns);
2101         }
2102
2103         if (is_null($location)) { // no ID, or Location::fromId() failed
2104             if (!empty($this->lat) && !empty($this->lon)) {
2105                 $location = Location::fromLatLon($this->lat, $this->lon);
2106             }
2107         }
2108
2109         return $location;
2110     }
2111
2112     /**
2113      * Convenience function for posting a repeat of an existing message.
2114      *
2115      * @param Profile $repeater Profile which is doing the repeat
2116      * @param string $source: posting source key, eg 'web', 'api', etc
2117      * @return Notice
2118      *
2119      * @throws Exception on failure or permission problems
2120      */
2121     function repeat(Profile $repeater, $source)
2122     {
2123         $author = $this->getProfile();
2124
2125         // TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
2126         // TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
2127         $content = sprintf(_('RT @%1$s %2$s'),
2128                            $author->getNickname(),
2129                            $this->content);
2130
2131         $maxlen = self::maxContent();
2132         if ($maxlen > 0 && mb_strlen($content) > $maxlen) {
2133             // Web interface and current Twitter API clients will
2134             // pull the original notice's text, but some older
2135             // clients and RSS/Atom feeds will see this trimmed text.
2136             //
2137             // Unfortunately this is likely to lose tags or URLs
2138             // at the end of long notices.
2139             $content = mb_substr($content, 0, $maxlen - 4) . ' ...';
2140         }
2141
2142
2143         // Scope is same as this one's
2144         return self::saveNew($repeater->id,
2145                              $content,
2146                              $source,
2147                              array('repeat_of' => $this->id,
2148                                    'scope' => $this->scope));
2149     }
2150
2151     // These are supposed to be in chron order!
2152
2153     function repeatStream($limit=100)
2154     {
2155         $cache = Cache::instance();
2156
2157         if (empty($cache)) {
2158             $ids = $this->_repeatStreamDirect($limit);
2159         } else {
2160             $idstr = $cache->get(Cache::key('notice:repeats:'.$this->id));
2161             if ($idstr !== false) {
2162                 if (empty($idstr)) {
2163                         $ids = array();
2164                 } else {
2165                         $ids = explode(',', $idstr);
2166                 }
2167             } else {
2168                 $ids = $this->_repeatStreamDirect(100);
2169                 $cache->set(Cache::key('notice:repeats:'.$this->id), implode(',', $ids));
2170             }
2171             if ($limit < 100) {
2172                 // We do a max of 100, so slice down to limit
2173                 $ids = array_slice($ids, 0, $limit);
2174             }
2175         }
2176
2177         return NoticeStream::getStreamByIds($ids);
2178     }
2179
2180     function _repeatStreamDirect($limit)
2181     {
2182         $notice = new Notice();
2183
2184         $notice->selectAdd(); // clears it
2185         $notice->selectAdd('id');
2186
2187         $notice->repeat_of = $this->id;
2188
2189         $notice->orderBy('created, id'); // NB: asc!
2190
2191         if (!is_null($limit)) {
2192             $notice->limit(0, $limit);
2193         }
2194
2195         return $notice->fetchAll('id');
2196     }
2197
2198     function locationOptions($lat, $lon, $location_id, $location_ns, $profile = null)
2199     {
2200         $options = array();
2201
2202         if (!empty($location_id) && !empty($location_ns)) {
2203             $options['location_id'] = $location_id;
2204             $options['location_ns'] = $location_ns;
2205
2206             $location = Location::fromId($location_id, $location_ns);
2207
2208             if ($location instanceof Location) {
2209                 $options['lat'] = $location->lat;
2210                 $options['lon'] = $location->lon;
2211             }
2212
2213         } else if (!empty($lat) && !empty($lon)) {
2214             $options['lat'] = $lat;
2215             $options['lon'] = $lon;
2216
2217             $location = Location::fromLatLon($lat, $lon);
2218
2219             if ($location instanceof Location) {
2220                 $options['location_id'] = $location->location_id;
2221                 $options['location_ns'] = $location->location_ns;
2222             }
2223         } else if (!empty($profile)) {
2224             if (isset($profile->lat) && isset($profile->lon)) {
2225                 $options['lat'] = $profile->lat;
2226                 $options['lon'] = $profile->lon;
2227             }
2228
2229             if (isset($profile->location_id) && isset($profile->location_ns)) {
2230                 $options['location_id'] = $profile->location_id;
2231                 $options['location_ns'] = $profile->location_ns;
2232             }
2233         }
2234
2235         return $options;
2236     }
2237
2238     function clearAttentions()
2239     {
2240         $att = new Attention();
2241         $att->notice_id = $this->getID();
2242
2243         if ($att->find()) {
2244             while ($att->fetch()) {
2245                 // Can't do delete() on the object directly since it won't remove all of it
2246                 $other = clone($att);
2247                 $other->delete();
2248             }
2249         }
2250     }
2251
2252     function clearReplies()
2253     {
2254         $replyNotice = new Notice();
2255         $replyNotice->reply_to = $this->id;
2256
2257         //Null any notices that are replies to this notice
2258
2259         if ($replyNotice->find()) {
2260             while ($replyNotice->fetch()) {
2261                 $orig = clone($replyNotice);
2262                 $replyNotice->reply_to = null;
2263                 $replyNotice->update($orig);
2264             }
2265         }
2266
2267         // Reply records
2268
2269         $reply = new Reply();
2270         $reply->notice_id = $this->id;
2271
2272         if ($reply->find()) {
2273             while($reply->fetch()) {
2274                 self::blow('reply:stream:%d', $reply->profile_id);
2275                 $reply->delete();
2276             }
2277         }
2278
2279         $reply->free();
2280     }
2281
2282     function clearFiles()
2283     {
2284         $f2p = new File_to_post();
2285
2286         $f2p->post_id = $this->id;
2287
2288         if ($f2p->find()) {
2289             while ($f2p->fetch()) {
2290                 $f2p->delete();
2291             }
2292         }
2293         // FIXME: decide whether to delete File objects
2294         // ...and related (actual) files
2295     }
2296
2297     function clearRepeats()
2298     {
2299         $repeatNotice = new Notice();
2300         $repeatNotice->repeat_of = $this->id;
2301
2302         //Null any notices that are repeats of this notice
2303
2304         if ($repeatNotice->find()) {
2305             while ($repeatNotice->fetch()) {
2306                 $orig = clone($repeatNotice);
2307                 $repeatNotice->repeat_of = null;
2308                 $repeatNotice->update($orig);
2309             }
2310         }
2311     }
2312
2313     function clearTags()
2314     {
2315         $tag = new Notice_tag();
2316         $tag->notice_id = $this->id;
2317
2318         if ($tag->find()) {
2319             while ($tag->fetch()) {
2320                 self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, Cache::keyize($tag->tag));
2321                 self::blow('profile:notice_ids_tagged:%d:%s;last', $this->profile_id, Cache::keyize($tag->tag));
2322                 self::blow('notice_tag:notice_ids:%s', Cache::keyize($tag->tag));
2323                 self::blow('notice_tag:notice_ids:%s;last', Cache::keyize($tag->tag));
2324                 $tag->delete();
2325             }
2326         }
2327
2328         $tag->free();
2329     }
2330
2331     function clearGroupInboxes()
2332     {
2333         $gi = new Group_inbox();
2334
2335         $gi->notice_id = $this->id;
2336
2337         if ($gi->find()) {
2338             while ($gi->fetch()) {
2339                 self::blow('user_group:notice_ids:%d', $gi->group_id);
2340                 $gi->delete();
2341             }
2342         }
2343
2344         $gi->free();
2345     }
2346
2347     function distribute()
2348     {
2349         // We always insert for the author so they don't
2350         // have to wait
2351         Event::handle('StartNoticeDistribute', array($this));
2352
2353         // If there's a failure, we want to _force_
2354         // distribution at this point.
2355         try {
2356             $qm = QueueManager::get();
2357             $qm->enqueue($this, 'distrib');
2358         } catch (Exception $e) {
2359             // If the exception isn't transient, this
2360             // may throw more exceptions as DQH does
2361             // its own enqueueing. So, we ignore them!
2362             try {
2363                 $handler = new DistribQueueHandler();
2364                 $handler->handle($this);
2365             } catch (Exception $e) {
2366                 common_log(LOG_ERR, "emergency redistribution resulted in " . $e->getMessage());
2367             }
2368             // Re-throw so somebody smarter can handle it.
2369             throw $e;
2370         }
2371     }
2372
2373     function insert()
2374     {
2375         $result = parent::insert();
2376
2377         if ($result === false) {
2378             common_log_db_error($this, 'INSERT', __FILE__);
2379             // TRANS: Server exception thrown when a stored object entry cannot be saved.
2380             throw new ServerException('Could not save Notice');
2381         }
2382
2383         // Profile::hasRepeated() abuses pkeyGet(), so we
2384         // have to clear manually
2385         if (!empty($this->repeat_of)) {
2386             $c = self::memcache();
2387             if (!empty($c)) {
2388                 $ck = self::multicacheKey('Notice',
2389                                           array('profile_id' => $this->profile_id,
2390                                                 'repeat_of' => $this->repeat_of));
2391                 $c->delete($ck);
2392             }
2393         }
2394
2395         // Update possibly ID-dependent columns: URI, conversation
2396         // (now that INSERT has added the notice's local id)
2397         $orig = clone($this);
2398         $changed = false;
2399
2400         // We can only get here if it's a local notice, since remote notices
2401         // should've bailed out earlier due to lacking a URI.
2402         if (empty($this->uri)) {
2403             $this->uri = sprintf('%s%s=%d:%s=%s',
2404                                 TagURI::mint(),
2405                                 'noticeId', $this->id,
2406                                 'objectType', $this->get_object_type(true));
2407             $changed = true;
2408         }
2409
2410         if ($changed && $this->update($orig) === false) {
2411             common_log_db_error($notice, 'UPDATE', __FILE__);
2412             // TRANS: Server exception thrown when a notice cannot be updated.
2413             throw new ServerException(_('Problem saving notice.'));
2414         }
2415
2416         $this->blowOnInsert();
2417
2418         return $result;
2419     }
2420
2421     /**
2422      * Get the source of the notice
2423      *
2424      * @return Notice_source $ns A notice source object. 'code' is the only attribute
2425      *                           guaranteed to be populated.
2426      */
2427     function getSource()
2428     {
2429         if (empty($this->source)) {
2430             return false;
2431         }
2432
2433         $ns = new Notice_source();
2434         switch ($this->source) {
2435         case 'web':
2436         case 'xmpp':
2437         case 'mail':
2438         case 'omb':
2439         case 'system':
2440         case 'api':
2441             $ns->code = $this->source;
2442             break;
2443         default:
2444             $ns = Notice_source::getKV($this->source);
2445             if (!$ns) {
2446                 $ns = new Notice_source();
2447                 $ns->code = $this->source;
2448                 $app = Oauth_application::getKV('name', $this->source);
2449                 if ($app) {
2450                     $ns->name = $app->name;
2451                     $ns->url  = $app->source_url;
2452                 }
2453             }
2454             break;
2455         }
2456
2457         return $ns;
2458     }
2459
2460     /**
2461      * Determine whether the notice was locally created
2462      *
2463      * @return boolean locality
2464      */
2465
2466     public function isLocal()
2467     {
2468         return ($this->is_local == Notice::LOCAL_PUBLIC ||
2469                 $this->is_local == Notice::LOCAL_NONPUBLIC);
2470     }
2471
2472     public function isRepeat()
2473     {
2474         return !empty($this->repeat_of);
2475     }
2476
2477     /**
2478      * Get the list of hash tags saved with this notice.
2479      *
2480      * @return array of strings
2481      */
2482     public function getTags()
2483     {
2484         // Check default scope (non-private notices)
2485         $inScope = (!$this->isPrivateScope());
2486
2487         // Get current profile
2488         $profile = Profile::current();
2489
2490         // Is the general scope check okay and the user in logged in?
2491         //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . ']: inScope=' . intval($inScope) . ',profile[]=' . gettype($profile));
2492         if (($inScope === TRUE) && ($profile instanceof Profile)) {
2493             /*
2494              * Check scope, else a privacy leaks happens this way:
2495              *
2496              * 1) Bob and Alice follow each other and write private notices
2497              *    (this->scope=2) to each other.
2498              * 2) Bob uses tags in his private notice to alice (which she can
2499              *    read from him).
2500              * 3) Alice adds that notice (with tags) to her favorites
2501              *    ("faving") it.
2502              * 4) The tags from Bob's private notice becomes visible in Alice's
2503              *    profile.
2504              *
2505              * This has the simple background that the scope is not being
2506              * re-checked. This has to be done here at this point because given
2507              * above scenario is a privacy leak as the tags may be *really*
2508              * private (nobody else shall see them) such as initmate words or
2509              * very political words.
2510              */
2511             $inScope = $this->inScope($profile);
2512             //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . ']: inScope=' . intval($inScope) . ' - After inScope() has been called.');
2513         }
2514
2515         $tags = array();
2516
2517         $keypart = sprintf('notice:tags:%d', $this->id);
2518
2519         $tagstr = self::cacheGet($keypart);
2520
2521         if ($tagstr !== false) {
2522             $tags = explode(',', $tagstr);
2523         } else {
2524             $tag = new Notice_tag();
2525             $tag->notice_id = $this->id;
2526
2527             // Check scope for privacy-leak protection (see some lines above why)
2528             if (($inScope === TRUE) && ($tag->find())) {
2529                 while ($tag->fetch()) {
2530                     $tags[] = $tag->tag;
2531                 }
2532             }
2533             self::cacheSet($keypart, implode(',', $tags));
2534         }
2535
2536         return $tags;
2537     }
2538
2539     static private function utcDate($dt)
2540     {
2541         $dateStr = date('d F Y H:i:s', strtotime($dt));
2542         $d = new DateTime($dateStr, new DateTimeZone('UTC'));
2543         return $d->format(DATE_W3C);
2544     }
2545
2546     /**
2547      * Look up the creation timestamp for a given notice ID, even
2548      * if it's been deleted.
2549      *
2550      * @param int $id
2551      * @return mixed string recorded creation timestamp, or false if can't be found
2552      */
2553     public static function getAsTimestamp($id)
2554     {
2555         if (!$id) {
2556             return false;
2557         }
2558
2559         $notice = Notice::getKV('id', $id);
2560         if ($notice) {
2561             return $notice->created;
2562         }
2563
2564         $deleted = Deleted_notice::getKV('id', $id);
2565         if ($deleted) {
2566             return $deleted->created;
2567         }
2568
2569         return false;
2570     }
2571
2572     /**
2573      * Build an SQL 'where' fragment for timestamp-based sorting from a since_id
2574      * parameter, matching notices posted after the given one (exclusive).
2575      *
2576      * If the referenced notice can't be found, will return false.
2577      *
2578      * @param int $id
2579      * @param string $idField
2580      * @param string $createdField
2581      * @return mixed string or false if no match
2582      */
2583     public static function whereSinceId($id, $idField='id', $createdField='created')
2584     {
2585         $since = Notice::getAsTimestamp($id);
2586         if ($since) {
2587             return sprintf("($createdField = '%s' and $idField > %d) or ($createdField > '%s')", $since, $id, $since);
2588         }
2589         return false;
2590     }
2591
2592     /**
2593      * Build an SQL 'where' fragment for timestamp-based sorting from a since_id
2594      * parameter, matching notices posted after the given one (exclusive), and
2595      * if necessary add it to the data object's query.
2596      *
2597      * @param DB_DataObject $obj
2598      * @param int $id
2599      * @param string $idField
2600      * @param string $createdField
2601      * @return mixed string or false if no match
2602      */
2603     public static function addWhereSinceId(DB_DataObject $obj, $id, $idField='id', $createdField='created')
2604     {
2605         $since = self::whereSinceId($id, $idField, $createdField);
2606         if ($since) {
2607             $obj->whereAdd($since);
2608         }
2609     }
2610
2611     /**
2612      * Build an SQL 'where' fragment for timestamp-based sorting from a max_id
2613      * parameter, matching notices posted before the given one (inclusive).
2614      *
2615      * If the referenced notice can't be found, will return false.
2616      *
2617      * @param int $id
2618      * @param string $idField
2619      * @param string $createdField
2620      * @return mixed string or false if no match
2621      */
2622     public static function whereMaxId($id, $idField='id', $createdField='created')
2623     {
2624         $max = Notice::getAsTimestamp($id);
2625         if ($max) {
2626             return sprintf("($createdField < '%s') or ($createdField = '%s' and $idField <= %d)", $max, $max, $id);
2627         }
2628         return false;
2629     }
2630
2631     /**
2632      * Build an SQL 'where' fragment for timestamp-based sorting from a max_id
2633      * parameter, matching notices posted before the given one (inclusive), and
2634      * if necessary add it to the data object's query.
2635      *
2636      * @param DB_DataObject $obj
2637      * @param int $id
2638      * @param string $idField
2639      * @param string $createdField
2640      * @return mixed string or false if no match
2641      */
2642     public static function addWhereMaxId(DB_DataObject $obj, $id, $idField='id', $createdField='created')
2643     {
2644         $max = self::whereMaxId($id, $idField, $createdField);
2645         if ($max) {
2646             $obj->whereAdd($max);
2647         }
2648     }
2649
2650     function isPublic()
2651     {
2652         return (($this->is_local != Notice::LOCAL_NONPUBLIC) &&
2653                 ($this->is_local != Notice::GATEWAY));
2654     }
2655
2656     public function isPrivateScope () {
2657         return ($this->scope != Notice::SITE_SCOPE &&
2658                 $this->scope != Notice::PUBLIC_SCOPE);
2659     }
2660
2661     /**
2662      * Check that the given profile is allowed to read, respond to, or otherwise
2663      * act on this notice.
2664      *
2665      * The $scope member is a bitmask of scopes, representing a logical AND of the
2666      * scope requirement. So, 0x03 (Notice::ADDRESSEE_SCOPE | Notice::SITE_SCOPE) means
2667      * "only visible to people who are mentioned in the notice AND are users on this site."
2668      * Users on the site who are not mentioned in the notice will not be able to see the
2669      * notice.
2670      *
2671      * @param Profile $profile The profile to check; pass null to check for public/unauthenticated users.
2672      *
2673      * @return boolean whether the profile is in the notice's scope
2674      */
2675     function inScope(Profile $profile=null)
2676     {
2677         if (is_null($profile)) {
2678             $keypart = sprintf('notice:in-scope-for:%d:null', $this->id);
2679         } else {
2680             $keypart = sprintf('notice:in-scope-for:%d:%d', $this->id, $profile->id);
2681         }
2682
2683         $result = self::cacheGet($keypart);
2684
2685         if ($result === false) {
2686             $bResult = false;
2687             if (Event::handle('StartNoticeInScope', array($this, $profile, &$bResult))) {
2688                 $bResult = $this->_inScope($profile);
2689                 Event::handle('EndNoticeInScope', array($this, $profile, &$bResult));
2690             }
2691             $result = ($bResult) ? 1 : 0;
2692             self::cacheSet($keypart, $result, 0, 300);
2693         }
2694
2695         return ($result == 1) ? true : false;
2696     }
2697
2698     protected function _inScope(Profile $profile=null)
2699     {
2700         if (!is_null($this->scope)) {
2701             $scope = $this->scope;
2702         } else {
2703             $scope = self::defaultScope();
2704         }
2705
2706         if ($scope == 0 && !$this->getProfile()->isPrivateStream()) { // Not scoping, so it is public.
2707             return !$this->isHiddenSpam($profile);
2708         }
2709
2710         // If there's scope, anon cannot be in scope
2711         if (empty($profile)) {
2712             return false;
2713         }
2714
2715         // Author is always in scope
2716         if ($this->profile_id == $profile->id) {
2717             return true;
2718         }
2719
2720         // Only for users on this site
2721         if (($scope & Notice::SITE_SCOPE) && !$profile->isLocal()) {
2722             return false;
2723         }
2724
2725         // Only for users mentioned in the notice
2726         if ($scope & Notice::ADDRESSEE_SCOPE) {
2727
2728             $reply = Reply::pkeyGet(array('notice_id' => $this->id,
2729                                          'profile_id' => $profile->id));
2730
2731             if (!$reply instanceof Reply) {
2732                 return false;
2733             }
2734         }
2735
2736         // Only for members of the given group
2737         if ($scope & Notice::GROUP_SCOPE) {
2738
2739             // XXX: just query for the single membership
2740
2741             $groups = $this->getGroups();
2742
2743             $foundOne = false;
2744
2745             foreach ($groups as $group) {
2746                 if ($profile->isMember($group)) {
2747                     $foundOne = true;
2748                     break;
2749                 }
2750             }
2751
2752             if (!$foundOne) {
2753                 return false;
2754             }
2755         }
2756
2757         if ($scope & Notice::FOLLOWER_SCOPE || $this->getProfile()->isPrivateStream()) {
2758
2759             if (!Subscription::exists($profile, $this->getProfile())) {
2760                 return false;
2761             }
2762         }
2763
2764         return !$this->isHiddenSpam($profile);
2765     }
2766
2767     function isHiddenSpam(Profile $profile=null) {
2768
2769         // Hide posts by silenced users from everyone but moderators.
2770
2771         if (common_config('notice', 'hidespam')) {
2772
2773             try {
2774                 $author = $this->getProfile();
2775             } catch(Exception $e) {
2776                 // If we can't get an author, keep it hidden.
2777                 // XXX: technically not spam, but, whatever.
2778                 return true;
2779             }
2780
2781             if ($author->hasRole(Profile_role::SILENCED)) {
2782                 if (!$profile instanceof Profile || (($profile->id !== $author->id) && (!$profile->hasRight(Right::REVIEWSPAM)))) {
2783                     return true;
2784                 }
2785             }
2786         }
2787
2788         return false;
2789     }
2790
2791     public function getParent()
2792     {
2793         if (empty($this->reply_to)) {
2794             throw new NoParentNoticeException($this);
2795         }
2796         return self::getByID($this->reply_to);
2797     }
2798
2799     /**
2800      * Magic function called at serialize() time.
2801      *
2802      * We use this to drop a couple process-specific references
2803      * from DB_DataObject which can cause trouble in future
2804      * processes.
2805      *
2806      * @return array of variable names to include in serialization.
2807      */
2808
2809     function __sleep()
2810     {
2811         $vars = parent::__sleep();
2812         $skip = array('_profile', '_groups', '_attachments', '_faves', '_replies', '_repeats');
2813         return array_diff($vars, $skip);
2814     }
2815
2816     static function defaultScope()
2817     {
2818         $scope = common_config('notice', 'defaultscope');
2819         if (is_null($scope)) {
2820                 if (common_config('site', 'private')) {
2821                         $scope = 1;
2822                 } else {
2823                         $scope = 0;
2824                 }
2825         }
2826         return $scope;
2827     }
2828
2829         static function fillProfiles(array $notices)
2830         {
2831                 $map = self::getProfiles($notices);
2832                 foreach ($notices as $entry=>$notice) {
2833             try {
2834                         if (array_key_exists($notice->profile_id, $map)) {
2835                                 $notice->_setProfile($map[$notice->profile_id]);
2836                         }
2837             } catch (NoProfileException $e) {
2838                 common_log(LOG_WARNING, "Failed to fill profile in Notice with non-existing entry for profile_id: {$e->profile_id}");
2839                 unset($notices[$entry]);
2840             }
2841                 }
2842
2843                 return array_values($map);
2844         }
2845
2846         static function getProfiles(array &$notices)
2847         {
2848                 $ids = array();
2849                 foreach ($notices as $notice) {
2850                         $ids[] = $notice->profile_id;
2851                 }
2852                 $ids = array_unique($ids);
2853                 return Profile::pivotGet('id', $ids);
2854         }
2855
2856         static function fillGroups(array &$notices)
2857         {
2858         $ids = self::_idsOf($notices);
2859         $gis = Group_inbox::listGet('notice_id', $ids);
2860         $gids = array();
2861
2862                 foreach ($gis as $id => $gi) {
2863                     foreach ($gi as $g)
2864                     {
2865                         $gids[] = $g->group_id;
2866                     }
2867                 }
2868
2869                 $gids = array_unique($gids);
2870                 $group = User_group::pivotGet('id', $gids);
2871                 foreach ($notices as $notice)
2872                 {
2873                         $grps = array();
2874                         $gi = $gis[$notice->id];
2875                         foreach ($gi as $g) {
2876                             $grps[] = $group[$g->group_id];
2877                         }
2878                     $notice->_setGroups($grps);
2879                 }
2880         }
2881
2882     static function _idsOf(array &$notices)
2883     {
2884                 $ids = array();
2885                 foreach ($notices as $notice) {
2886                         $ids[$notice->id] = true;
2887                 }
2888                 return array_keys($ids);
2889     }
2890
2891     static function fillAttachments(array &$notices)
2892     {
2893         $ids = self::_idsOf($notices);
2894         $f2pMap = File_to_post::listGet('post_id', $ids);
2895                 $fileIds = array();
2896                 foreach ($f2pMap as $noticeId => $f2ps) {
2897             foreach ($f2ps as $f2p) {
2898                 $fileIds[] = $f2p->file_id;
2899             }
2900         }
2901
2902         $fileIds = array_unique($fileIds);
2903                 $fileMap = File::pivotGet('id', $fileIds);
2904                 foreach ($notices as $notice)
2905                 {
2906                         $files = array();
2907                         $f2ps = $f2pMap[$notice->id];
2908                         foreach ($f2ps as $f2p) {
2909                             $files[] = $fileMap[$f2p->file_id];
2910                         }
2911                     $notice->_setAttachments($files);
2912                 }
2913     }
2914
2915     static function fillReplies(array &$notices)
2916     {
2917         $ids = self::_idsOf($notices);
2918         $replyMap = Reply::listGet('notice_id', $ids);
2919         foreach ($notices as $notice) {
2920             $replies = $replyMap[$notice->id];
2921             $ids = array();
2922             foreach ($replies as $reply) {
2923                 $ids[] = $reply->profile_id;
2924             }
2925             $notice->_setReplies($ids);
2926         }
2927     }
2928
2929     /**
2930      * Checks whether the current profile is allowed (in scope) to see this notice.
2931      *
2932      * @return $inScope Whether the current profile is allowed to see this notice
2933      */
2934     function isCurrentProfileInScope () {
2935         // Check scope, default is allowed
2936         $inScope = TRUE;
2937
2938         //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] this->tag=' . $this->tag . ',this->id=' . $this->id . ',this->scope=' . $this->scope);
2939
2940         // Is it private scope?
2941         if ($this->isPrivateScope()) {
2942             // 2) Get current profile
2943             $profile = Profile::current();
2944
2945             // Is the profile not set?
2946             if (!$profile instanceof Profile) {
2947                 // Public viewer shall not see a tag from a private dent (privacy leak)
2948                 //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] Not logged in (public view).');
2949                 $inScope = FALSE;
2950             } elseif (!$this->inScope($profile)) {
2951                 // Current profile is not in scope (not allowed to see) of notice
2952                 //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] profile->id=' . $profile->id . ' is not allowed to see this notice.');
2953                 $inScope = FALSE;
2954             }
2955         }
2956
2957         // Return result
2958         //* NOISY-DEBUG: */ common_debug('[' . __METHOD__ . ':' . __LINE__ . '] this->tag=' . $this->tag . ',this->weight=' . $this->weight . ',inScope=' . intval($inScope) . ' - EXIT!');
2959         return $inScope;
2960     }
2961 }