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