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