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