]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Notice.php
Revert "Show <activity:subject> and no activity actors for user feed"
[quix0rs-gnu-social.git] / classes / Notice.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, 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  * @license  GNU Affero General Public License http://www.gnu.org/licenses/
33  */
34
35 if (!defined('STATUSNET') && !defined('LACONICA')) {
36     exit(1);
37 }
38
39 /**
40  * Table Definition for notice
41  */
42 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
43
44 /* We keep the first three 20-notice pages, plus one for pagination check,
45  * in the memcached cache. */
46
47 define('NOTICE_CACHE_WINDOW', 61);
48
49 define('MAX_BOXCARS', 128);
50
51 class Notice extends Memcached_DataObject
52 {
53     ###START_AUTOCODE
54     /* the code below is auto generated do not remove the above tag */
55
56     public $__table = 'notice';                          // table name
57     public $id;                              // int(4)  primary_key not_null
58     public $profile_id;                      // int(4)  multiple_key not_null
59     public $uri;                             // varchar(255)  unique_key
60     public $content;                         // text
61     public $rendered;                        // text
62     public $url;                             // varchar(255)
63     public $created;                         // datetime  multiple_key not_null default_0000-00-00%2000%3A00%3A00
64     public $modified;                        // timestamp   not_null default_CURRENT_TIMESTAMP
65     public $reply_to;                        // int(4)
66     public $is_local;                        // int(4)
67     public $source;                          // varchar(32)
68     public $conversation;                    // int(4)
69     public $lat;                             // decimal(10,7)
70     public $lon;                             // decimal(10,7)
71     public $location_id;                     // int(4)
72     public $location_ns;                     // int(4)
73     public $repeat_of;                       // int(4)
74
75     /* Static get */
76     function staticGet($k,$v=NULL)
77     {
78         return Memcached_DataObject::staticGet('Notice',$k,$v);
79     }
80
81     /* the code above is auto generated do not remove the tag below */
82     ###END_AUTOCODE
83
84     /* Notice types */
85     const LOCAL_PUBLIC    =  1;
86     const REMOTE_OMB      =  0;
87     const LOCAL_NONPUBLIC = -1;
88     const GATEWAY         = -2;
89
90     function getProfile()
91     {
92         return Profile::staticGet('id', $this->profile_id);
93     }
94
95     function delete()
96     {
97         // For auditing purposes, save a record that the notice
98         // was deleted.
99
100         $deleted = new Deleted_notice();
101
102         $deleted->id         = $this->id;
103         $deleted->profile_id = $this->profile_id;
104         $deleted->uri        = $this->uri;
105         $deleted->created    = $this->created;
106         $deleted->deleted    = common_sql_now();
107
108         $deleted->insert();
109
110         // Clear related records
111
112         $this->clearReplies();
113         $this->clearRepeats();
114         $this->clearFaves();
115         $this->clearTags();
116         $this->clearGroupInboxes();
117
118         // NOTE: we don't clear inboxes
119         // NOTE: we don't clear queue items
120
121         $result = parent::delete();
122     }
123
124     /**
125      * Extract #hashtags from this notice's content and save them to the database.
126      */
127     function saveTags()
128     {
129         /* extract all #hastags */
130         $count = preg_match_all('/(?:^|\s)#([\pL\pN_\-\.]{1,64})/', strtolower($this->content), $match);
131         if (!$count) {
132             return true;
133         }
134
135         /* Add them to the database */
136         return $this->saveKnownTags($match[1]);
137     }
138
139     /**
140      * Record the given set of hash tags in the db for this notice.
141      * Given tag strings will be normalized and checked for dupes.
142      */
143     function saveKnownTags($hashtags)
144     {
145         //turn each into their canonical tag
146         //this is needed to remove dupes before saving e.g. #hash.tag = #hashtag
147         for($i=0; $i<count($hashtags); $i++) {
148             $hashtags[$i] = common_canonical_tag($hashtags[$i]);
149         }
150
151         foreach(array_unique($hashtags) as $hashtag) {
152             /* elide characters we don't want in the tag */
153             $this->saveTag($hashtag);
154             self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, $hashtag);
155         }
156         return true;
157     }
158
159     /**
160      * Record a single hash tag as associated with this notice.
161      * Tag format and uniqueness must be validated by caller.
162      */
163     function saveTag($hashtag)
164     {
165         $tag = new Notice_tag();
166         $tag->notice_id = $this->id;
167         $tag->tag = $hashtag;
168         $tag->created = $this->created;
169         $id = $tag->insert();
170
171         if (!$id) {
172             throw new ServerException(sprintf(_('DB error inserting hashtag: %s'),
173                                               $last_error->message));
174             return;
175         }
176
177         // if it's saved, blow its cache
178         $tag->blowCache(false);
179     }
180
181     /**
182      * Save a new notice and push it out to subscribers' inboxes.
183      * Poster's permissions are checked before sending.
184      *
185      * @param int $profile_id Profile ID of the poster
186      * @param string $content source message text; links may be shortened
187      *                        per current user's preference
188      * @param string $source source key ('web', 'api', etc)
189      * @param array $options Associative array of optional properties:
190      *              string 'created' timestamp of notice; defaults to now
191      *              int 'is_local' source/gateway ID, one of:
192      *                  Notice::LOCAL_PUBLIC    - Local, ok to appear in public timeline
193      *                  Notice::REMOTE_OMB      - Sent from a remote OMB service;
194      *                                            hide from public timeline but show in
195      *                                            local "and friends" timelines
196      *                  Notice::LOCAL_NONPUBLIC - Local, but hide from public timeline
197      *                  Notice::GATEWAY         - From another non-OMB service;
198      *                                            will not appear in public views
199      *              float 'lat' decimal latitude for geolocation
200      *              float 'lon' decimal longitude for geolocation
201      *              int 'location_id' geoname identifier
202      *              int 'location_ns' geoname namespace to interpret location_id
203      *              int 'reply_to'; notice ID this is a reply to
204      *              int 'repeat_of'; notice ID this is a repeat of
205      *              string 'uri' unique ID for notice; defaults to local notice URL
206      *              string 'url' permalink to notice; defaults to local notice URL
207      *              string 'rendered' rendered HTML version of content
208      *              array 'replies' list of profile URIs for reply delivery in
209      *                              place of extracting @-replies from content.
210      *              array 'groups' list of group IDs to deliver to, in place of
211      *                              extracting ! tags from content
212      *              array 'tags' list of hashtag strings to save with the notice
213      *                           in place of extracting # tags from content
214      * @fixme tag override
215      *
216      * @return Notice
217      * @throws ClientException
218      */
219     static function saveNew($profile_id, $content, $source, $options=null) {
220         $defaults = array('uri' => null,
221                           'url' => null,
222                           'reply_to' => null,
223                           'repeat_of' => null);
224
225         if (!empty($options)) {
226             $options = $options + $defaults;
227             extract($options);
228         }
229
230         if (!isset($is_local)) {
231             $is_local = Notice::LOCAL_PUBLIC;
232         }
233
234         $profile = Profile::staticGet($profile_id);
235
236         $final = common_shorten_links($content);
237
238         if (Notice::contentTooLong($final)) {
239             throw new ClientException(_('Problem saving notice. Too long.'));
240         }
241
242         if (empty($profile)) {
243             throw new ClientException(_('Problem saving notice. Unknown user.'));
244         }
245
246         if (common_config('throttle', 'enabled') && !Notice::checkEditThrottle($profile_id)) {
247             common_log(LOG_WARNING, 'Excessive posting by profile #' . $profile_id . '; throttled.');
248             throw new ClientException(_('Too many notices too fast; take a breather '.
249                                         'and post again in a few minutes.'));
250         }
251
252         if (common_config('site', 'dupelimit') > 0 && !Notice::checkDupes($profile_id, $final)) {
253             common_log(LOG_WARNING, 'Dupe posting by profile #' . $profile_id . '; throttled.');
254             throw new ClientException(_('Too many duplicate messages too quickly;'.
255                                         ' take a breather and post again in a few minutes.'));
256         }
257
258         if (!$profile->hasRight(Right::NEWNOTICE)) {
259             common_log(LOG_WARNING, "Attempted post from user disallowed to post: " . $profile->nickname);
260             throw new ClientException(_('You are banned from posting notices on this site.'));
261         }
262
263         $notice = new Notice();
264         $notice->profile_id = $profile_id;
265
266         $autosource = common_config('public', 'autosource');
267
268         # Sandboxed are non-false, but not 1, either
269
270         if (!$profile->hasRight(Right::PUBLICNOTICE) ||
271             ($source && $autosource && in_array($source, $autosource))) {
272             $notice->is_local = Notice::LOCAL_NONPUBLIC;
273         } else {
274             $notice->is_local = $is_local;
275         }
276
277         if (!empty($created)) {
278             $notice->created = $created;
279         } else {
280             $notice->created = common_sql_now();
281         }
282
283         $notice->content = $final;
284
285         $notice->source = $source;
286         $notice->uri = $uri;
287         $notice->url = $url;
288
289         // Handle repeat case
290
291         if (isset($repeat_of)) {
292             $notice->repeat_of = $repeat_of;
293         } else {
294             $notice->reply_to = self::getReplyTo($reply_to, $profile_id, $source, $final);
295         }
296
297         if (!empty($notice->reply_to)) {
298             $reply = Notice::staticGet('id', $notice->reply_to);
299             $notice->conversation = $reply->conversation;
300         }
301
302         if (!empty($lat) && !empty($lon)) {
303             $notice->lat = $lat;
304             $notice->lon = $lon;
305         }
306
307         if (!empty($location_ns) && !empty($location_id)) {
308             $notice->location_id = $location_id;
309             $notice->location_ns = $location_ns;
310         }
311
312         if (!empty($rendered)) {
313             $notice->rendered = $rendered;
314         } else {
315             $notice->rendered = common_render_content($final, $notice);
316         }
317
318         if (Event::handle('StartNoticeSave', array(&$notice))) {
319
320             // XXX: some of these functions write to the DB
321
322             $id = $notice->insert();
323
324             if (!$id) {
325                 common_log_db_error($notice, 'INSERT', __FILE__);
326                 throw new ServerException(_('Problem saving notice.'));
327             }
328
329             // Update ID-dependent columns: URI, conversation
330
331             $orig = clone($notice);
332
333             $changed = false;
334
335             if (empty($uri)) {
336                 $notice->uri = common_notice_uri($notice);
337                 $changed = true;
338             }
339
340             // If it's not part of a conversation, it's
341             // the beginning of a new conversation.
342
343             if (empty($notice->conversation)) {
344                 $conv = Conversation::create();
345                 $notice->conversation = $conv->id;
346                 $changed = true;
347             }
348
349             if ($changed) {
350                 if (!$notice->update($orig)) {
351                     common_log_db_error($notice, 'UPDATE', __FILE__);
352                     throw new ServerException(_('Problem saving notice.'));
353                 }
354             }
355
356         }
357
358         # Clear the cache for subscribed users, so they'll update at next request
359         # XXX: someone clever could prepend instead of clearing the cache
360
361         $notice->blowOnInsert();
362
363         // Save per-notice metadata...
364
365         if (isset($replies)) {
366             $notice->saveKnownReplies($replies);
367         } else {
368             $notice->saveReplies();
369         }
370
371         if (isset($groups)) {
372             $notice->saveKnownGroups($groups);
373         } else {
374             $notice->saveGroups();
375         }
376
377         if (isset($tags)) {
378             $notice->saveKnownTags($tags);
379         } else {
380             $notice->saveTags();
381         }
382
383         // @fixme pass in data for URLs too?
384         $notice->saveUrls();
385
386         // Prepare inbox delivery, may be queued to background.
387         $notice->distribute();
388
389         return $notice;
390     }
391
392     function blowOnInsert($conversation = false)
393     {
394         self::blow('profile:notice_ids:%d', $this->profile_id);
395         self::blow('public');
396
397         // XXX: Before we were blowing the casche only if the notice id
398         // was not the root of the conversation.  What to do now?
399
400         self::blow('notice:conversation_ids:%d', $this->conversation);
401
402         if (!empty($this->repeat_of)) {
403             self::blow('notice:repeats:%d', $this->repeat_of);
404         }
405
406         $original = Notice::staticGet('id', $this->repeat_of);
407
408         if (!empty($original)) {
409             $originalUser = User::staticGet('id', $original->profile_id);
410             if (!empty($originalUser)) {
411                 self::blow('user:repeats_of_me:%d', $originalUser->id);
412             }
413         }
414
415         $profile = Profile::staticGet($this->profile_id);
416         $profile->blowNoticeCount();
417     }
418
419     /** save all urls in the notice to the db
420      *
421      * follow redirects and save all available file information
422      * (mimetype, date, size, oembed, etc.)
423      *
424      * @return void
425      */
426     function saveUrls() {
427         common_replace_urls_callback($this->content, array($this, 'saveUrl'), $this->id);
428     }
429
430     function saveUrl($data) {
431         list($url, $notice_id) = $data;
432         File::processNew($url, $notice_id);
433     }
434
435     static function checkDupes($profile_id, $content) {
436         $profile = Profile::staticGet($profile_id);
437         if (empty($profile)) {
438             return false;
439         }
440         $notice = $profile->getNotices(0, NOTICE_CACHE_WINDOW);
441         if (!empty($notice)) {
442             $last = 0;
443             while ($notice->fetch()) {
444                 if (time() - strtotime($notice->created) >= common_config('site', 'dupelimit')) {
445                     return true;
446                 } else if ($notice->content == $content) {
447                     return false;
448                 }
449             }
450         }
451         # If we get here, oldest item in cache window is not
452         # old enough for dupe limit; do direct check against DB
453         $notice = new Notice();
454         $notice->profile_id = $profile_id;
455         $notice->content = $content;
456         if (common_config('db','type') == 'pgsql')
457           $notice->whereAdd('extract(epoch from now() - created) < ' . common_config('site', 'dupelimit'));
458         else
459           $notice->whereAdd('now() - created < ' . common_config('site', 'dupelimit'));
460
461         $cnt = $notice->count();
462         return ($cnt == 0);
463     }
464
465     static function checkEditThrottle($profile_id) {
466         $profile = Profile::staticGet($profile_id);
467         if (empty($profile)) {
468             return false;
469         }
470         # Get the Nth notice
471         $notice = $profile->getNotices(common_config('throttle', 'count') - 1, 1);
472         if ($notice && $notice->fetch()) {
473             # If the Nth notice was posted less than timespan seconds ago
474             if (time() - strtotime($notice->created) <= common_config('throttle', 'timespan')) {
475                 # Then we throttle
476                 return false;
477             }
478         }
479         # Either not N notices in the stream, OR the Nth was not posted within timespan seconds
480         return true;
481     }
482
483     function getUploadedAttachment() {
484         $post = clone $this;
485         $query = 'select file.url as up, file.id as i from file join file_to_post on file.id = file_id where post_id=' . $post->escape($post->id) . ' and url like "%/notice/%/file"';
486         $post->query($query);
487         $post->fetch();
488         if (empty($post->up) || empty($post->i)) {
489             $ret = false;
490         } else {
491             $ret = array($post->up, $post->i);
492         }
493         $post->free();
494         return $ret;
495     }
496
497     function hasAttachments() {
498         $post = clone $this;
499         $query = "select count(file_id) as n_attachments from file join file_to_post on (file_id = file.id) join notice on (post_id = notice.id) where post_id = " . $post->escape($post->id);
500         $post->query($query);
501         $post->fetch();
502         $n_attachments = intval($post->n_attachments);
503         $post->free();
504         return $n_attachments;
505     }
506
507     function attachments() {
508         // XXX: cache this
509         $att = array();
510         $f2p = new File_to_post;
511         $f2p->post_id = $this->id;
512         if ($f2p->find()) {
513             while ($f2p->fetch()) {
514                 $f = File::staticGet($f2p->file_id);
515                 $att[] = clone($f);
516             }
517         }
518         return $att;
519     }
520
521     function getStreamByIds($ids)
522     {
523         $cache = common_memcache();
524
525         if (!empty($cache)) {
526             $notices = array();
527             foreach ($ids as $id) {
528                 $n = Notice::staticGet('id', $id);
529                 if (!empty($n)) {
530                     $notices[] = $n;
531                 }
532             }
533             return new ArrayWrapper($notices);
534         } else {
535             $notice = new Notice();
536             if (empty($ids)) {
537                 //if no IDs requested, just return the notice object
538                 return $notice;
539             }
540             $notice->whereAdd('id in (' . implode(', ', $ids) . ')');
541
542             $notice->find();
543
544             $temp = array();
545
546             while ($notice->fetch()) {
547                 $temp[$notice->id] = clone($notice);
548             }
549
550             $wrapped = array();
551
552             foreach ($ids as $id) {
553                 if (array_key_exists($id, $temp)) {
554                     $wrapped[] = $temp[$id];
555                 }
556             }
557
558             return new ArrayWrapper($wrapped);
559         }
560     }
561
562     function publicStream($offset=0, $limit=20, $since_id=0, $max_id=0, $since=null)
563     {
564         $ids = Notice::stream(array('Notice', '_publicStreamDirect'),
565                               array(),
566                               'public',
567                               $offset, $limit, $since_id, $max_id, $since);
568
569         return Notice::getStreamByIds($ids);
570     }
571
572     function _publicStreamDirect($offset=0, $limit=20, $since_id=0, $max_id=0, $since=null)
573     {
574         $notice = new Notice();
575
576         $notice->selectAdd(); // clears it
577         $notice->selectAdd('id');
578
579         $notice->orderBy('id DESC');
580
581         if (!is_null($offset)) {
582             $notice->limit($offset, $limit);
583         }
584
585         if (common_config('public', 'localonly')) {
586             $notice->whereAdd('is_local = ' . Notice::LOCAL_PUBLIC);
587         } else {
588             # -1 == blacklisted, -2 == gateway (i.e. Twitter)
589             $notice->whereAdd('is_local !='. Notice::LOCAL_NONPUBLIC);
590             $notice->whereAdd('is_local !='. Notice::GATEWAY);
591         }
592
593         if ($since_id != 0) {
594             $notice->whereAdd('id > ' . $since_id);
595         }
596
597         if ($max_id != 0) {
598             $notice->whereAdd('id <= ' . $max_id);
599         }
600
601         if (!is_null($since)) {
602             $notice->whereAdd('created > \'' . date('Y-m-d H:i:s', $since) . '\'');
603         }
604
605         $ids = array();
606
607         if ($notice->find()) {
608             while ($notice->fetch()) {
609                 $ids[] = $notice->id;
610             }
611         }
612
613         $notice->free();
614         $notice = NULL;
615
616         return $ids;
617     }
618
619     function conversationStream($id, $offset=0, $limit=20, $since_id=0, $max_id=0, $since=null)
620     {
621         $ids = Notice::stream(array('Notice', '_conversationStreamDirect'),
622                               array($id),
623                               'notice:conversation_ids:'.$id,
624                               $offset, $limit, $since_id, $max_id, $since);
625
626         return Notice::getStreamByIds($ids);
627     }
628
629     function _conversationStreamDirect($id, $offset=0, $limit=20, $since_id=0, $max_id=0, $since=null)
630     {
631         $notice = new Notice();
632
633         $notice->selectAdd(); // clears it
634         $notice->selectAdd('id');
635
636         $notice->conversation = $id;
637
638         $notice->orderBy('id DESC');
639
640         if (!is_null($offset)) {
641             $notice->limit($offset, $limit);
642         }
643
644         if ($since_id != 0) {
645             $notice->whereAdd('id > ' . $since_id);
646         }
647
648         if ($max_id != 0) {
649             $notice->whereAdd('id <= ' . $max_id);
650         }
651
652         if (!is_null($since)) {
653             $notice->whereAdd('created > \'' . date('Y-m-d H:i:s', $since) . '\'');
654         }
655
656         $ids = array();
657
658         if ($notice->find()) {
659             while ($notice->fetch()) {
660                 $ids[] = $notice->id;
661             }
662         }
663
664         $notice->free();
665         $notice = NULL;
666
667         return $ids;
668     }
669
670     /**
671      * @param $groups array of Group *objects*
672      * @param $recipients array of profile *ids*
673      */
674     function whoGets($groups=null, $recipients=null)
675     {
676         $c = self::memcache();
677
678         if (!empty($c)) {
679             $ni = $c->get(common_cache_key('notice:who_gets:'.$this->id));
680             if ($ni !== false) {
681                 return $ni;
682             }
683         }
684
685         if (is_null($groups)) {
686             $groups = $this->getGroups();
687         }
688
689         if (is_null($recipients)) {
690             $recipients = $this->getReplies();
691         }
692
693         $users = $this->getSubscribedUsers();
694
695         // FIXME: kind of ignoring 'transitional'...
696         // we'll probably stop supporting inboxless mode
697         // in 0.9.x
698
699         $ni = array();
700
701         foreach ($users as $id) {
702             $ni[$id] = NOTICE_INBOX_SOURCE_SUB;
703         }
704
705         $profile = $this->getProfile();
706
707         foreach ($groups as $group) {
708             $users = $group->getUserMembers();
709             foreach ($users as $id) {
710                 if (!array_key_exists($id, $ni)) {
711                     $user = User::staticGet('id', $id);
712                     if (!$user->hasBlocked($profile)) {
713                         $ni[$id] = NOTICE_INBOX_SOURCE_GROUP;
714                     }
715                 }
716             }
717         }
718
719         foreach ($recipients as $recipient) {
720
721             if (!array_key_exists($recipient, $ni)) {
722                 $recipientUser = User::staticGet('id', $recipient);
723                 if (!empty($recipientUser)) {
724                     $ni[$recipient] = NOTICE_INBOX_SOURCE_REPLY;
725                 }
726             }
727         }
728
729         if (!empty($c)) {
730             // XXX: pack this data better
731             $c->set(common_cache_key('notice:who_gets:'.$this->id), $ni);
732         }
733
734         return $ni;
735     }
736
737     /**
738      * Adds this notice to the inboxes of each local user who should receive
739      * it, based on author subscriptions, group memberships, and @-replies.
740      *
741      * Warning: running a second time currently will make items appear
742      * multiple times in users' inboxes.
743      *
744      * @fixme make more robust against errors
745      * @fixme break up massive deliveries to smaller background tasks
746      *
747      * @param array $groups optional list of Group objects;
748      *              if left empty, will be loaded from group_inbox records
749      * @param array $recipient optional list of reply profile ids
750      *              if left empty, will be loaded from reply records
751      */
752     function addToInboxes($groups=null, $recipients=null)
753     {
754         $ni = $this->whoGets($groups, $recipients);
755
756         $ids = array_keys($ni);
757
758         // We remove the author (if they're a local user),
759         // since we'll have already done this in distribute()
760
761         $i = array_search($this->profile_id, $ids);
762
763         if ($i !== false) {
764             unset($ids[$i]);
765         }
766
767         // Bulk insert
768
769         Inbox::bulkInsert($this->id, $ids);
770
771         return;
772     }
773
774     function getSubscribedUsers()
775     {
776         $user = new User();
777
778         if(common_config('db','quote_identifiers'))
779           $user_table = '"user"';
780         else $user_table = 'user';
781
782         $qry =
783           'SELECT id ' .
784           'FROM '. $user_table .' JOIN subscription '.
785           'ON '. $user_table .'.id = subscription.subscriber ' .
786           'WHERE subscription.subscribed = %d ';
787
788         $user->query(sprintf($qry, $this->profile_id));
789
790         $ids = array();
791
792         while ($user->fetch()) {
793             $ids[] = $user->id;
794         }
795
796         $user->free();
797
798         return $ids;
799     }
800
801     /**
802      * Record this notice to the given group inboxes for delivery.
803      * Overrides the regular parsing of !group markup.
804      *
805      * @param string $group_ids
806      * @fixme might prefer URIs as identifiers, as for replies?
807      *        best with generalizations on user_group to support
808      *        remote groups better.
809      */
810     function saveKnownGroups($group_ids)
811     {
812         if (!is_array($group_ids)) {
813             throw new ServerException("Bad type provided to saveKnownGroups");
814         }
815
816         $groups = array();
817         foreach ($group_ids as $id) {
818             $group = User_group::staticGet('id', $id);
819             if ($group) {
820                 common_log(LOG_ERR, "Local delivery to group id $id, $group->nickname");
821                 $result = $this->addToGroupInbox($group);
822                 if (!$result) {
823                     common_log_db_error($gi, 'INSERT', __FILE__);
824                 }
825
826                 // @fixme should we save the tags here or not?
827                 $groups[] = clone($group);
828             } else {
829                 common_log(LOG_ERR, "Local delivery to group id $id skipped, doesn't exist");
830             }
831         }
832
833         return $groups;
834     }
835
836     /**
837      * Parse !group delivery and record targets into group_inbox.
838      * @return array of Group objects
839      */
840     function saveGroups()
841     {
842         // Don't save groups for repeats
843
844         if (!empty($this->repeat_of)) {
845             return array();
846         }
847
848         $groups = array();
849
850         /* extract all !group */
851         $count = preg_match_all('/(?:^|\s)!([A-Za-z0-9]{1,64})/',
852                                 strtolower($this->content),
853                                 $match);
854         if (!$count) {
855             return $groups;
856         }
857
858         $profile = $this->getProfile();
859
860         /* Add them to the database */
861
862         foreach (array_unique($match[1]) as $nickname) {
863             /* XXX: remote groups. */
864             $group = User_group::getForNickname($nickname);
865
866             if (empty($group)) {
867                 continue;
868             }
869
870             // we automatically add a tag for every group name, too
871
872             $tag = Notice_tag::pkeyGet(array('tag' => common_canonical_tag($nickname),
873                                              'notice_id' => $this->id));
874
875             if (is_null($tag)) {
876                 $this->saveTag($nickname);
877             }
878
879             if ($profile->isMember($group)) {
880
881                 $result = $this->addToGroupInbox($group);
882
883                 if (!$result) {
884                     common_log_db_error($gi, 'INSERT', __FILE__);
885                 }
886
887                 $groups[] = clone($group);
888             }
889         }
890
891         return $groups;
892     }
893
894     function addToGroupInbox($group)
895     {
896         $gi = Group_inbox::pkeyGet(array('group_id' => $group->id,
897                                          'notice_id' => $this->id));
898
899         if (empty($gi)) {
900
901             $gi = new Group_inbox();
902
903             $gi->group_id  = $group->id;
904             $gi->notice_id = $this->id;
905             $gi->created   = $this->created;
906
907             $result = $gi->insert();
908
909             if (!$result) {
910                 common_log_db_error($gi, 'INSERT', __FILE__);
911                 throw new ServerException(_('Problem saving group inbox.'));
912             }
913
914             self::blow('user_group:notice_ids:%d', $gi->group_id);
915         }
916
917         return true;
918     }
919
920     /**
921      * Save reply records indicating that this notice needs to be
922      * delivered to the local users with the given URIs.
923      *
924      * Since this is expected to be used when saving foreign-sourced
925      * messages, we won't deliver to any remote targets as that's the
926      * source service's responsibility.
927      *
928      * @fixme Unlike saveReplies() there's no mail notification here.
929      *        Move that to distrib queue handler?
930      *
931      * @param array of unique identifier URIs for recipients
932      */
933     function saveKnownReplies($uris)
934     {
935         foreach ($uris as $uri) {
936
937             $user = User::staticGet('uri', $uri);
938
939             if (!empty($user)) {
940
941                 $reply = new Reply();
942
943                 $reply->notice_id  = $this->id;
944                 $reply->profile_id = $user->id;
945
946                 $id = $reply->insert();
947
948                 self::blow('reply:stream:%d', $user->id);
949             }
950         }
951
952         return;
953     }
954
955     /**
956      * Pull @-replies from this message's content in StatusNet markup format
957      * and save reply records indicating that this message needs to be
958      * delivered to those users.
959      *
960      * Side effect: local recipients get e-mail notifications here.
961      * @fixme move mail notifications to distrib?
962      *
963      * @return array of integer profile IDs
964      */
965
966     function saveReplies()
967     {
968         // Don't save reply data for repeats
969
970         if (!empty($this->repeat_of)) {
971             return array();
972         }
973
974         $sender = Profile::staticGet($this->profile_id);
975
976         // @todo ideally this parser information would only
977         // be calculated once.
978
979         $mentions = common_find_mentions($this->content, $this);
980
981         $replied = array();
982
983         // store replied only for first @ (what user/notice what the reply directed,
984         // we assume first @ is it)
985
986         foreach ($mentions as $mention) {
987
988             foreach ($mention['mentioned'] as $mentioned) {
989
990                 // skip if they're already covered
991
992                 if (!empty($replied[$mentioned->id])) {
993                     continue;
994                 }
995
996                 // Don't save replies from blocked profile to local user
997
998                 $mentioned_user = User::staticGet('id', $mentioned->id);
999                 if (!empty($mentioned_user) && $mentioned_user->hasBlocked($sender)) {
1000                     continue;
1001                 }
1002
1003                 $reply = new Reply();
1004
1005                 $reply->notice_id  = $this->id;
1006                 $reply->profile_id = $mentioned->id;
1007
1008                 $id = $reply->insert();
1009
1010                 if (!$id) {
1011                     common_log_db_error($reply, 'INSERT', __FILE__);
1012                     throw new ServerException("Couldn't save reply for {$this->id}, {$mentioned->id}");
1013                 } else {
1014                     $replied[$mentioned->id] = 1;
1015                 }
1016             }
1017         }
1018
1019         $recipientIds = array_keys($replied);
1020
1021         foreach ($recipientIds as $recipientId) {
1022             $user = User::staticGet('id', $recipientId);
1023             if (!empty($user)) {
1024                 self::blow('reply:stream:%d', $reply->profile_id);
1025                 mail_notify_attn($user, $this);
1026             }
1027         }
1028
1029         return $recipientIds;
1030     }
1031
1032     function getReplies()
1033     {
1034         // XXX: cache me
1035
1036         $ids = array();
1037
1038         $reply = new Reply();
1039         $reply->selectAdd();
1040         $reply->selectAdd('profile_id');
1041         $reply->notice_id = $this->id;
1042
1043         if ($reply->find()) {
1044             while($reply->fetch()) {
1045                 $ids[] = $reply->profile_id;
1046             }
1047         }
1048
1049         $reply->free();
1050
1051         return $ids;
1052     }
1053
1054     /**
1055      * Pull list of groups this notice needs to be delivered to,
1056      * as previously recorded by saveGroups() or saveKnownGroups().
1057      *
1058      * @return array of Group objects
1059      */
1060     function getGroups()
1061     {
1062         // Don't save groups for repeats
1063
1064         if (!empty($this->repeat_of)) {
1065             return array();
1066         }
1067
1068         // XXX: cache me
1069
1070         $groups = array();
1071
1072         $gi = new Group_inbox();
1073
1074         $gi->selectAdd();
1075         $gi->selectAdd('group_id');
1076
1077         $gi->notice_id = $this->id;
1078
1079         if ($gi->find()) {
1080             while ($gi->fetch()) {
1081                 $group = User_group::staticGet('id', $gi->group_id);
1082                 if ($group) {
1083                     $groups[] = $group;
1084                 }
1085             }
1086         }
1087
1088         $gi->free();
1089
1090         return $groups;
1091     }
1092
1093     function asAtomEntry($namespace=false, $source=false)
1094     {
1095         $profile = $this->getProfile();
1096
1097         $xs = new XMLStringer(true);
1098
1099         if ($namespace) {
1100             $attrs = array('xmlns' => 'http://www.w3.org/2005/Atom',
1101                            'xmlns:thr' => 'http://purl.org/syndication/thread/1.0',
1102                            'xmlns:georss' => 'http://www.georss.org/georss',
1103                            'xmlns:activity' => 'http://activitystrea.ms/spec/1.0/',
1104                            'xmlns:media' => 'http://purl.org/syndication/atommedia',
1105                            'xmlns:poco' => 'http://portablecontacts.net/spec/1.0',
1106                            'xmlns:ostatus' => 'http://ostatus.org/schema/1.0');
1107         } else {
1108             $attrs = array();
1109         }
1110
1111         $xs->elementStart('entry', $attrs);
1112
1113         if ($source) {
1114             $xs->elementStart('source');
1115             $xs->element('title', null, $profile->nickname . " - " . common_config('site', 'name'));
1116             $xs->element('link', array('href' => $profile->profileurl));
1117             $user = User::staticGet('id', $profile->id);
1118             if (!empty($user)) {
1119                 $atom_feed = common_local_url('ApiTimelineUser',
1120                                               array('format' => 'atom',
1121                                                     'id' => $profile->nickname));
1122                 $xs->element('link', array('rel' => 'self',
1123                                            'type' => 'application/atom+xml',
1124                                            'href' => $profile->profileurl));
1125                 $xs->element('link', array('rel' => 'license',
1126                                            'href' => common_config('license', 'url')));
1127             }
1128
1129             $xs->element('icon', null, $profile->avatarUrl(AVATAR_PROFILE_SIZE));
1130         }
1131
1132         if ($source) {
1133             $xs->elementEnd('source');
1134         }
1135
1136         $xs->element('title', null, $this->content);
1137
1138         $xs->raw($profile->asAtomAuthor());
1139         $xs->raw($profile->asActivityActor());
1140
1141         $xs->element('link', array('rel' => 'alternate',
1142                                    'type' => 'text/html',
1143                                    'href' => $this->bestUrl()));
1144
1145         $xs->element('id', null, $this->uri);
1146
1147         $xs->element('published', null, common_date_w3dtf($this->created));
1148         $xs->element('updated', null, common_date_w3dtf($this->created));
1149
1150         if ($this->reply_to) {
1151             $reply_notice = Notice::staticGet('id', $this->reply_to);
1152             if (!empty($reply_notice)) {
1153                 $xs->element('link', array('rel' => 'related',
1154                                            'href' => $reply_notice->bestUrl()));
1155                 $xs->element('thr:in-reply-to',
1156                              array('ref' => $reply_notice->uri,
1157                                    'href' => $reply_notice->bestUrl()));
1158             }
1159         }
1160
1161         if (!empty($this->conversation)) {
1162
1163             $conv = Conversation::staticGet('id', $this->conversation);
1164
1165             if (!empty($conv)) {
1166                 $xs->element(
1167                     'link', array(
1168                         'rel' => 'ostatus:conversation',
1169                         'href' => $conv->uri
1170                     )
1171                 );
1172             }
1173         }
1174
1175         $reply_ids = $this->getReplies();
1176
1177         foreach ($reply_ids as $id) {
1178             $profile = Profile::staticGet('id', $id);
1179            if (!empty($profile)) {
1180                 $xs->element(
1181                     'link', array(
1182                         'rel' => 'ostatus:attention',
1183                         'href' => $profile->getUri()
1184                     )
1185                 );
1186             }
1187         }
1188
1189         $groups = $this->getGroups();
1190
1191         foreach ($groups as $group) {
1192             $xs->element(
1193                 'link', array(
1194                     'rel' => 'ostatus:attention',
1195                     'href' => $group->permalink()
1196                 )
1197             );
1198         }
1199
1200         if (!empty($this->repeat_of)) {
1201             $repeat = Notice::staticGet('id', $this->repeat_of);
1202             if (!empty($repeat)) {
1203                 $xs->element(
1204                     'ostatus:forward',
1205                      array('ref' => $repeat->uri, 'href' => $repeat->bestUrl())
1206                 );
1207             }
1208         }
1209
1210         $xs->element('content', array('type' => 'html'), $this->rendered);
1211
1212         $tag = new Notice_tag();
1213         $tag->notice_id = $this->id;
1214         if ($tag->find()) {
1215             while ($tag->fetch()) {
1216                 $xs->element('category', array('term' => $tag->tag));
1217             }
1218         }
1219         $tag->free();
1220
1221         # Enclosures
1222         $attachments = $this->attachments();
1223         if($attachments){
1224             foreach($attachments as $attachment){
1225                 $enclosure=$attachment->getEnclosure();
1226                 if ($enclosure) {
1227                     $attributes = array('rel'=>'enclosure','href'=>$enclosure->url,'type'=>$enclosure->mimetype,'length'=>$enclosure->size);
1228                     if($enclosure->title){
1229                         $attributes['title']=$enclosure->title;
1230                     }
1231                     $xs->element('link', $attributes, null);
1232                 }
1233             }
1234         }
1235
1236         if (!empty($this->lat) && !empty($this->lon)) {
1237             $xs->element('georss:point', null, $this->lat . ' ' . $this->lon);
1238         }
1239
1240         $xs->elementEnd('entry');
1241
1242         return $xs->getString();
1243     }
1244
1245     /**
1246      * Returns an XML string fragment with a reference to a notice as an
1247      * Activity Streams noun object with the given element type.
1248      *
1249      * Assumes that 'activity' namespace has been previously defined.
1250      *
1251      * @param string $element one of 'subject', 'object', 'target'
1252      * @return string
1253      */
1254     function asActivityNoun($element)
1255     {
1256         $noun = ActivityObject::fromNotice($this);
1257         return $noun->asString('activity:' . $element);
1258     }
1259
1260     function bestUrl()
1261     {
1262         if (!empty($this->url)) {
1263             return $this->url;
1264         } else if (!empty($this->uri) && preg_match('/^https?:/', $this->uri)) {
1265             return $this->uri;
1266         } else {
1267             return common_local_url('shownotice',
1268                                     array('notice' => $this->id));
1269         }
1270     }
1271
1272     function stream($fn, $args, $cachekey, $offset=0, $limit=20, $since_id=0, $max_id=0, $since=null)
1273     {
1274         $cache = common_memcache();
1275
1276         if (empty($cache) ||
1277             $since_id != 0 || $max_id != 0 || (!is_null($since) && $since > 0) ||
1278             is_null($limit) ||
1279             ($offset + $limit) > NOTICE_CACHE_WINDOW) {
1280             return call_user_func_array($fn, array_merge($args, array($offset, $limit, $since_id,
1281                                                                       $max_id, $since)));
1282         }
1283
1284         $idkey = common_cache_key($cachekey);
1285
1286         $idstr = $cache->get($idkey);
1287
1288         if ($idstr !== false) {
1289             // Cache hit! Woohoo!
1290             $window = explode(',', $idstr);
1291             $ids = array_slice($window, $offset, $limit);
1292             return $ids;
1293         }
1294
1295         $laststr = $cache->get($idkey.';last');
1296
1297         if ($laststr !== false) {
1298             $window = explode(',', $laststr);
1299             $last_id = $window[0];
1300             $new_ids = call_user_func_array($fn, array_merge($args, array(0, NOTICE_CACHE_WINDOW,
1301                                                                           $last_id, 0, null)));
1302
1303             $new_window = array_merge($new_ids, $window);
1304
1305             $new_windowstr = implode(',', $new_window);
1306
1307             $result = $cache->set($idkey, $new_windowstr);
1308             $result = $cache->set($idkey . ';last', $new_windowstr);
1309
1310             $ids = array_slice($new_window, $offset, $limit);
1311
1312             return $ids;
1313         }
1314
1315         $window = call_user_func_array($fn, array_merge($args, array(0, NOTICE_CACHE_WINDOW,
1316                                                                      0, 0, null)));
1317
1318         $windowstr = implode(',', $window);
1319
1320         $result = $cache->set($idkey, $windowstr);
1321         $result = $cache->set($idkey . ';last', $windowstr);
1322
1323         $ids = array_slice($window, $offset, $limit);
1324
1325         return $ids;
1326     }
1327
1328     /**
1329      * Determine which notice, if any, a new notice is in reply to.
1330      *
1331      * For conversation tracking, we try to see where this notice fits
1332      * in the tree. Rough algorithm is:
1333      *
1334      * if (reply_to is set and valid) {
1335      *     return reply_to;
1336      * } else if ((source not API or Web) and (content starts with "T NAME" or "@name ")) {
1337      *     return ID of last notice by initial @name in content;
1338      * }
1339      *
1340      * Note that all @nickname instances will still be used to save "reply" records,
1341      * so the notice shows up in the mentioned users' "replies" tab.
1342      *
1343      * @param integer $reply_to   ID passed in by Web or API
1344      * @param integer $profile_id ID of author
1345      * @param string  $source     Source tag, like 'web' or 'gwibber'
1346      * @param string  $content    Final notice content
1347      *
1348      * @return integer ID of replied-to notice, or null for not a reply.
1349      */
1350
1351     static function getReplyTo($reply_to, $profile_id, $source, $content)
1352     {
1353         static $lb = array('xmpp', 'mail', 'sms', 'omb');
1354
1355         // If $reply_to is specified, we check that it exists, and then
1356         // return it if it does
1357
1358         if (!empty($reply_to)) {
1359             $reply_notice = Notice::staticGet('id', $reply_to);
1360             if (!empty($reply_notice)) {
1361                 return $reply_to;
1362             }
1363         }
1364
1365         // If it's not a "low bandwidth" source (one where you can't set
1366         // a reply_to argument), we return. This is mostly web and API
1367         // clients.
1368
1369         if (!in_array($source, $lb)) {
1370             return null;
1371         }
1372
1373         // Is there an initial @ or T?
1374
1375         if (preg_match('/^T ([A-Z0-9]{1,64}) /', $content, $match) ||
1376             preg_match('/^@([a-z0-9]{1,64})\s+/', $content, $match)) {
1377             $nickname = common_canonical_nickname($match[1]);
1378         } else {
1379             return null;
1380         }
1381
1382         // Figure out who that is.
1383
1384         $sender = Profile::staticGet('id', $profile_id);
1385         if (empty($sender)) {
1386             return null;
1387         }
1388
1389         $recipient = common_relative_profile($sender, $nickname, common_sql_now());
1390
1391         if (empty($recipient)) {
1392             return null;
1393         }
1394
1395         // Get their last notice
1396
1397         $last = $recipient->getCurrentNotice();
1398
1399         if (!empty($last)) {
1400             return $last->id;
1401         }
1402     }
1403
1404     static function maxContent()
1405     {
1406         $contentlimit = common_config('notice', 'contentlimit');
1407         // null => use global limit (distinct from 0!)
1408         if (is_null($contentlimit)) {
1409             $contentlimit = common_config('site', 'textlimit');
1410         }
1411         return $contentlimit;
1412     }
1413
1414     static function contentTooLong($content)
1415     {
1416         $contentlimit = self::maxContent();
1417         return ($contentlimit > 0 && !empty($content) && (mb_strlen($content) > $contentlimit));
1418     }
1419
1420     function getLocation()
1421     {
1422         $location = null;
1423
1424         if (!empty($this->location_id) && !empty($this->location_ns)) {
1425             $location = Location::fromId($this->location_id, $this->location_ns);
1426         }
1427
1428         if (is_null($location)) { // no ID, or Location::fromId() failed
1429             if (!empty($this->lat) && !empty($this->lon)) {
1430                 $location = Location::fromLatLon($this->lat, $this->lon);
1431             }
1432         }
1433
1434         return $location;
1435     }
1436
1437     function repeat($repeater_id, $source)
1438     {
1439         $author = Profile::staticGet('id', $this->profile_id);
1440
1441         $content = sprintf(_('RT @%1$s %2$s'),
1442                            $author->nickname,
1443                            $this->content);
1444
1445         $maxlen = common_config('site', 'textlimit');
1446         if ($maxlen > 0 && mb_strlen($content) > $maxlen) {
1447             // Web interface and current Twitter API clients will
1448             // pull the original notice's text, but some older
1449             // clients and RSS/Atom feeds will see this trimmed text.
1450             //
1451             // Unfortunately this is likely to lose tags or URLs
1452             // at the end of long notices.
1453             $content = mb_substr($content, 0, $maxlen - 4) . ' ...';
1454         }
1455
1456         return self::saveNew($repeater_id, $content, $source,
1457                              array('repeat_of' => $this->id));
1458     }
1459
1460     // These are supposed to be in chron order!
1461
1462     function repeatStream($limit=100)
1463     {
1464         $cache = common_memcache();
1465
1466         if (empty($cache)) {
1467             $ids = $this->_repeatStreamDirect($limit);
1468         } else {
1469             $idstr = $cache->get(common_cache_key('notice:repeats:'.$this->id));
1470             if ($idstr !== false) {
1471                 $ids = explode(',', $idstr);
1472             } else {
1473                 $ids = $this->_repeatStreamDirect(100);
1474                 $cache->set(common_cache_key('notice:repeats:'.$this->id), implode(',', $ids));
1475             }
1476             if ($limit < 100) {
1477                 // We do a max of 100, so slice down to limit
1478                 $ids = array_slice($ids, 0, $limit);
1479             }
1480         }
1481
1482         return Notice::getStreamByIds($ids);
1483     }
1484
1485     function _repeatStreamDirect($limit)
1486     {
1487         $notice = new Notice();
1488
1489         $notice->selectAdd(); // clears it
1490         $notice->selectAdd('id');
1491
1492         $notice->repeat_of = $this->id;
1493
1494         $notice->orderBy('created'); // NB: asc!
1495
1496         if (!is_null($offset)) {
1497             $notice->limit($offset, $limit);
1498         }
1499
1500         $ids = array();
1501
1502         if ($notice->find()) {
1503             while ($notice->fetch()) {
1504                 $ids[] = $notice->id;
1505             }
1506         }
1507
1508         $notice->free();
1509         $notice = NULL;
1510
1511         return $ids;
1512     }
1513
1514     function locationOptions($lat, $lon, $location_id, $location_ns, $profile = null)
1515     {
1516         $options = array();
1517
1518         if (!empty($location_id) && !empty($location_ns)) {
1519
1520             $options['location_id'] = $location_id;
1521             $options['location_ns'] = $location_ns;
1522
1523             $location = Location::fromId($location_id, $location_ns);
1524
1525             if (!empty($location)) {
1526                 $options['lat'] = $location->lat;
1527                 $options['lon'] = $location->lon;
1528             }
1529
1530         } else if (!empty($lat) && !empty($lon)) {
1531
1532             $options['lat'] = $lat;
1533             $options['lon'] = $lon;
1534
1535             $location = Location::fromLatLon($lat, $lon);
1536
1537             if (!empty($location)) {
1538                 $options['location_id'] = $location->location_id;
1539                 $options['location_ns'] = $location->location_ns;
1540             }
1541         } else if (!empty($profile)) {
1542
1543             if (isset($profile->lat) && isset($profile->lon)) {
1544                 $options['lat'] = $profile->lat;
1545                 $options['lon'] = $profile->lon;
1546             }
1547
1548             if (isset($profile->location_id) && isset($profile->location_ns)) {
1549                 $options['location_id'] = $profile->location_id;
1550                 $options['location_ns'] = $profile->location_ns;
1551             }
1552         }
1553
1554         return $options;
1555     }
1556
1557     function clearReplies()
1558     {
1559         $replyNotice = new Notice();
1560         $replyNotice->reply_to = $this->id;
1561
1562         //Null any notices that are replies to this notice
1563
1564         if ($replyNotice->find()) {
1565             while ($replyNotice->fetch()) {
1566                 $orig = clone($replyNotice);
1567                 $replyNotice->reply_to = null;
1568                 $replyNotice->update($orig);
1569             }
1570         }
1571
1572         // Reply records
1573
1574         $reply = new Reply();
1575         $reply->notice_id = $this->id;
1576
1577         if ($reply->find()) {
1578             while($reply->fetch()) {
1579                 self::blow('reply:stream:%d', $reply->profile_id);
1580                 $reply->delete();
1581             }
1582         }
1583
1584         $reply->free();
1585     }
1586
1587     function clearRepeats()
1588     {
1589         $repeatNotice = new Notice();
1590         $repeatNotice->repeat_of = $this->id;
1591
1592         //Null any notices that are repeats of this notice
1593
1594         if ($repeatNotice->find()) {
1595             while ($repeatNotice->fetch()) {
1596                 $orig = clone($repeatNotice);
1597                 $repeatNotice->repeat_of = null;
1598                 $repeatNotice->update($orig);
1599             }
1600         }
1601     }
1602
1603     function clearFaves()
1604     {
1605         $fave = new Fave();
1606         $fave->notice_id = $this->id;
1607
1608         if ($fave->find()) {
1609             while ($fave->fetch()) {
1610                 self::blow('fave:ids_by_user_own:%d', $fave->user_id);
1611                 self::blow('fave:ids_by_user_own:%d;last', $fave->user_id);
1612                 self::blow('fave:ids_by_user:%d', $fave->user_id);
1613                 self::blow('fave:ids_by_user:%d;last', $fave->user_id);
1614                 $fave->delete();
1615             }
1616         }
1617
1618         $fave->free();
1619     }
1620
1621     function clearTags()
1622     {
1623         $tag = new Notice_tag();
1624         $tag->notice_id = $this->id;
1625
1626         if ($tag->find()) {
1627             while ($tag->fetch()) {
1628                 self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, common_keyize($tag->tag));
1629                 self::blow('profile:notice_ids_tagged:%d:%s;last', $this->profile_id, common_keyize($tag->tag));
1630                 self::blow('notice_tag:notice_ids:%s', common_keyize($tag->tag));
1631                 self::blow('notice_tag:notice_ids:%s;last', common_keyize($tag->tag));
1632                 $tag->delete();
1633             }
1634         }
1635
1636         $tag->free();
1637     }
1638
1639     function clearGroupInboxes()
1640     {
1641         $gi = new Group_inbox();
1642
1643         $gi->notice_id = $this->id;
1644
1645         if ($gi->find()) {
1646             while ($gi->fetch()) {
1647                 self::blow('user_group:notice_ids:%d', $gi->group_id);
1648                 $gi->delete();
1649             }
1650         }
1651
1652         $gi->free();
1653     }
1654
1655     function distribute()
1656     {
1657         // We always insert for the author so they don't
1658         // have to wait
1659
1660         $user = User::staticGet('id', $this->profile_id);
1661         if (!empty($user)) {
1662             Inbox::insertNotice($user->id, $this->id);
1663         }
1664
1665         if (common_config('queue', 'inboxes')) {
1666             // If there's a failure, we want to _force_
1667             // distribution at this point.
1668             try {
1669                 $qm = QueueManager::get();
1670                 $qm->enqueue($this, 'distrib');
1671             } catch (Exception $e) {
1672                 // If the exception isn't transient, this
1673                 // may throw more exceptions as DQH does
1674                 // its own enqueueing. So, we ignore them!
1675                 try {
1676                     $handler = new DistribQueueHandler();
1677                     $handler->handle($this);
1678                 } catch (Exception $e) {
1679                     common_log(LOG_ERR, "emergency redistribution resulted in " . $e->getMessage());
1680                 }
1681                 // Re-throw so somebody smarter can handle it.
1682                 throw $e;
1683             }
1684         } else {
1685             $handler = new DistribQueueHandler();
1686             $handler->handle($this);
1687         }
1688     }
1689
1690     function insert()
1691     {
1692         $result = parent::insert();
1693
1694         if ($result) {
1695             // Profile::hasRepeated() abuses pkeyGet(), so we
1696             // have to clear manually
1697             if (!empty($this->repeat_of)) {
1698                 $c = self::memcache();
1699                 if (!empty($c)) {
1700                     $ck = self::multicacheKey('Notice',
1701                                               array('profile_id' => $this->profile_id,
1702                                                     'repeat_of' => $this->repeat_of));
1703                     $c->delete($ck);
1704                 }
1705             }
1706         }
1707
1708         return $result;
1709     }
1710 }