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