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