]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Notice.php
Merge branch 'backupaccount-xml' into 'nightly'
[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      */
1969
1970     function asActivity(Profile $scoped=null)
1971     {
1972         $act = self::cacheGet(Cache::codeKey('notice:as-activity:'.$this->id));
1973
1974         if ($act instanceof Activity) {
1975             return $act;
1976         }
1977         $act = new Activity();
1978
1979         if (Event::handle('StartNoticeAsActivity', array($this, $act, $scoped))) {
1980
1981             $act->id      = $this->uri;
1982             $act->time    = strtotime($this->created);
1983             try {
1984                 $act->link    = $this->getUrl();
1985             } catch (InvalidUrlException $e) {
1986                 // The notice is probably a share or similar, which don't
1987                 // have a representational URL of their own.
1988             }
1989             $act->content = common_xml_safe_str($this->getRendered());
1990
1991             $profile = $this->getProfile();
1992
1993             $act->actor            = $profile->asActivityObject();
1994             $act->actor->extra[]   = $profile->profileInfo($scoped);
1995
1996             $act->verb = $this->verb;
1997
1998             if (!$this->repeat_of) {
1999                 $act->objects[] = $this->asActivityObject();
2000             }
2001
2002             // XXX: should this be handled by default processing for object entry?
2003
2004             // Categories
2005
2006             $tags = $this->getTags();
2007
2008             foreach ($tags as $tag) {
2009                 $cat       = new AtomCategory();
2010                 $cat->term = $tag;
2011
2012                 $act->categories[] = $cat;
2013             }
2014
2015             // Enclosures
2016             // XXX: use Atom Media and/or File activity objects instead
2017
2018             $attachments = $this->attachments();
2019
2020             foreach ($attachments as $attachment) {
2021                 // Include local attachments in Activity
2022                 if (!empty($attachment->filename)) {
2023                     $act->enclosures[] = $attachment->getEnclosure();
2024                 }
2025             }
2026
2027             $ctx = new ActivityContext();
2028
2029             try {
2030                 $reply = $this->getParent();
2031                 $ctx->replyToID  = $reply->getUri();
2032                 $ctx->replyToUrl = $reply->getUrl(true);    // true for fallback to local URL, less messy
2033             } catch (NoParentNoticeException $e) {
2034                 // This is not a reply to something
2035             } catch (NoResultException $e) {
2036                 // Parent notice was probably deleted
2037             }
2038
2039             try {
2040                 $ctx->location = Notice_location::locFromStored($this);
2041             } catch (ServerException $e) {
2042                 $ctx->location = null;
2043             }
2044
2045             $conv = null;
2046
2047             if (!empty($this->conversation)) {
2048                 $conv = Conversation::getKV('id', $this->conversation);
2049                 if ($conv instanceof Conversation) {
2050                     $ctx->conversation = $conv->uri;
2051                     $ctx->conversation_url = $conv->url;
2052                 }
2053             }
2054
2055             // This covers the legacy getReplies and getGroups too which get their data
2056             // from entries stored via Notice::saveNew (which we want to move away from)...
2057             foreach ($this->getAttentionProfiles() as $target) {
2058                 // User and group profiles which get the attention of this notice
2059                 $ctx->attention[$target->getUri()] = $target->getObjectType();
2060             }
2061
2062             switch ($this->scope) {
2063             case Notice::PUBLIC_SCOPE:
2064                 $ctx->attention[ActivityContext::ATTN_PUBLIC] = ActivityObject::COLLECTION;
2065                 break;
2066             case Notice::FOLLOWER_SCOPE:
2067                 $surl = common_local_url("subscribers", array('nickname' => $profile->nickname));
2068                 $ctx->attention[$surl] = ActivityObject::COLLECTION;
2069                 break;
2070             }
2071
2072             $act->context = $ctx;
2073
2074             $source = $this->getSource();
2075
2076             if ($source instanceof Notice_source) {
2077                 $act->generator = ActivityObject::fromNoticeSource($source);
2078             }
2079
2080             // Source
2081
2082             $atom_feed = $profile->getAtomFeed();
2083
2084             if (!empty($atom_feed)) {
2085
2086                 $act->source = new ActivitySource();
2087
2088                 // XXX: we should store the actual feed ID
2089
2090                 $act->source->id = $atom_feed;
2091
2092                 // XXX: we should store the actual feed title
2093
2094                 $act->source->title = $profile->getBestName();
2095
2096                 $act->source->links['alternate'] = $profile->profileurl;
2097                 $act->source->links['self']      = $atom_feed;
2098
2099                 $act->source->icon = $profile->avatarUrl(AVATAR_PROFILE_SIZE);
2100
2101                 $notice = $profile->getCurrentNotice();
2102
2103                 if ($notice instanceof Notice) {
2104                     $act->source->updated = self::utcDate($notice->created);
2105                 }
2106
2107                 $user = User::getKV('id', $profile->id);
2108
2109                 if ($user instanceof User) {
2110                     $act->source->links['license'] = common_config('license', 'url');
2111                 }
2112             }
2113
2114             try {
2115                 $act->selfLink = $this->getSelfLink();
2116             } catch (InvalidUrlException $e) {
2117                 $act->selfLink = null;
2118             }
2119             if ($this->isLocal()) {
2120                 $act->editLink = $act->selfLink;
2121             }
2122
2123             Event::handle('EndNoticeAsActivity', array($this, $act, $scoped));
2124         }
2125
2126         self::cacheSet(Cache::codeKey('notice:as-activity:'.$this->id), $act);
2127
2128         return $act;
2129     }
2130
2131     // This has gotten way too long. Needs to be sliced up into functional bits
2132     // or ideally exported to a utility class.
2133
2134     function asAtomEntry($namespace=false,
2135                          $source=false,
2136                          $author=true,
2137                          Profile $scoped=null)
2138     {
2139         $act = $this->asActivity($scoped);
2140         $act->extra[] = $this->noticeInfo($scoped);
2141         return $act->asString($namespace, $author, $source);
2142     }
2143
2144     /**
2145      * Extra notice info for atom entries
2146      *
2147      * Clients use some extra notice info in the atom stream.
2148      * This gives it to them.
2149      *
2150      * @param Profile $scoped   The currently logged in/scoped profile
2151      *
2152      * @return array representation of <statusnet:notice_info> element
2153      */
2154
2155     function noticeInfo(Profile $scoped=null)
2156     {
2157         // local notice ID (useful to clients for ordering)
2158
2159         $noticeInfoAttr = array('local_id' => $this->id);
2160
2161         // notice source
2162
2163         $ns = $this->getSource();
2164
2165         if ($ns instanceof Notice_source) {
2166             $noticeInfoAttr['source'] =  $ns->code;
2167             if (!empty($ns->url)) {
2168                 $noticeInfoAttr['source_link'] = $ns->url;
2169                 if (!empty($ns->name)) {
2170                     $noticeInfoAttr['source'] = $ns->name;
2171                 }
2172             }
2173         }
2174
2175         // favorite and repeated
2176
2177         if ($scoped instanceof Profile) {
2178             $noticeInfoAttr['repeated'] = ($scoped->hasRepeated($this)) ? "true" : "false";
2179         }
2180
2181         if (!empty($this->repeat_of)) {
2182             $noticeInfoAttr['repeat_of'] = $this->repeat_of;
2183         }
2184
2185         Event::handle('StatusNetApiNoticeInfo', array($this, &$noticeInfoAttr, $scoped));
2186
2187         return array('statusnet:notice_info', $noticeInfoAttr, null);
2188     }
2189
2190     /**
2191      * Returns an XML string fragment with a reference to a notice as an
2192      * Activity Streams noun object with the given element type.
2193      *
2194      * Assumes that 'activity' namespace has been previously defined.
2195      *
2196      * @param string $element one of 'subject', 'object', 'target'
2197      * @return string
2198      */
2199
2200     function asActivityNoun($element)
2201     {
2202         $noun = $this->asActivityObject();
2203         return $noun->asString('activity:' . $element);
2204     }
2205
2206     public function asActivityObject()
2207     {
2208         $object = new ActivityObject();
2209
2210         if (Event::handle('StartActivityObjectFromNotice', array($this, &$object))) {
2211             $object->type    = $this->object_type ?: ActivityObject::NOTE;
2212             $object->id      = $this->getUri();
2213             //FIXME: = $object->title ?: sprintf(... because we might get a title from StartActivityObjectFromNotice
2214             $object->title   = sprintf('New %1$s by %2$s', ActivityObject::canonicalType($object->type), $this->getProfile()->getNickname());
2215             $object->content = $this->getRendered();
2216             $object->link    = $this->getUrl();
2217             try {
2218                 $object->selfLink = $this->getSelfLink();
2219             } catch (InvalidUrlException $e) {
2220                 $object->selfLink = null;
2221             }
2222
2223             $object->extra[] = array('statusnet:notice_id', null, $this->id);
2224
2225             Event::handle('EndActivityObjectFromNotice', array($this, &$object));
2226         }
2227
2228         if (!$object instanceof ActivityObject) {
2229             common_log(LOG_ERR, 'Notice asActivityObject created something else for uri=='._ve($this->getUri()).': '._ve($object));
2230             throw new ServerException('Notice asActivityObject created something else.');
2231         }
2232
2233         return $object;
2234     }
2235
2236     /**
2237      * Determine which notice, if any, a new notice is in reply to.
2238      *
2239      * For conversation tracking, we try to see where this notice fits
2240      * in the tree. Beware that this may very well give false positives
2241      * and add replies to wrong threads (if there have been newer posts
2242      * by the same user as we're replying to).
2243      *
2244      * @param Profile $sender     Author profile
2245      * @param string  $content    Final notice content
2246      *
2247      * @return integer ID of replied-to notice, or null for not a reply.
2248      */
2249
2250     static function getInlineReplyTo(Profile $sender, $content)
2251     {
2252         // Is there an initial @ or T?
2253         if (preg_match('/^T ([A-Z0-9]{1,64}) /', $content, $match)
2254                 || preg_match('/^@([a-z0-9]{1,64})\s+/', $content, $match)) {
2255             $nickname = common_canonical_nickname($match[1]);
2256         } else {
2257             return null;
2258         }
2259
2260         // Figure out who that is.
2261         $recipient = common_relative_profile($sender, $nickname, common_sql_now());
2262
2263         if ($recipient instanceof Profile) {
2264             // Get their last notice
2265             $last = $recipient->getCurrentNotice();
2266             if ($last instanceof Notice) {
2267                 return $last;
2268             }
2269             // Maybe in the future we want to handle something else below
2270             // so don't return getCurrentNotice() immediately.
2271         }
2272
2273         return null;
2274     }
2275
2276     static function maxContent()
2277     {
2278         $contentlimit = common_config('notice', 'contentlimit');
2279         // null => use global limit (distinct from 0!)
2280         if (is_null($contentlimit)) {
2281             $contentlimit = common_config('site', 'textlimit');
2282         }
2283         return $contentlimit;
2284     }
2285
2286     static function contentTooLong($content)
2287     {
2288         $contentlimit = self::maxContent();
2289         return ($contentlimit > 0 && !empty($content) && (mb_strlen($content) > $contentlimit));
2290     }
2291
2292     /**
2293      * Convenience function for posting a repeat of an existing message.
2294      *
2295      * @param Profile $repeater Profile which is doing the repeat
2296      * @param string $source: posting source key, eg 'web', 'api', etc
2297      * @return Notice
2298      *
2299      * @throws Exception on failure or permission problems
2300      */
2301     function repeat(Profile $repeater, $source)
2302     {
2303         $author = $this->getProfile();
2304
2305         // TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
2306         // TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
2307         $content = sprintf(_('RT @%1$s %2$s'),
2308                            $author->getNickname(),
2309                            $this->content);
2310
2311         $maxlen = self::maxContent();
2312         if ($maxlen > 0 && mb_strlen($content) > $maxlen) {
2313             // Web interface and current Twitter API clients will
2314             // pull the original notice's text, but some older
2315             // clients and RSS/Atom feeds will see this trimmed text.
2316             //
2317             // Unfortunately this is likely to lose tags or URLs
2318             // at the end of long notices.
2319             $content = mb_substr($content, 0, $maxlen - 4) . ' ...';
2320         }
2321
2322
2323         // Scope is same as this one's
2324         return self::saveNew($repeater->id,
2325                              $content,
2326                              $source,
2327                              array('repeat_of' => $this->id,
2328                                    'scope' => $this->scope));
2329     }
2330
2331     // These are supposed to be in chron order!
2332
2333     function repeatStream($limit=100)
2334     {
2335         $cache = Cache::instance();
2336
2337         if (empty($cache)) {
2338             $ids = $this->_repeatStreamDirect($limit);
2339         } else {
2340             $idstr = $cache->get(Cache::key('notice:repeats:'.$this->id));
2341             if ($idstr !== false) {
2342                 if (empty($idstr)) {
2343                         $ids = array();
2344                 } else {
2345                         $ids = explode(',', $idstr);
2346                 }
2347             } else {
2348                 $ids = $this->_repeatStreamDirect(100);
2349                 $cache->set(Cache::key('notice:repeats:'.$this->id), implode(',', $ids));
2350             }
2351             if ($limit < 100) {
2352                 // We do a max of 100, so slice down to limit
2353                 $ids = array_slice($ids, 0, $limit);
2354             }
2355         }
2356
2357         return NoticeStream::getStreamByIds($ids);
2358     }
2359
2360     function _repeatStreamDirect($limit)
2361     {
2362         $notice = new Notice();
2363
2364         $notice->selectAdd(); // clears it
2365         $notice->selectAdd('id');
2366
2367         $notice->repeat_of = $this->id;
2368
2369         $notice->orderBy('created, id'); // NB: asc!
2370
2371         if (!is_null($limit)) {
2372             $notice->limit(0, $limit);
2373         }
2374
2375         return $notice->fetchAll('id');
2376     }
2377
2378     static function locationOptions($lat, $lon, $location_id, $location_ns, $profile = null)
2379     {
2380         $options = array();
2381
2382         if (!empty($location_id) && !empty($location_ns)) {
2383             $options['location_id'] = $location_id;
2384             $options['location_ns'] = $location_ns;
2385
2386             $location = Location::fromId($location_id, $location_ns);
2387
2388             if ($location instanceof Location) {
2389                 $options['lat'] = $location->lat;
2390                 $options['lon'] = $location->lon;
2391             }
2392
2393         } else if (!empty($lat) && !empty($lon)) {
2394             $options['lat'] = $lat;
2395             $options['lon'] = $lon;
2396
2397             $location = Location::fromLatLon($lat, $lon);
2398
2399             if ($location instanceof Location) {
2400                 $options['location_id'] = $location->location_id;
2401                 $options['location_ns'] = $location->location_ns;
2402             }
2403         } else if (!empty($profile)) {
2404             if (isset($profile->lat) && isset($profile->lon)) {
2405                 $options['lat'] = $profile->lat;
2406                 $options['lon'] = $profile->lon;
2407             }
2408
2409             if (isset($profile->location_id) && isset($profile->location_ns)) {
2410                 $options['location_id'] = $profile->location_id;
2411                 $options['location_ns'] = $profile->location_ns;
2412             }
2413         }
2414
2415         return $options;
2416     }
2417
2418     function clearAttentions()
2419     {
2420         $att = new Attention();
2421         $att->notice_id = $this->getID();
2422
2423         if ($att->find()) {
2424             while ($att->fetch()) {
2425                 // Can't do delete() on the object directly since it won't remove all of it
2426                 $other = clone($att);
2427                 $other->delete();
2428             }
2429         }
2430     }
2431
2432     function clearReplies()
2433     {
2434         $replyNotice = new Notice();
2435         $replyNotice->reply_to = $this->id;
2436
2437         //Null any notices that are replies to this notice
2438
2439         if ($replyNotice->find()) {
2440             while ($replyNotice->fetch()) {
2441                 $orig = clone($replyNotice);
2442                 $replyNotice->reply_to = null;
2443                 $replyNotice->update($orig);
2444             }
2445         }
2446
2447         // Reply records
2448
2449         $reply = new Reply();
2450         $reply->notice_id = $this->id;
2451
2452         if ($reply->find()) {
2453             while($reply->fetch()) {
2454                 self::blow('reply:stream:%d', $reply->profile_id);
2455                 $reply->delete();
2456             }
2457         }
2458
2459         $reply->free();
2460     }
2461
2462     function clearLocation()
2463     {
2464         $loc = new Notice_location();
2465         $loc->notice_id = $this->id;
2466
2467         if ($loc->find()) {
2468             $loc->delete();
2469         }
2470     }
2471
2472     function clearFiles()
2473     {
2474         $f2p = new File_to_post();
2475
2476         $f2p->post_id = $this->id;
2477
2478         if ($f2p->find()) {
2479             while ($f2p->fetch()) {
2480                 $f2p->delete();
2481             }
2482         }
2483         // FIXME: decide whether to delete File objects
2484         // ...and related (actual) files
2485     }
2486
2487     function clearRepeats()
2488     {
2489         $repeatNotice = new Notice();
2490         $repeatNotice->repeat_of = $this->id;
2491
2492         //Null any notices that are repeats of this notice
2493
2494         if ($repeatNotice->find()) {
2495             while ($repeatNotice->fetch()) {
2496                 $orig = clone($repeatNotice);
2497                 $repeatNotice->repeat_of = null;
2498                 $repeatNotice->update($orig);
2499             }
2500         }
2501     }
2502
2503     function clearTags()
2504     {
2505         $tag = new Notice_tag();
2506         $tag->notice_id = $this->id;
2507
2508         if ($tag->find()) {
2509             while ($tag->fetch()) {
2510                 self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, Cache::keyize($tag->tag));
2511                 self::blow('profile:notice_ids_tagged:%d:%s;last', $this->profile_id, Cache::keyize($tag->tag));
2512                 self::blow('notice_tag:notice_ids:%s', Cache::keyize($tag->tag));
2513                 self::blow('notice_tag:notice_ids:%s;last', Cache::keyize($tag->tag));
2514                 $tag->delete();
2515             }
2516         }
2517
2518         $tag->free();
2519     }
2520
2521     function clearGroupInboxes()
2522     {
2523         $gi = new Group_inbox();
2524
2525         $gi->notice_id = $this->id;
2526
2527         if ($gi->find()) {
2528             while ($gi->fetch()) {
2529                 self::blow('user_group:notice_ids:%d', $gi->group_id);
2530                 $gi->delete();
2531             }
2532         }
2533
2534         $gi->free();
2535     }
2536
2537     function distribute()
2538     {
2539         // We always insert for the author so they don't
2540         // have to wait
2541         Event::handle('StartNoticeDistribute', array($this));
2542
2543         // If there's a failure, we want to _force_
2544         // distribution at this point.
2545         try {
2546             $json = json_encode((object)array('id' => $this->getID(),
2547                                               'type' => 'Notice',
2548                                               ));
2549             $qm = QueueManager::get();
2550             $qm->enqueue($json, 'distrib');
2551         } catch (Exception $e) {
2552             // If the exception isn't transient, this
2553             // may throw more exceptions as DQH does
2554             // its own enqueueing. So, we ignore them!
2555             try {
2556                 $handler = new DistribQueueHandler();
2557                 $handler->handle($this);
2558             } catch (Exception $e) {
2559                 common_log(LOG_ERR, "emergency redistribution resulted in " . $e->getMessage());
2560             }
2561             // Re-throw so somebody smarter can handle it.
2562             throw $e;
2563         }
2564     }
2565
2566     function insert()
2567     {
2568         $result = parent::insert();
2569
2570         if ($result === false) {
2571             common_log_db_error($this, 'INSERT', __FILE__);
2572             // TRANS: Server exception thrown when a stored object entry cannot be saved.
2573             throw new ServerException('Could not save Notice');
2574         }
2575
2576         // Profile::hasRepeated() abuses pkeyGet(), so we
2577         // have to clear manually
2578         if (!empty($this->repeat_of)) {
2579             $c = self::memcache();
2580             if (!empty($c)) {
2581                 $ck = self::multicacheKey('Notice',
2582                                           array('profile_id' => $this->profile_id,
2583                                                 'repeat_of' => $this->repeat_of));
2584                 $c->delete($ck);
2585             }
2586         }
2587
2588         // Update possibly ID-dependent columns: URI, conversation
2589         // (now that INSERT has added the notice's local id)
2590         $orig = clone($this);
2591         $changed = false;
2592
2593         // We can only get here if it's a local notice, since remote notices
2594         // should've bailed out earlier due to lacking a URI.
2595         if (empty($this->uri)) {
2596             $this->uri = sprintf('%s%s=%d:%s=%s',
2597                                 TagURI::mint(),
2598                                 'noticeId', $this->id,
2599                                 'objectType', $this->getObjectType(true));
2600             $changed = true;
2601         }
2602
2603         if ($changed && $this->update($orig) === false) {
2604             common_log_db_error($notice, 'UPDATE', __FILE__);
2605             // TRANS: Server exception thrown when a notice cannot be updated.
2606             throw new ServerException(_('Problem saving notice.'));
2607         }
2608
2609         $this->blowOnInsert();
2610
2611         return $result;
2612     }
2613
2614     /**
2615      * Get the source of the notice
2616      *
2617      * @return Notice_source $ns A notice source object. 'code' is the only attribute
2618      *                           guaranteed to be populated.
2619      */
2620     function getSource()
2621     {
2622         if (empty($this->source)) {
2623             return false;
2624         }
2625
2626         $ns = new Notice_source();
2627         switch ($this->source) {
2628         case 'web':
2629         case 'xmpp':
2630         case 'mail':
2631         case 'omb':
2632         case 'system':
2633         case 'api':
2634             $ns->code = $this->source;
2635             break;
2636         default:
2637             $ns = Notice_source::getKV($this->source);
2638             if (!$ns) {
2639                 $ns = new Notice_source();
2640                 $ns->code = $this->source;
2641                 $app = Oauth_application::getKV('name', $this->source);
2642                 if ($app) {
2643                     $ns->name = $app->name;
2644                     $ns->url  = $app->source_url;
2645                 }
2646             }
2647             break;
2648         }
2649
2650         return $ns;
2651     }
2652
2653     /**
2654      * Determine whether the notice was locally created
2655      *
2656      * @return boolean locality
2657      */
2658
2659     public function isLocal()
2660     {
2661         $is_local = intval($this->is_local);
2662         return ($is_local === self::LOCAL_PUBLIC || $is_local === self::LOCAL_NONPUBLIC);
2663     }
2664
2665     public function getScope()
2666     {
2667         return intval($this->scope);
2668     }
2669
2670     public function isRepeat()
2671     {
2672         return !empty($this->repeat_of);
2673     }
2674
2675     public function isRepeated()
2676     {
2677         $n = new Notice();
2678         $n->repeat_of = $this->getID();
2679         return $n->find() && $n->N > 0;
2680     }
2681
2682     /**
2683      * Get the list of hash tags saved with this notice.
2684      *
2685      * @return array of strings
2686      */
2687     public function getTags()
2688     {
2689         $tags = array();
2690
2691         $keypart = sprintf('notice:tags:%d', $this->id);
2692
2693         $tagstr = self::cacheGet($keypart);
2694
2695         if ($tagstr !== false) {
2696             $tags = explode(',', $tagstr);
2697         } else {
2698             $tag = new Notice_tag();
2699             $tag->notice_id = $this->id;
2700             if ($tag->find()) {
2701                 while ($tag->fetch()) {
2702                     $tags[] = $tag->tag;
2703                 }
2704             }
2705             self::cacheSet($keypart, implode(',', $tags));
2706         }
2707
2708         return $tags;
2709     }
2710
2711     static private function utcDate($dt)
2712     {
2713         $dateStr = date('d F Y H:i:s', strtotime($dt));
2714         $d = new DateTime($dateStr, new DateTimeZone('UTC'));
2715         return $d->format(DATE_W3C);
2716     }
2717
2718     /**
2719      * Look up the creation timestamp for a given notice ID, even
2720      * if it's been deleted.
2721      *
2722      * @param int $id
2723      * @return mixed string recorded creation timestamp, or false if can't be found
2724      */
2725     public static function getAsTimestamp($id)
2726     {
2727         if (empty($id)) {
2728             throw new EmptyPkeyValueException('Notice', 'id');
2729         }
2730
2731         $timestamp = null;
2732         if (Event::handle('GetNoticeSqlTimestamp', array($id, &$timestamp))) {
2733             // getByID throws exception if $id isn't found
2734             $notice = Notice::getByID($id);
2735             $timestamp = $notice->created;
2736         }
2737
2738         if (empty($timestamp)) {
2739             throw new ServerException('No timestamp found for Notice with id=='._ve($id));
2740         }
2741         return $timestamp;
2742     }
2743
2744     /**
2745      * Build an SQL 'where' fragment for timestamp-based sorting from a since_id
2746      * parameter, matching notices posted after the given one (exclusive).
2747      *
2748      * If the referenced notice can't be found, will return false.
2749      *
2750      * @param int $id
2751      * @param string $idField
2752      * @param string $createdField
2753      * @return mixed string or false if no match
2754      */
2755     public static function whereSinceId($id, $idField='id', $createdField='created')
2756     {
2757         try {
2758             $since = Notice::getAsTimestamp($id);
2759         } catch (Exception $e) {
2760             return false;
2761         }
2762         return sprintf("($createdField = '%s' and $idField > %d) or ($createdField > '%s')", $since, $id, $since);
2763     }
2764
2765     /**
2766      * Build an SQL 'where' fragment for timestamp-based sorting from a since_id
2767      * parameter, matching notices posted after the given one (exclusive), and
2768      * if necessary add it to the data object's query.
2769      *
2770      * @param DB_DataObject $obj
2771      * @param int $id
2772      * @param string $idField
2773      * @param string $createdField
2774      * @return mixed string or false if no match
2775      */
2776     public static function addWhereSinceId(DB_DataObject $obj, $id, $idField='id', $createdField='created')
2777     {
2778         $since = self::whereSinceId($id, $idField, $createdField);
2779         if ($since) {
2780             $obj->whereAdd($since);
2781         }
2782     }
2783
2784     /**
2785      * Build an SQL 'where' fragment for timestamp-based sorting from a max_id
2786      * parameter, matching notices posted before the given one (inclusive).
2787      *
2788      * If the referenced notice can't be found, will return false.
2789      *
2790      * @param int $id
2791      * @param string $idField
2792      * @param string $createdField
2793      * @return mixed string or false if no match
2794      */
2795     public static function whereMaxId($id, $idField='id', $createdField='created')
2796     {
2797         try {
2798             $max = Notice::getAsTimestamp($id);
2799         } catch (Exception $e) {
2800             return false;
2801         }
2802         return sprintf("($createdField < '%s') or ($createdField = '%s' and $idField <= %d)", $max, $max, $id);
2803     }
2804
2805     /**
2806      * Build an SQL 'where' fragment for timestamp-based sorting from a max_id
2807      * parameter, matching notices posted before the given one (inclusive), and
2808      * if necessary add it to the data object's query.
2809      *
2810      * @param DB_DataObject $obj
2811      * @param int $id
2812      * @param string $idField
2813      * @param string $createdField
2814      * @return mixed string or false if no match
2815      */
2816     public static function addWhereMaxId(DB_DataObject $obj, $id, $idField='id', $createdField='created')
2817     {
2818         $max = self::whereMaxId($id, $idField, $createdField);
2819         if ($max) {
2820             $obj->whereAdd($max);
2821         }
2822     }
2823
2824     public function isPublic()
2825     {
2826         $is_local = intval($this->is_local);
2827         return !($is_local === Notice::LOCAL_NONPUBLIC || $is_local === Notice::GATEWAY);
2828     }
2829
2830     /**
2831      * Check that the given profile is allowed to read, respond to, or otherwise
2832      * act on this notice.
2833      *
2834      * The $scope member is a bitmask of scopes, representing a logical AND of the
2835      * scope requirement. So, 0x03 (Notice::ADDRESSEE_SCOPE | Notice::SITE_SCOPE) means
2836      * "only visible to people who are mentioned in the notice AND are users on this site."
2837      * Users on the site who are not mentioned in the notice will not be able to see the
2838      * notice.
2839      *
2840      * @param Profile $profile The profile to check; pass null to check for public/unauthenticated users.
2841      *
2842      * @return boolean whether the profile is in the notice's scope
2843      */
2844     function inScope($profile)
2845     {
2846         if (is_null($profile)) {
2847             $keypart = sprintf('notice:in-scope-for:%d:null', $this->id);
2848         } else {
2849             $keypart = sprintf('notice:in-scope-for:%d:%d', $this->id, $profile->id);
2850         }
2851
2852         $result = self::cacheGet($keypart);
2853
2854         if ($result === false) {
2855             $bResult = false;
2856             if (Event::handle('StartNoticeInScope', array($this, $profile, &$bResult))) {
2857                 $bResult = $this->_inScope($profile);
2858                 Event::handle('EndNoticeInScope', array($this, $profile, &$bResult));
2859             }
2860             $result = ($bResult) ? 1 : 0;
2861             self::cacheSet($keypart, $result, 0, 300);
2862         }
2863
2864         return ($result == 1) ? true : false;
2865     }
2866
2867     protected function _inScope($profile)
2868     {
2869         $scope = is_null($this->scope) ? self::defaultScope() : $this->getScope();
2870
2871         if ($scope === 0 && !$this->getProfile()->isPrivateStream()) { // Not scoping, so it is public.
2872             return !$this->isHiddenSpam($profile);
2873         }
2874
2875         // If there's scope, anon cannot be in scope
2876         if (empty($profile)) {
2877             return false;
2878         }
2879
2880         // Author is always in scope
2881         if ($this->profile_id == $profile->id) {
2882             return true;
2883         }
2884
2885         // Only for users on this site
2886         if (($scope & Notice::SITE_SCOPE) && !$profile->isLocal()) {
2887             return false;
2888         }
2889
2890         // Only for users mentioned in the notice
2891         if ($scope & Notice::ADDRESSEE_SCOPE) {
2892
2893             $reply = Reply::pkeyGet(array('notice_id' => $this->id,
2894                                          'profile_id' => $profile->id));
2895
2896             if (!$reply instanceof Reply) {
2897                 return false;
2898             }
2899         }
2900
2901         // Only for members of the given group
2902         if ($scope & Notice::GROUP_SCOPE) {
2903
2904             // XXX: just query for the single membership
2905
2906             $groups = $this->getGroups();
2907
2908             $foundOne = false;
2909
2910             foreach ($groups as $group) {
2911                 if ($profile->isMember($group)) {
2912                     $foundOne = true;
2913                     break;
2914                 }
2915             }
2916
2917             if (!$foundOne) {
2918                 return false;
2919             }
2920         }
2921
2922         if ($scope & Notice::FOLLOWER_SCOPE || $this->getProfile()->isPrivateStream()) {
2923
2924             if (!Subscription::exists($profile, $this->getProfile())) {
2925                 return false;
2926             }
2927         }
2928
2929         return !$this->isHiddenSpam($profile);
2930     }
2931
2932     function isHiddenSpam($profile) {
2933
2934         // Hide posts by silenced users from everyone but moderators.
2935
2936         if (common_config('notice', 'hidespam')) {
2937
2938             try {
2939                 $author = $this->getProfile();
2940             } catch(Exception $e) {
2941                 // If we can't get an author, keep it hidden.
2942                 // XXX: technically not spam, but, whatever.
2943                 return true;
2944             }
2945
2946             if ($author->hasRole(Profile_role::SILENCED)) {
2947                 if (!$profile instanceof Profile || (($profile->id !== $author->id) && (!$profile->hasRight(Right::REVIEWSPAM)))) {
2948                     return true;
2949                 }
2950             }
2951         }
2952
2953         return false;
2954     }
2955
2956     public function hasParent()
2957     {
2958         try {
2959             $this->getParent();
2960         } catch (NoParentNoticeException $e) {
2961             return false;
2962         }
2963         return true;
2964     }
2965
2966     public function getParent()
2967     {
2968         $reply_to_id = null;
2969
2970         if (empty($this->reply_to)) {
2971             throw new NoParentNoticeException($this);
2972         }
2973
2974         // The reply_to ID in the table Notice could exist with a number
2975         // however, the replied to notice might not exist in the database.
2976         // Thus we need to catch the exception and throw the NoParentNoticeException else
2977         // the timeline will not display correctly.
2978         try {
2979             $reply_to_id = self::getByID($this->reply_to);
2980         } catch(Exception $e){
2981             throw new NoParentNoticeException($this);
2982         }
2983
2984         return $reply_to_id;
2985     }
2986
2987     /**
2988      * Magic function called at serialize() time.
2989      *
2990      * We use this to drop a couple process-specific references
2991      * from DB_DataObject which can cause trouble in future
2992      * processes.
2993      *
2994      * @return array of variable names to include in serialization.
2995      */
2996
2997     function __sleep()
2998     {
2999         $vars = parent::__sleep();
3000         $skip = array('_profile', '_groups', '_attachments', '_faves', '_replies', '_repeats');
3001         return array_diff($vars, $skip);
3002     }
3003
3004     static function defaultScope()
3005     {
3006         $scope = common_config('notice', 'defaultscope');
3007         if (is_null($scope)) {
3008                 if (common_config('site', 'private')) {
3009                         $scope = 1;
3010                 } else {
3011                         $scope = 0;
3012                 }
3013         }
3014         return $scope;
3015     }
3016
3017         static function fillProfiles($notices)
3018         {
3019                 $map = self::getProfiles($notices);
3020                 foreach ($notices as $entry=>$notice) {
3021             try {
3022                         if (array_key_exists($notice->profile_id, $map)) {
3023                                 $notice->_setProfile($map[$notice->profile_id]);
3024                         }
3025             } catch (NoProfileException $e) {
3026                 common_log(LOG_WARNING, "Failed to fill profile in Notice with non-existing entry for profile_id: {$e->profile_id}");
3027                 unset($notices[$entry]);
3028             }
3029                 }
3030
3031                 return array_values($map);
3032         }
3033
3034         static function getProfiles(&$notices)
3035         {
3036                 $ids = array();
3037                 foreach ($notices as $notice) {
3038                         $ids[] = $notice->profile_id;
3039                 }
3040                 $ids = array_unique($ids);
3041                 return Profile::pivotGet('id', $ids);
3042         }
3043
3044         static function fillGroups(&$notices)
3045         {
3046         $ids = self::_idsOf($notices);
3047         $gis = Group_inbox::listGet('notice_id', $ids);
3048         $gids = array();
3049
3050                 foreach ($gis as $id => $gi) {
3051                     foreach ($gi as $g)
3052                     {
3053                         $gids[] = $g->group_id;
3054                     }
3055                 }
3056
3057                 $gids = array_unique($gids);
3058                 $group = User_group::pivotGet('id', $gids);
3059                 foreach ($notices as $notice)
3060                 {
3061                         $grps = array();
3062                         $gi = $gis[$notice->id];
3063                         foreach ($gi as $g) {
3064                             $grps[] = $group[$g->group_id];
3065                         }
3066                     $notice->_setGroups($grps);
3067                 }
3068         }
3069
3070     static function _idsOf(array &$notices)
3071     {
3072                 $ids = array();
3073                 foreach ($notices as $notice) {
3074                         $ids[$notice->id] = true;
3075                 }
3076                 return array_keys($ids);
3077     }
3078
3079     static function fillAttachments(&$notices)
3080     {
3081         $ids = self::_idsOf($notices);
3082         $f2pMap = File_to_post::listGet('post_id', $ids);
3083                 $fileIds = array();
3084                 foreach ($f2pMap as $noticeId => $f2ps) {
3085             foreach ($f2ps as $f2p) {
3086                 $fileIds[] = $f2p->file_id;
3087             }
3088         }
3089
3090         $fileIds = array_unique($fileIds);
3091                 $fileMap = File::pivotGet('id', $fileIds);
3092                 foreach ($notices as $notice)
3093                 {
3094                         $files = array();
3095                         $f2ps = $f2pMap[$notice->id];
3096                         foreach ($f2ps as $f2p) {
3097                 if (!isset($fileMap[$f2p->file_id])) {
3098                     // We have probably deleted value from fileMap since
3099                     // it as a NULL entry (see the following elseif).
3100                     continue;
3101                 } elseif (is_null($fileMap[$f2p->file_id])) {
3102                     // If the file id lookup returned a NULL value, it doesn't
3103                     // exist in our file table! So this is a remnant file_to_post
3104                     // entry that is no longer valid and should be removed.
3105                     common_debug('ATTACHMENT deleting f2p for post_id='.$f2p->post_id.' file_id='.$f2p->file_id);
3106                     $f2p->delete();
3107                     unset($fileMap[$f2p->file_id]);
3108                     continue;
3109                 }
3110                             $files[] = $fileMap[$f2p->file_id];
3111                         }
3112                     $notice->_setAttachments($files);
3113                 }
3114     }
3115
3116     static function fillReplies(&$notices)
3117     {
3118         $ids = self::_idsOf($notices);
3119         $replyMap = Reply::listGet('notice_id', $ids);
3120         foreach ($notices as $notice) {
3121             $replies = $replyMap[$notice->id];
3122             $ids = array();
3123             foreach ($replies as $reply) {
3124                 $ids[] = $reply->profile_id;
3125             }
3126             $notice->_setReplies($ids);
3127         }
3128     }
3129
3130     static public function beforeSchemaUpdate()
3131     {
3132         $table = strtolower(get_called_class());
3133         $schema = Schema::get();
3134         $schemadef = $schema->getTableDef($table);
3135
3136         // 2015-09-04 We move Notice location data to Notice_location
3137         // First we see if we have to do this at all
3138         if (isset($schemadef['fields']['lat'])
3139                 && isset($schemadef['fields']['lon'])
3140                 && isset($schemadef['fields']['location_id'])
3141                 && isset($schemadef['fields']['location_ns'])) {
3142             // Then we make sure the Notice_location table is created!
3143             $schema->ensureTable('notice_location', Notice_location::schemaDef());
3144
3145             // Then we continue on our road to migration!
3146             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)";
3147
3148             $notice = new Notice();
3149             $notice->query(sprintf('SELECT id, lat, lon, location_id, location_ns FROM %1$s ' .
3150                                  'WHERE lat IS NOT NULL ' .
3151                                     'OR lon IS NOT NULL ' .
3152                                     'OR location_id IS NOT NULL ' .
3153                                     'OR location_ns IS NOT NULL',
3154                                  $schema->quoteIdentifier($table)));
3155             print "\nFound {$notice->N} notices with location data, inserting";
3156             while ($notice->fetch()) {
3157                 $notloc = Notice_location::getKV('notice_id', $notice->id);
3158                 if ($notloc instanceof Notice_location) {
3159                     print "-";
3160                     continue;
3161                 }
3162                 $notloc = new Notice_location();
3163                 $notloc->notice_id = $notice->id;
3164                 $notloc->lat= $notice->lat;
3165                 $notloc->lon= $notice->lon;
3166                 $notloc->location_id= $notice->location_id;
3167                 $notloc->location_ns= $notice->location_ns;
3168                 $notloc->insert();
3169                 print ".";
3170             }
3171             print "\n";
3172         }
3173
3174         /**
3175          *  Make sure constraints are met before upgrading, if foreign keys
3176          *  are not already in use.
3177          *  2016-03-31
3178          */
3179         if (!isset($schemadef['foreign keys'])) {
3180             $newschemadef = self::schemaDef();
3181             printfnq("\nConstraint checking Notice table...\n");
3182             /**
3183              *  Improve typing and make sure no NULL values in any id-related columns are 0
3184              *  2016-03-31
3185              */
3186             foreach (['reply_to', 'repeat_of'] as $field) {
3187                 $notice = new Notice(); // reset the object
3188                 $notice->query(sprintf('UPDATE %1$s SET %2$s=NULL WHERE %2$s=0', $notice->escapedTableName(), $field));
3189                 // Now we're sure that no Notice entries have repeat_of=0, only an id > 0 or NULL
3190                 unset($notice);
3191             }
3192
3193             /**
3194              *  This Will find foreign keys which do not fulfill the constraints and fix
3195              *  where appropriate, such as delete when "repeat_of" ID not found in notice.id
3196              *  or set to NULL for "reply_to" in the same case.
3197              *  2016-03-31
3198              *
3199              *  XXX: How does this work if we would use multicolumn foreign keys?
3200              */
3201             foreach (['reply_to' => 'reset', 'repeat_of' => 'delete', 'profile_id' => 'delete'] as $field=>$action) {
3202                 $notice = new Notice();
3203
3204                 $fkeyname = $notice->tableName().'_'.$field.'_fkey';
3205                 assert(isset($newschemadef['foreign keys'][$fkeyname]));
3206                 assert($newschemadef['foreign keys'][$fkeyname]);
3207
3208                 $foreign_key = $newschemadef['foreign keys'][$fkeyname];
3209                 $fkeytable = $foreign_key[0];
3210                 assert(isset($foreign_key[1][$field]));
3211                 $fkeycol   = $foreign_key[1][$field];
3212
3213                 printfnq("* {$fkeyname} ({$field} => {$fkeytable}.{$fkeycol})\n");
3214
3215                 // NOTE: Above we set all repeat_of to NULL if they were 0, so this really gets them all.
3216                 $notice->whereAdd(sprintf('%1$s NOT IN (SELECT %2$s FROM %3$s)', $field, $fkeycol, $fkeytable));
3217                 if ($notice->find()) {
3218                     printfnq("\tFound {$notice->N} notices with {$field} NOT IN notice.id, {$action}ing...");
3219                     switch ($action) {
3220                     case 'delete':  // since it's a directly dependant notice for an unknown ID we don't want it in our DB
3221                         while ($notice->fetch()) {
3222                             $notice->delete();
3223                         }
3224                         break;
3225                     case 'reset':   // just set it to NULL to be compatible with our constraints, if it was related to an unknown ID
3226                         $ids = [];
3227                         foreach ($notice->fetchAll('id') as $id) {
3228                             settype($id, 'int');
3229                             $ids[] = $id;
3230                         }
3231                         unset($notice);
3232                         $notice = new Notice();
3233                         $notice->query(sprintf('UPDATE %1$s SET %2$s=NULL WHERE id IN (%3$s)',
3234                                             $notice->escapedTableName(),
3235                                             $field,
3236                                             implode(',', $ids)));
3237                         break;
3238                     default:
3239                         throw new ServerException('The programmer sucks, invalid action name when fixing table.');
3240                     }
3241                     printfnq("DONE.\n");
3242                 }
3243                 unset($notice);
3244             }
3245         }
3246     }
3247
3248     public function delPref($namespace, $topic) {
3249         return Notice_prefs::setData($this, $namespace, $topic, null);
3250     }
3251
3252     public function getPref($namespace, $topic, $default=null) {
3253         // If you want an exception to be thrown, call Notice_prefs::getData directly
3254         try {
3255             return Notice_prefs::getData($this, $namespace, $topic, $default);
3256         } catch (NoResultException $e) {
3257             return null;
3258         }
3259     }
3260
3261     // The same as getPref but will fall back to common_config value for the same namespace/topic
3262     public function getConfigPref($namespace, $topic)
3263     {
3264         return Notice_prefs::getConfigData($this, $namespace, $topic);
3265     }
3266
3267     public function setPref($namespace, $topic, $data) {
3268         return Notice_prefs::setData($this, $namespace, $topic, $data);
3269     }
3270 }