]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Notice.php
2d02a9a19f1c747ce02134bdd97e71b0713f936e
[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         if (!empty($rendered)) {
286             $notice->rendered = $rendered;
287         } else {
288             $notice->rendered = common_render_content($final, $notice);
289         }
290
291         $notice->source = $source;
292         $notice->uri = $uri;
293         $notice->url = $url;
294
295         // Handle repeat case
296
297         if (isset($repeat_of)) {
298             $notice->repeat_of = $repeat_of;
299         } else {
300             $notice->reply_to = self::getReplyTo($reply_to, $profile_id, $source, $final);
301         }
302
303         if (!empty($notice->reply_to)) {
304             $reply = Notice::staticGet('id', $notice->reply_to);
305             $notice->conversation = $reply->conversation;
306         }
307
308         if (!empty($lat) && !empty($lon)) {
309             $notice->lat = $lat;
310             $notice->lon = $lon;
311         }
312
313         if (!empty($location_ns) && !empty($location_id)) {
314             $notice->location_id = $location_id;
315             $notice->location_ns = $location_ns;
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         $mentions = common_find_mentions($this->profile_id, $this->content);
977
978         $replied = array();
979
980         // store replied only for first @ (what user/notice what the reply directed,
981         // we assume first @ is it)
982
983         foreach ($mentions as $mention) {
984
985             foreach ($mention['mentioned'] as $mentioned) {
986
987                 // skip if they're already covered
988
989                 if (!empty($replied[$mentioned->id])) {
990                     continue;
991                 }
992
993                 // Don't save replies from blocked profile to local user
994
995                 $mentioned_user = User::staticGet('id', $mentioned->id);
996                 if (!empty($mentioned_user) && $mentioned_user->hasBlocked($sender)) {
997                     continue;
998                 }
999
1000                 $reply = new Reply();
1001
1002                 $reply->notice_id  = $this->id;
1003                 $reply->profile_id = $mentioned->id;
1004
1005                 $id = $reply->insert();
1006
1007                 if (!$id) {
1008                     common_log_db_error($reply, 'INSERT', __FILE__);
1009                     throw new ServerException("Couldn't save reply for {$this->id}, {$mentioned->id}");
1010                 } else {
1011                     $replied[$mentioned->id] = 1;
1012                 }
1013             }
1014         }
1015
1016         $recipientIds = array_keys($replied);
1017
1018         foreach ($recipientIds as $recipientId) {
1019             $user = User::staticGet('id', $recipientId);
1020             if (!empty($user)) {
1021                 self::blow('reply:stream:%d', $reply->profile_id);
1022                 mail_notify_attn($user, $this);
1023             }
1024         }
1025
1026         return $recipientIds;
1027     }
1028
1029     function getReplies()
1030     {
1031         // XXX: cache me
1032
1033         $ids = array();
1034
1035         $reply = new Reply();
1036         $reply->selectAdd();
1037         $reply->selectAdd('profile_id');
1038         $reply->notice_id = $this->id;
1039
1040         if ($reply->find()) {
1041             while($reply->fetch()) {
1042                 $ids[] = $reply->profile_id;
1043             }
1044         }
1045
1046         $reply->free();
1047
1048         return $ids;
1049     }
1050
1051     /**
1052      * Pull list of groups this notice needs to be delivered to,
1053      * as previously recorded by saveGroups() or saveKnownGroups().
1054      *
1055      * @return array of Group objects
1056      */
1057     function getGroups()
1058     {
1059         // Don't save groups for repeats
1060
1061         if (!empty($this->repeat_of)) {
1062             return array();
1063         }
1064
1065         // XXX: cache me
1066
1067         $groups = array();
1068
1069         $gi = new Group_inbox();
1070
1071         $gi->selectAdd();
1072         $gi->selectAdd('group_id');
1073
1074         $gi->notice_id = $this->id;
1075
1076         if ($gi->find()) {
1077             while ($gi->fetch()) {
1078                 $group = User_group::staticGet('id', $gi->group_id);
1079                 if ($group) {
1080                     $groups[] = $group;
1081                 }
1082             }
1083         }
1084
1085         $gi->free();
1086
1087         return $groups;
1088     }
1089
1090     function asAtomEntry($namespace=false, $source=false)
1091     {
1092         $profile = $this->getProfile();
1093
1094         $xs = new XMLStringer(true);
1095
1096         if ($namespace) {
1097             $attrs = array('xmlns' => 'http://www.w3.org/2005/Atom',
1098                            'xmlns:thr' => 'http://purl.org/syndication/thread/1.0',
1099                            'xmlns:georss' => 'http://www.georss.org/georss',
1100                            'xmlns:activity' => 'http://activitystrea.ms/spec/1.0/',
1101                            'xmlns:media' => 'http://purl.org/syndication/atommedia',
1102                            'xmlns:poco' => 'http://portablecontacts.net/spec/1.0',
1103                            'xmlns:ostatus' => 'http://ostatus.org/schema/1.0');
1104         } else {
1105             $attrs = array();
1106         }
1107
1108         $xs->elementStart('entry', $attrs);
1109
1110         if ($source) {
1111             $xs->elementStart('source');
1112             $xs->element('title', null, $profile->nickname . " - " . common_config('site', 'name'));
1113             $xs->element('link', array('href' => $profile->profileurl));
1114             $user = User::staticGet('id', $profile->id);
1115             if (!empty($user)) {
1116                 $atom_feed = common_local_url('ApiTimelineUser',
1117                                               array('format' => 'atom',
1118                                                     'id' => $profile->nickname));
1119                 $xs->element('link', array('rel' => 'self',
1120                                            'type' => 'application/atom+xml',
1121                                            'href' => $profile->profileurl));
1122                 $xs->element('link', array('rel' => 'license',
1123                                            'href' => common_config('license', 'url')));
1124             }
1125
1126             $xs->element('icon', null, $profile->avatarUrl(AVATAR_PROFILE_SIZE));
1127         }
1128
1129         if ($source) {
1130             $xs->elementEnd('source');
1131         }
1132
1133         $xs->element('title', null, $this->content);
1134         $xs->element('summary', null, $this->content);
1135
1136         $xs->raw($profile->asAtomAuthor());
1137         $xs->raw($profile->asActivityActor());
1138
1139         $xs->element('link', array('rel' => 'alternate',
1140                                    'type' => 'text/html',
1141                                    'href' => $this->bestUrl()));
1142
1143         $xs->element('id', null, $this->uri);
1144
1145         $xs->element('published', null, common_date_w3dtf($this->created));
1146         $xs->element('updated', null, common_date_w3dtf($this->created));
1147
1148         if ($this->reply_to) {
1149             $reply_notice = Notice::staticGet('id', $this->reply_to);
1150             if (!empty($reply_notice)) {
1151                 $xs->element('link', array('rel' => 'related',
1152                                            'href' => $reply_notice->bestUrl()));
1153                 $xs->element('thr:in-reply-to',
1154                              array('ref' => $reply_notice->uri,
1155                                    'href' => $reply_notice->bestUrl()));
1156             }
1157         }
1158
1159         if (!empty($this->conversation)) {
1160
1161             $conv = Conversation::staticGet('id', $this->conversation);
1162
1163             if (!empty($conv)) {
1164                 $xs->element(
1165                     'link', array(
1166                         'rel' => 'ostatus:conversation',
1167                         'href' => $conv->uri
1168                     )
1169                 );
1170             }
1171         }
1172
1173         $reply_ids = $this->getReplies();
1174
1175         foreach ($reply_ids as $id) {
1176             $profile = Profile::staticGet('id', $id);
1177            if (!empty($profile)) {
1178                 $xs->element(
1179                     'link', array(
1180                         'rel' => 'ostatus:attention',
1181                         'href' => $profile->getUri()
1182                     )
1183                 );
1184             }
1185         }
1186
1187         $groups = $this->getGroups();
1188
1189         foreach ($groups as $group) {
1190             $xs->element(
1191                 'link', array(
1192                     'rel' => 'ostatus:attention',
1193                     'href' => $group->permalink()
1194                 )
1195             );
1196         }
1197
1198         if (!empty($this->repeat_of)) {
1199             $repeat = Notice::staticGet('id', $this->repeat_of);
1200             if (!empty($repeat)) {
1201                 $xs->element(
1202                     'ostatus:forward',
1203                      array('ref' => $repeat->uri, 'href' => $repeat->bestUrl())
1204                 );
1205             }
1206         }
1207
1208         $xs->element('content', array('type' => 'html'), $this->rendered);
1209
1210         $tag = new Notice_tag();
1211         $tag->notice_id = $this->id;
1212         if ($tag->find()) {
1213             while ($tag->fetch()) {
1214                 $xs->element('category', array('term' => $tag->tag));
1215             }
1216         }
1217         $tag->free();
1218
1219         # Enclosures
1220         $attachments = $this->attachments();
1221         if($attachments){
1222             foreach($attachments as $attachment){
1223                 $enclosure=$attachment->getEnclosure();
1224                 if ($enclosure) {
1225                     $attributes = array('rel'=>'enclosure','href'=>$enclosure->url,'type'=>$enclosure->mimetype,'length'=>$enclosure->size);
1226                     if($enclosure->title){
1227                         $attributes['title']=$enclosure->title;
1228                     }
1229                     $xs->element('link', $attributes, null);
1230                 }
1231             }
1232         }
1233
1234         if (!empty($this->lat) && !empty($this->lon)) {
1235             $xs->element('georss:point', null, $this->lat . ' ' . $this->lon);
1236         }
1237
1238         $xs->elementEnd('entry');
1239
1240         return $xs->getString();
1241     }
1242
1243     /**
1244      * Returns an XML string fragment with a reference to a notice as an
1245      * Activity Streams noun object with the given element type.
1246      *
1247      * Assumes that 'activity' namespace has been previously defined.
1248      *
1249      * @param string $element one of 'subject', 'object', 'target'
1250      * @return string
1251      */
1252     function asActivityNoun($element)
1253     {
1254         $noun = ActivityObject::fromNotice($this);
1255         return $noun->asString('activity:' . $element);
1256     }
1257
1258     function bestUrl()
1259     {
1260         if (!empty($this->url)) {
1261             return $this->url;
1262         } else if (!empty($this->uri) && preg_match('/^https?:/', $this->uri)) {
1263             return $this->uri;
1264         } else {
1265             return common_local_url('shownotice',
1266                                     array('notice' => $this->id));
1267         }
1268     }
1269
1270     function stream($fn, $args, $cachekey, $offset=0, $limit=20, $since_id=0, $max_id=0, $since=null)
1271     {
1272         $cache = common_memcache();
1273
1274         if (empty($cache) ||
1275             $since_id != 0 || $max_id != 0 || (!is_null($since) && $since > 0) ||
1276             is_null($limit) ||
1277             ($offset + $limit) > NOTICE_CACHE_WINDOW) {
1278             return call_user_func_array($fn, array_merge($args, array($offset, $limit, $since_id,
1279                                                                       $max_id, $since)));
1280         }
1281
1282         $idkey = common_cache_key($cachekey);
1283
1284         $idstr = $cache->get($idkey);
1285
1286         if ($idstr !== false) {
1287             // Cache hit! Woohoo!
1288             $window = explode(',', $idstr);
1289             $ids = array_slice($window, $offset, $limit);
1290             return $ids;
1291         }
1292
1293         $laststr = $cache->get($idkey.';last');
1294
1295         if ($laststr !== false) {
1296             $window = explode(',', $laststr);
1297             $last_id = $window[0];
1298             $new_ids = call_user_func_array($fn, array_merge($args, array(0, NOTICE_CACHE_WINDOW,
1299                                                                           $last_id, 0, null)));
1300
1301             $new_window = array_merge($new_ids, $window);
1302
1303             $new_windowstr = implode(',', $new_window);
1304
1305             $result = $cache->set($idkey, $new_windowstr);
1306             $result = $cache->set($idkey . ';last', $new_windowstr);
1307
1308             $ids = array_slice($new_window, $offset, $limit);
1309
1310             return $ids;
1311         }
1312
1313         $window = call_user_func_array($fn, array_merge($args, array(0, NOTICE_CACHE_WINDOW,
1314                                                                      0, 0, null)));
1315
1316         $windowstr = implode(',', $window);
1317
1318         $result = $cache->set($idkey, $windowstr);
1319         $result = $cache->set($idkey . ';last', $windowstr);
1320
1321         $ids = array_slice($window, $offset, $limit);
1322
1323         return $ids;
1324     }
1325
1326     /**
1327      * Determine which notice, if any, a new notice is in reply to.
1328      *
1329      * For conversation tracking, we try to see where this notice fits
1330      * in the tree. Rough algorithm is:
1331      *
1332      * if (reply_to is set and valid) {
1333      *     return reply_to;
1334      * } else if ((source not API or Web) and (content starts with "T NAME" or "@name ")) {
1335      *     return ID of last notice by initial @name in content;
1336      * }
1337      *
1338      * Note that all @nickname instances will still be used to save "reply" records,
1339      * so the notice shows up in the mentioned users' "replies" tab.
1340      *
1341      * @param integer $reply_to   ID passed in by Web or API
1342      * @param integer $profile_id ID of author
1343      * @param string  $source     Source tag, like 'web' or 'gwibber'
1344      * @param string  $content    Final notice content
1345      *
1346      * @return integer ID of replied-to notice, or null for not a reply.
1347      */
1348
1349     static function getReplyTo($reply_to, $profile_id, $source, $content)
1350     {
1351         static $lb = array('xmpp', 'mail', 'sms', 'omb');
1352
1353         // If $reply_to is specified, we check that it exists, and then
1354         // return it if it does
1355
1356         if (!empty($reply_to)) {
1357             $reply_notice = Notice::staticGet('id', $reply_to);
1358             if (!empty($reply_notice)) {
1359                 return $reply_to;
1360             }
1361         }
1362
1363         // If it's not a "low bandwidth" source (one where you can't set
1364         // a reply_to argument), we return. This is mostly web and API
1365         // clients.
1366
1367         if (!in_array($source, $lb)) {
1368             return null;
1369         }
1370
1371         // Is there an initial @ or T?
1372
1373         if (preg_match('/^T ([A-Z0-9]{1,64}) /', $content, $match) ||
1374             preg_match('/^@([a-z0-9]{1,64})\s+/', $content, $match)) {
1375             $nickname = common_canonical_nickname($match[1]);
1376         } else {
1377             return null;
1378         }
1379
1380         // Figure out who that is.
1381
1382         $sender = Profile::staticGet('id', $profile_id);
1383         if (empty($sender)) {
1384             return null;
1385         }
1386
1387         $recipient = common_relative_profile($sender, $nickname, common_sql_now());
1388
1389         if (empty($recipient)) {
1390             return null;
1391         }
1392
1393         // Get their last notice
1394
1395         $last = $recipient->getCurrentNotice();
1396
1397         if (!empty($last)) {
1398             return $last->id;
1399         }
1400     }
1401
1402     static function maxContent()
1403     {
1404         $contentlimit = common_config('notice', 'contentlimit');
1405         // null => use global limit (distinct from 0!)
1406         if (is_null($contentlimit)) {
1407             $contentlimit = common_config('site', 'textlimit');
1408         }
1409         return $contentlimit;
1410     }
1411
1412     static function contentTooLong($content)
1413     {
1414         $contentlimit = self::maxContent();
1415         return ($contentlimit > 0 && !empty($content) && (mb_strlen($content) > $contentlimit));
1416     }
1417
1418     function getLocation()
1419     {
1420         $location = null;
1421
1422         if (!empty($this->location_id) && !empty($this->location_ns)) {
1423             $location = Location::fromId($this->location_id, $this->location_ns);
1424         }
1425
1426         if (is_null($location)) { // no ID, or Location::fromId() failed
1427             if (!empty($this->lat) && !empty($this->lon)) {
1428                 $location = Location::fromLatLon($this->lat, $this->lon);
1429             }
1430         }
1431
1432         return $location;
1433     }
1434
1435     function repeat($repeater_id, $source)
1436     {
1437         $author = Profile::staticGet('id', $this->profile_id);
1438
1439         $content = sprintf(_('RT @%1$s %2$s'),
1440                            $author->nickname,
1441                            $this->content);
1442
1443         $maxlen = common_config('site', 'textlimit');
1444         if ($maxlen > 0 && mb_strlen($content) > $maxlen) {
1445             // Web interface and current Twitter API clients will
1446             // pull the original notice's text, but some older
1447             // clients and RSS/Atom feeds will see this trimmed text.
1448             //
1449             // Unfortunately this is likely to lose tags or URLs
1450             // at the end of long notices.
1451             $content = mb_substr($content, 0, $maxlen - 4) . ' ...';
1452         }
1453
1454         return self::saveNew($repeater_id, $content, $source,
1455                              array('repeat_of' => $this->id));
1456     }
1457
1458     // These are supposed to be in chron order!
1459
1460     function repeatStream($limit=100)
1461     {
1462         $cache = common_memcache();
1463
1464         if (empty($cache)) {
1465             $ids = $this->_repeatStreamDirect($limit);
1466         } else {
1467             $idstr = $cache->get(common_cache_key('notice:repeats:'.$this->id));
1468             if ($idstr !== false) {
1469                 $ids = explode(',', $idstr);
1470             } else {
1471                 $ids = $this->_repeatStreamDirect(100);
1472                 $cache->set(common_cache_key('notice:repeats:'.$this->id), implode(',', $ids));
1473             }
1474             if ($limit < 100) {
1475                 // We do a max of 100, so slice down to limit
1476                 $ids = array_slice($ids, 0, $limit);
1477             }
1478         }
1479
1480         return Notice::getStreamByIds($ids);
1481     }
1482
1483     function _repeatStreamDirect($limit)
1484     {
1485         $notice = new Notice();
1486
1487         $notice->selectAdd(); // clears it
1488         $notice->selectAdd('id');
1489
1490         $notice->repeat_of = $this->id;
1491
1492         $notice->orderBy('created'); // NB: asc!
1493
1494         if (!is_null($offset)) {
1495             $notice->limit($offset, $limit);
1496         }
1497
1498         $ids = array();
1499
1500         if ($notice->find()) {
1501             while ($notice->fetch()) {
1502                 $ids[] = $notice->id;
1503             }
1504         }
1505
1506         $notice->free();
1507         $notice = NULL;
1508
1509         return $ids;
1510     }
1511
1512     function locationOptions($lat, $lon, $location_id, $location_ns, $profile = null)
1513     {
1514         $options = array();
1515
1516         if (!empty($location_id) && !empty($location_ns)) {
1517
1518             $options['location_id'] = $location_id;
1519             $options['location_ns'] = $location_ns;
1520
1521             $location = Location::fromId($location_id, $location_ns);
1522
1523             if (!empty($location)) {
1524                 $options['lat'] = $location->lat;
1525                 $options['lon'] = $location->lon;
1526             }
1527
1528         } else if (!empty($lat) && !empty($lon)) {
1529
1530             $options['lat'] = $lat;
1531             $options['lon'] = $lon;
1532
1533             $location = Location::fromLatLon($lat, $lon);
1534
1535             if (!empty($location)) {
1536                 $options['location_id'] = $location->location_id;
1537                 $options['location_ns'] = $location->location_ns;
1538             }
1539         } else if (!empty($profile)) {
1540
1541             if (isset($profile->lat) && isset($profile->lon)) {
1542                 $options['lat'] = $profile->lat;
1543                 $options['lon'] = $profile->lon;
1544             }
1545
1546             if (isset($profile->location_id) && isset($profile->location_ns)) {
1547                 $options['location_id'] = $profile->location_id;
1548                 $options['location_ns'] = $profile->location_ns;
1549             }
1550         }
1551
1552         return $options;
1553     }
1554
1555     function clearReplies()
1556     {
1557         $replyNotice = new Notice();
1558         $replyNotice->reply_to = $this->id;
1559
1560         //Null any notices that are replies to this notice
1561
1562         if ($replyNotice->find()) {
1563             while ($replyNotice->fetch()) {
1564                 $orig = clone($replyNotice);
1565                 $replyNotice->reply_to = null;
1566                 $replyNotice->update($orig);
1567             }
1568         }
1569
1570         // Reply records
1571
1572         $reply = new Reply();
1573         $reply->notice_id = $this->id;
1574
1575         if ($reply->find()) {
1576             while($reply->fetch()) {
1577                 self::blow('reply:stream:%d', $reply->profile_id);
1578                 $reply->delete();
1579             }
1580         }
1581
1582         $reply->free();
1583     }
1584
1585     function clearRepeats()
1586     {
1587         $repeatNotice = new Notice();
1588         $repeatNotice->repeat_of = $this->id;
1589
1590         //Null any notices that are repeats of this notice
1591
1592         if ($repeatNotice->find()) {
1593             while ($repeatNotice->fetch()) {
1594                 $orig = clone($repeatNotice);
1595                 $repeatNotice->repeat_of = null;
1596                 $repeatNotice->update($orig);
1597             }
1598         }
1599     }
1600
1601     function clearFaves()
1602     {
1603         $fave = new Fave();
1604         $fave->notice_id = $this->id;
1605
1606         if ($fave->find()) {
1607             while ($fave->fetch()) {
1608                 self::blow('fave:ids_by_user_own:%d', $fave->user_id);
1609                 self::blow('fave:ids_by_user_own:%d;last', $fave->user_id);
1610                 self::blow('fave:ids_by_user:%d', $fave->user_id);
1611                 self::blow('fave:ids_by_user:%d;last', $fave->user_id);
1612                 $fave->delete();
1613             }
1614         }
1615
1616         $fave->free();
1617     }
1618
1619     function clearTags()
1620     {
1621         $tag = new Notice_tag();
1622         $tag->notice_id = $this->id;
1623
1624         if ($tag->find()) {
1625             while ($tag->fetch()) {
1626                 self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, common_keyize($tag->tag));
1627                 self::blow('profile:notice_ids_tagged:%d:%s;last', $this->profile_id, common_keyize($tag->tag));
1628                 self::blow('notice_tag:notice_ids:%s', common_keyize($tag->tag));
1629                 self::blow('notice_tag:notice_ids:%s;last', common_keyize($tag->tag));
1630                 $tag->delete();
1631             }
1632         }
1633
1634         $tag->free();
1635     }
1636
1637     function clearGroupInboxes()
1638     {
1639         $gi = new Group_inbox();
1640
1641         $gi->notice_id = $this->id;
1642
1643         if ($gi->find()) {
1644             while ($gi->fetch()) {
1645                 self::blow('user_group:notice_ids:%d', $gi->group_id);
1646                 $gi->delete();
1647             }
1648         }
1649
1650         $gi->free();
1651     }
1652
1653     function distribute()
1654     {
1655         // We always insert for the author so they don't
1656         // have to wait
1657
1658         $user = User::staticGet('id', $this->profile_id);
1659         if (!empty($user)) {
1660             Inbox::insertNotice($user->id, $this->id);
1661         }
1662
1663         if (common_config('queue', 'inboxes')) {
1664             // If there's a failure, we want to _force_
1665             // distribution at this point.
1666             try {
1667                 $qm = QueueManager::get();
1668                 $qm->enqueue($this, 'distrib');
1669             } catch (Exception $e) {
1670                 // If the exception isn't transient, this
1671                 // may throw more exceptions as DQH does
1672                 // its own enqueueing. So, we ignore them!
1673                 try {
1674                     $handler = new DistribQueueHandler();
1675                     $handler->handle($this);
1676                 } catch (Exception $e) {
1677                     common_log(LOG_ERR, "emergency redistribution resulted in " . $e->getMessage());
1678                 }
1679                 // Re-throw so somebody smarter can handle it.
1680                 throw $e;
1681             }
1682         } else {
1683             $handler = new DistribQueueHandler();
1684             $handler->handle($this);
1685         }
1686     }
1687
1688     function insert()
1689     {
1690         $result = parent::insert();
1691
1692         if ($result) {
1693             // Profile::hasRepeated() abuses pkeyGet(), so we
1694             // have to clear manually
1695             if (!empty($this->repeat_of)) {
1696                 $c = self::memcache();
1697                 if (!empty($c)) {
1698                     $ck = self::multicacheKey('Notice',
1699                                               array('profile_id' => $this->profile_id,
1700                                                     'repeat_of' => $this->repeat_of));
1701                     $c->delete($ck);
1702                 }
1703             }
1704         }
1705
1706         return $result;
1707     }
1708 }