]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Notice.php
Now correctly identifiying notices with uploaded content.
[quix0rs-gnu-social.git] / classes / Notice.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, 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
20 if (!defined('LACONICA')) { exit(1); }
21
22 /**
23  * Table Definition for notice
24  */
25 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
26
27 /* We keep the first three 20-notice pages, plus one for pagination check,
28  * in the memcached cache. */
29
30 define('NOTICE_CACHE_WINDOW', 61);
31
32 class Notice extends Memcached_DataObject
33 {
34     ###START_AUTOCODE
35     /* the code below is auto generated do not remove the above tag */
36
37     public $__table = 'notice';                          // table name
38     public $id;                              // int(4)  primary_key not_null
39     public $profile_id;                      // int(4)   not_null
40     public $uri;                             // varchar(255)  unique_key
41     public $content;                         // varchar(140)
42     public $rendered;                        // text()
43     public $url;                             // varchar(255)
44     public $created;                         // datetime()   not_null
45     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
46     public $reply_to;                        // int(4)
47     public $is_local;                        // tinyint(1)
48     public $source;                          // varchar(32)
49     public $conversation;                    // int(4)
50
51     /* Static get */
52     function staticGet($k,$v=NULL) {
53         return Memcached_DataObject::staticGet('Notice',$k,$v);
54     }
55
56     /* the code above is auto generated do not remove the tag below */
57     ###END_AUTOCODE
58
59     function getProfile()
60     {
61         return Profile::staticGet('id', $this->profile_id);
62     }
63
64     function delete()
65     {
66         $this->blowCaches(true);
67         $this->blowFavesCache(true);
68         $this->blowSubsCache(true);
69
70         $this->query('BEGIN');
71         //Null any notices that are replies to this notice
72         $this->query(sprintf("UPDATE notice set reply_to = null WHERE reply_to = %d", $this->id));
73         $related = array('Reply',
74                          'Fave',
75                          'Notice_tag',
76                          'Group_inbox',
77                          'Queue_item');
78         if (common_config('inboxes', 'enabled')) {
79             $related[] = 'Notice_inbox';
80         }
81         foreach ($related as $cls) {
82             $inst = new $cls();
83             $inst->notice_id = $this->id;
84             $inst->delete();
85         }
86         $result = parent::delete();
87         $this->query('COMMIT');
88     }
89
90     function saveTags()
91     {
92         /* extract all #hastags */
93         $count = preg_match_all('/(?:^|\s)#([A-Za-z0-9_\-\.]{1,64})/', strtolower($this->content), $match);
94         if (!$count) {
95             return true;
96         }
97
98         /* Add them to the database */
99         foreach(array_unique($match[1]) as $hashtag) {
100             /* elide characters we don't want in the tag */
101             $this->saveTag($hashtag);
102         }
103         return true;
104     }
105
106     function saveTag($hashtag)
107     {
108         $hashtag = common_canonical_tag($hashtag);
109
110         $tag = new Notice_tag();
111         $tag->notice_id = $this->id;
112         $tag->tag = $hashtag;
113         $tag->created = $this->created;
114         $id = $tag->insert();
115
116         if (!$id) {
117             throw new ServerException(sprintf(_('DB error inserting hashtag: %s'),
118                                               $last_error->message));
119             return;
120         }
121     }
122
123     static function saveNew($profile_id, $content, $source=null, $is_local=1, $reply_to=null, $uri=null) {
124
125         $profile = Profile::staticGet($profile_id);
126
127         $final =  common_shorten_links($content);
128
129         if (!$profile) {
130             common_log(LOG_ERR, 'Problem saving notice. Unknown user.');
131             return _('Problem saving notice. Unknown user.');
132         }
133
134         if (common_config('throttle', 'enabled') && !Notice::checkEditThrottle($profile_id)) {
135             common_log(LOG_WARNING, 'Excessive posting by profile #' . $profile_id . '; throttled.');
136             return _('Too many notices too fast; take a breather and post again in a few minutes.');
137         }
138
139         if (common_config('site', 'dupelimit') > 0 && !Notice::checkDupes($profile_id, $final)) {
140             common_log(LOG_WARNING, 'Dupe posting by profile #' . $profile_id . '; throttled.');
141                         return _('Too many duplicate messages too quickly; take a breather and post again in a few minutes.');
142         }
143
144                 $banned = common_config('profile', 'banned');
145
146         if ( in_array($profile_id, $banned) || in_array($profile->nickname, $banned)) {
147             common_log(LOG_WARNING, "Attempted post from banned user: $profile->nickname (user id = $profile_id).");
148             return _('You are banned from posting notices on this site.');
149         }
150
151         $notice = new Notice();
152         $notice->profile_id = $profile_id;
153
154         $blacklist = common_config('public', 'blacklist');
155         $autosource = common_config('public', 'autosource');
156
157         # Blacklisted are non-false, but not 1, either
158
159         if (($blacklist && in_array($profile_id, $blacklist)) ||
160             ($source && $autosource && in_array($source, $autosource))) {
161             $notice->is_local = -1;
162         } else {
163             $notice->is_local = $is_local;
164         }
165
166                 $notice->query('BEGIN');
167
168                 $notice->reply_to = $reply_to;
169                 $notice->created = common_sql_now();
170                 $notice->content = $final;
171                 $notice->rendered = common_render_content($final, $notice);
172                 $notice->source = $source;
173                 $notice->uri = $uri;
174
175         if (!empty($reply_to)) {
176             $reply_notice = Notice::staticGet('id', $reply_to);
177             if (!empty($reply_notice)) {
178                 $notice->reply_to = $reply_to;
179                 $notice->conversation = $reply_notice->conversation;
180             }
181         }
182
183         if (Event::handle('StartNoticeSave', array(&$notice))) {
184
185             $id = $notice->insert();
186
187             if (!$id) {
188                 common_log_db_error($notice, 'INSERT', __FILE__);
189                 return _('Problem saving notice.');
190             }
191
192             # Update the URI after the notice is in the database
193             if (!$uri) {
194                 $orig = clone($notice);
195                 $notice->uri = common_notice_uri($notice);
196
197                 if (!$notice->update($orig)) {
198                     common_log_db_error($notice, 'UPDATE', __FILE__);
199                     return _('Problem saving notice.');
200                 }
201             }
202
203             # XXX: do we need to change this for remote users?
204
205             $notice->saveReplies();
206             $notice->saveTags();
207
208             $notice->addToInboxes();
209             $notice->saveGroups();
210
211             $notice->query('COMMIT');
212
213             Event::handle('EndNoticeSave', array($notice));
214         }
215
216         # Clear the cache for subscribed users, so they'll update at next request
217         # XXX: someone clever could prepend instead of clearing the cache
218
219         $notice->blowCaches();
220
221         return $notice;
222     }
223
224     static function checkDupes($profile_id, $content) {
225         $profile = Profile::staticGet($profile_id);
226         if (!$profile) {
227             return false;
228         }
229         $notice = $profile->getNotices(0, NOTICE_CACHE_WINDOW);
230         if ($notice) {
231             $last = 0;
232             while ($notice->fetch()) {
233                 if (time() - strtotime($notice->created) >= common_config('site', 'dupelimit')) {
234                     return true;
235                 } else if ($notice->content == $content) {
236                     return false;
237                 }
238             }
239         }
240         # If we get here, oldest item in cache window is not
241         # old enough for dupe limit; do direct check against DB
242         $notice = new Notice();
243         $notice->profile_id = $profile_id;
244         $notice->content = $content;
245         if (common_config('db','type') == 'pgsql')
246             $notice->whereAdd('extract(epoch from now() - created) < ' . common_config('site', 'dupelimit'));
247         else
248             $notice->whereAdd('now() - created < ' . common_config('site', 'dupelimit'));
249
250         $cnt = $notice->count();
251         return ($cnt == 0);
252     }
253
254     static function checkEditThrottle($profile_id) {
255         $profile = Profile::staticGet($profile_id);
256         if (!$profile) {
257             return false;
258         }
259         # Get the Nth notice
260         $notice = $profile->getNotices(common_config('throttle', 'count') - 1, 1);
261         if ($notice && $notice->fetch()) {
262             # If the Nth notice was posted less than timespan seconds ago
263             if (time() - strtotime($notice->created) <= common_config('throttle', 'timespan')) {
264                 # Then we throttle
265                 return false;
266             }
267         }
268         # Either not N notices in the stream, OR the Nth was not posted within timespan seconds
269         return true;
270     }
271
272     function getUploadedAttachment() {
273         $post = clone $this;
274         $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"';
275         $post->query($query);
276         $post->fetch();
277         if (empty($post->up) || empty($post->i)) {
278             $ret = false;
279         } else {
280             $ret = array($post->up, $post->i);
281         }
282         $post->free();
283         return $ret;
284     }
285
286     function hasAttachments() {
287         $post = clone $this;
288         $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);
289         $post->query($query);
290         $post->fetch();
291         $n_attachments = intval($post->n_attachments);
292         $post->free();
293         return $n_attachments;
294     }
295
296     function blowCaches($blowLast=false)
297     {
298         $this->blowSubsCache($blowLast);
299         $this->blowNoticeCache($blowLast);
300         $this->blowRepliesCache($blowLast);
301         $this->blowPublicCache($blowLast);
302         $this->blowTagCache($blowLast);
303         $this->blowGroupCache($blowLast);
304     }
305
306     function blowGroupCache($blowLast=false)
307     {
308         $cache = common_memcache();
309         if ($cache) {
310             $group_inbox = new Group_inbox();
311             $group_inbox->notice_id = $this->id;
312             if ($group_inbox->find()) {
313                 while ($group_inbox->fetch()) {
314                     $cache->delete(common_cache_key('user_group:notice_ids:' . $group_inbox->group_id));
315                     if ($blowLast) {
316                         $cache->delete(common_cache_key('user_group:notice_ids:' . $group_inbox->group_id.';last'));
317                     }
318                     $member = new Group_member();
319                     $member->group_id = $group_inbox->group_id;
320                     if ($member->find()) {
321                         while ($member->fetch()) {
322                             $cache->delete(common_cache_key('notice_inbox:by_user:' . $member->profile_id));
323                             if ($blowLast) {
324                                 $cache->delete(common_cache_key('notice_inbox:by_user:' . $member->profile_id . ';last'));
325                             }
326                         }
327                     }
328                 }
329             }
330             $group_inbox->free();
331             unset($group_inbox);
332         }
333     }
334
335     function blowTagCache($blowLast=false)
336     {
337         $cache = common_memcache();
338         if ($cache) {
339             $tag = new Notice_tag();
340             $tag->notice_id = $this->id;
341             if ($tag->find()) {
342                 while ($tag->fetch()) {
343                     $tag->blowCache($blowLast);
344                 }
345             }
346             $tag->free();
347             unset($tag);
348         }
349     }
350
351     function blowSubsCache($blowLast=false)
352     {
353         $cache = common_memcache();
354         if ($cache) {
355             $user = new User();
356
357             $UT = common_config('db','type')=='pgsql'?'"user"':'user';
358             $user->query('SELECT id ' .
359
360                          "FROM $UT JOIN subscription ON $UT.id = subscription.subscriber " .
361                          'WHERE subscription.subscribed = ' . $this->profile_id);
362
363             while ($user->fetch()) {
364                 $cache->delete(common_cache_key('notice_inbox:by_user:'.$user->id));
365                 if ($blowLast) {
366                     $cache->delete(common_cache_key('notice_inbox:by_user:'.$user->id.';last'));
367                 }
368             }
369             $user->free();
370             unset($user);
371         }
372     }
373
374     function blowNoticeCache($blowLast=false)
375     {
376         if ($this->is_local) {
377             $cache = common_memcache();
378             if (!empty($cache)) {
379                 $cache->delete(common_cache_key('profile:notice_ids:'.$this->profile_id));
380                 if ($blowLast) {
381                     $cache->delete(common_cache_key('profile:notice_ids:'.$this->profile_id.';last'));
382                 }
383             }
384         }
385     }
386
387     function blowRepliesCache($blowLast=false)
388     {
389         $cache = common_memcache();
390         if ($cache) {
391             $reply = new Reply();
392             $reply->notice_id = $this->id;
393             if ($reply->find()) {
394                 while ($reply->fetch()) {
395                     $cache->delete(common_cache_key('reply:stream:'.$reply->profile_id));
396                     if ($blowLast) {
397                         $cache->delete(common_cache_key('reply:stream:'.$reply->profile_id.';last'));
398                     }
399                 }
400             }
401             $reply->free();
402             unset($reply);
403         }
404     }
405
406     function blowPublicCache($blowLast=false)
407     {
408         if ($this->is_local == 1) {
409             $cache = common_memcache();
410             if ($cache) {
411                 $cache->delete(common_cache_key('public'));
412                 if ($blowLast) {
413                     $cache->delete(common_cache_key('public').';last');
414                 }
415             }
416         }
417     }
418
419     function blowFavesCache($blowLast=false)
420     {
421         $cache = common_memcache();
422         if ($cache) {
423             $fave = new Fave();
424             $fave->notice_id = $this->id;
425             if ($fave->find()) {
426                 while ($fave->fetch()) {
427                     $cache->delete(common_cache_key('fave:ids_by_user:'.$fave->user_id));
428                     if ($blowLast) {
429                         $cache->delete(common_cache_key('fave:ids_by_user:'.$fave->user_id.';last'));
430                     }
431                 }
432             }
433             $fave->free();
434             unset($fave);
435         }
436     }
437
438     # XXX: too many args; we need to move to named params or even a separate
439     # class for notice streams
440
441     static function getStream($qry, $cachekey, $offset=0, $limit=20, $since_id=0, $max_id=0, $order=null, $since=null) {
442
443         if (common_config('memcached', 'enabled')) {
444
445             # Skip the cache if this is a since, since_id or max_id qry
446             if ($since_id > 0 || $max_id > 0 || $since) {
447                 return Notice::getStreamDirect($qry, $offset, $limit, $since_id, $max_id, $order, $since);
448             } else {
449                 return Notice::getCachedStream($qry, $cachekey, $offset, $limit, $order);
450             }
451         }
452
453         return Notice::getStreamDirect($qry, $offset, $limit, $since_id, $max_id, $order, $since);
454     }
455
456     static function getStreamDirect($qry, $offset, $limit, $since_id, $max_id, $order, $since) {
457
458         $needAnd = false;
459         $needWhere = true;
460
461         if (preg_match('/\bWHERE\b/i', $qry)) {
462             $needWhere = false;
463             $needAnd = true;
464         }
465
466         if ($since_id > 0) {
467
468             if ($needWhere) {
469                 $qry .= ' WHERE ';
470                 $needWhere = false;
471             } else {
472                 $qry .= ' AND ';
473             }
474
475             $qry .= ' notice.id > ' . $since_id;
476         }
477
478         if ($max_id > 0) {
479
480             if ($needWhere) {
481                 $qry .= ' WHERE ';
482                 $needWhere = false;
483             } else {
484                 $qry .= ' AND ';
485             }
486
487             $qry .= ' notice.id <= ' . $max_id;
488         }
489
490         if ($since) {
491
492             if ($needWhere) {
493                 $qry .= ' WHERE ';
494                 $needWhere = false;
495             } else {
496                 $qry .= ' AND ';
497             }
498
499             $qry .= ' notice.created > \'' . date('Y-m-d H:i:s', $since) . '\'';
500         }
501
502         # Allow ORDER override
503
504         if ($order) {
505             $qry .= $order;
506         } else {
507             $qry .= ' ORDER BY notice.created DESC, notice.id DESC ';
508         }
509
510         if (common_config('db','type') == 'pgsql') {
511             $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
512         } else {
513             $qry .= ' LIMIT ' . $offset . ', ' . $limit;
514         }
515
516         $notice = new Notice();
517
518         $notice->query($qry);
519
520         return $notice;
521     }
522
523     # XXX: this is pretty long and should probably be broken up into
524     # some helper functions
525
526     static function getCachedStream($qry, $cachekey, $offset, $limit, $order) {
527
528         # If outside our cache window, just go to the DB
529
530         if ($offset + $limit > NOTICE_CACHE_WINDOW) {
531             return Notice::getStreamDirect($qry, $offset, $limit, null, null, $order, null);
532         }
533
534         # Get the cache; if we can't, just go to the DB
535
536         $cache = common_memcache();
537
538         if (!$cache) {
539             return Notice::getStreamDirect($qry, $offset, $limit, null, null, $order, null);
540         }
541
542         # Get the notices out of the cache
543
544         $notices = $cache->get(common_cache_key($cachekey));
545
546         # On a cache hit, return a DB-object-like wrapper
547
548         if ($notices !== false) {
549             $wrapper = new ArrayWrapper(array_slice($notices, $offset, $limit));
550             return $wrapper;
551         }
552
553         # If the cache was invalidated because of new data being
554         # added, we can try and just get the new stuff. We keep an additional
555         # copy of the data at the key + ';last'
556
557         # No cache hit. Try to get the *last* cached version
558
559         $last_notices = $cache->get(common_cache_key($cachekey) . ';last');
560
561         if ($last_notices) {
562
563             # Reverse-chron order, so last ID is last.
564
565             $last_id = $last_notices[0]->id;
566
567             # XXX: this assumes monotonically increasing IDs; a fair
568             # bet with our DB.
569
570             $new_notice = Notice::getStreamDirect($qry, 0, NOTICE_CACHE_WINDOW,
571                                                   $last_id, null, $order, null);
572
573             if ($new_notice) {
574                 $new_notices = array();
575                 while ($new_notice->fetch()) {
576                     $new_notices[] = clone($new_notice);
577                 }
578                 $new_notice->free();
579                 $notices = array_slice(array_merge($new_notices, $last_notices),
580                                        0, NOTICE_CACHE_WINDOW);
581
582                 # Store the array in the cache for next time
583
584                 $result = $cache->set(common_cache_key($cachekey), $notices);
585                 $result = $cache->set(common_cache_key($cachekey) . ';last', $notices);
586
587                 # return a wrapper of the array for use now
588
589                 return new ArrayWrapper(array_slice($notices, $offset, $limit));
590             }
591         }
592
593         # Otherwise, get the full cache window out of the DB
594
595         $notice = Notice::getStreamDirect($qry, 0, NOTICE_CACHE_WINDOW, null, null, $order, null);
596
597         # If there are no hits, just return the value
598
599         if (!$notice) {
600             return $notice;
601         }
602
603         # Pack results into an array
604
605         $notices = array();
606
607         while ($notice->fetch()) {
608             $notices[] = clone($notice);
609         }
610
611         $notice->free();
612
613         # Store the array in the cache for next time
614
615         $result = $cache->set(common_cache_key($cachekey), $notices);
616         $result = $cache->set(common_cache_key($cachekey) . ';last', $notices);
617
618         # return a wrapper of the array for use now
619
620         $wrapper = new ArrayWrapper(array_slice($notices, $offset, $limit));
621
622         return $wrapper;
623     }
624
625     function getStreamByIds($ids)
626     {
627         $cache = common_memcache();
628
629         if (!empty($cache)) {
630             $notices = array();
631             foreach ($ids as $id) {
632                 $notices[] = Notice::staticGet('id', $id);
633             }
634             return new ArrayWrapper($notices);
635         } else {
636             $notice = new Notice();
637             $notice->whereAdd('id in (' . implode(', ', $ids) . ')');
638             $notice->orderBy('id DESC');
639
640             $notice->find();
641             return $notice;
642         }
643     }
644
645     function publicStream($offset=0, $limit=20, $since_id=0, $max_id=0, $since=null)
646     {
647         $ids = Notice::stream(array('Notice', '_publicStreamDirect'),
648                               array(),
649                               'public',
650                               $offset, $limit, $since_id, $max_id, $since);
651
652         return Notice::getStreamByIds($ids);
653     }
654
655     function _publicStreamDirect($offset=0, $limit=20, $since_id=0, $max_id=0, $since=null)
656     {
657         $notice = new Notice();
658
659         $notice->selectAdd(); // clears it
660         $notice->selectAdd('id');
661
662         $notice->orderBy('id DESC');
663
664         if (!is_null($offset)) {
665             $notice->limit($offset, $limit);
666         }
667
668         if (common_config('public', 'localonly')) {
669             $notice->whereAdd('is_local = 1');
670         } else {
671             # -1 == blacklisted
672             $notice->whereAdd('is_local != -1');
673         }
674
675         if ($since_id != 0) {
676             $notice->whereAdd('id > ' . $since_id);
677         }
678
679         if ($max_id != 0) {
680             $notice->whereAdd('id <= ' . $max_id);
681         }
682
683         if (!is_null($since)) {
684             $notice->whereAdd('created > \'' . date('Y-m-d H:i:s', $since) . '\'');
685         }
686
687         $ids = array();
688
689         if ($notice->find()) {
690             while ($notice->fetch()) {
691                 $ids[] = $notice->id;
692             }
693         }
694
695         $notice->free();
696         $notice = NULL;
697
698         return $ids;
699     }
700
701     function addToInboxes()
702     {
703         $enabled = common_config('inboxes', 'enabled');
704
705         if ($enabled === true || $enabled === 'transitional') {
706             $inbox = new Notice_inbox();
707             $UT = common_config('db','type')=='pgsql'?'"user"':'user';
708             $qry = 'INSERT INTO notice_inbox (user_id, notice_id, created) ' .
709               "SELECT $UT.id, " . $this->id . ", '" . $this->created . "' " .
710               "FROM $UT JOIN subscription ON $UT.id = subscription.subscriber " .
711               'WHERE subscription.subscribed = ' . $this->profile_id . ' ' .
712               'AND NOT EXISTS (SELECT user_id, notice_id ' .
713               'FROM notice_inbox ' .
714               "WHERE user_id = $UT.id " .
715               'AND notice_id = ' . $this->id . ' )';
716             if ($enabled === 'transitional') {
717                 $qry .= " AND $UT.inboxed = 1";
718             }
719             $inbox->query($qry);
720         }
721         return;
722     }
723
724     function saveGroups()
725     {
726         $enabled = common_config('inboxes', 'enabled');
727         if ($enabled !== true && $enabled !== 'transitional') {
728             return;
729         }
730
731         /* extract all !group */
732         $count = preg_match_all('/(?:^|\s)!([A-Za-z0-9]{1,64})/',
733                                 strtolower($this->content),
734                                 $match);
735         if (!$count) {
736             return true;
737         }
738
739         $profile = $this->getProfile();
740
741         /* Add them to the database */
742
743         foreach (array_unique($match[1]) as $nickname) {
744             /* XXX: remote groups. */
745             $group = User_group::staticGet('nickname', $nickname);
746
747             if (!$group) {
748                 continue;
749             }
750
751             // we automatically add a tag for every group name, too
752
753             $tag = Notice_tag::pkeyGet(array('tag' => common_canonical_tag($nickname),
754                                            'notice_id' => $this->id));
755
756             if (is_null($tag)) {
757                 $this->saveTag($nickname);
758             }
759
760             if ($profile->isMember($group)) {
761
762                 $gi = new Group_inbox();
763
764                 $gi->group_id  = $group->id;
765                 $gi->notice_id = $this->id;
766                 $gi->created   = common_sql_now();
767
768                 $result = $gi->insert();
769
770                 if (!$result) {
771                     common_log_db_error($gi, 'INSERT', __FILE__);
772                 }
773
774                 // FIXME: do this in an offline daemon
775
776                 $this->addToGroupInboxes($group);
777             }
778         }
779     }
780
781     function addToGroupInboxes($group)
782     {
783         $inbox = new Notice_inbox();
784         $UT = common_config('db','type')=='pgsql'?'"user"':'user';
785         $qry = 'INSERT INTO notice_inbox (user_id, notice_id, created, source) ' .
786           "SELECT $UT.id, " . $this->id . ", '" . $this->created . "', 2 " .
787           "FROM $UT JOIN group_member ON $UT.id = group_member.profile_id " .
788           'WHERE group_member.group_id = ' . $group->id . ' ' .
789           'AND NOT EXISTS (SELECT user_id, notice_id ' .
790           'FROM notice_inbox ' .
791           "WHERE user_id = $UT.id " .
792           'AND notice_id = ' . $this->id . ' )';
793         if ($enabled === 'transitional') {
794             $qry .= " AND $UT.inboxed = 1";
795         }
796         $result = $inbox->query($qry);
797     }
798
799     function saveReplies()
800     {
801         // Alternative reply format
802         $tname = false;
803         if (preg_match('/^T ([A-Z0-9]{1,64}) /', $this->content, $match)) {
804             $tname = $match[1];
805         }
806         // extract all @messages
807         $cnt = preg_match_all('/(?:^|\s)@([a-z0-9]{1,64})/', $this->content, $match);
808
809         $names = array();
810
811         if ($cnt || $tname) {
812             // XXX: is there another way to make an array copy?
813             $names = ($tname) ? array_unique(array_merge(array(strtolower($tname)), $match[1])) : array_unique($match[1]);
814         }
815
816         $sender = Profile::staticGet($this->profile_id);
817
818         $replied = array();
819
820         // store replied only for first @ (what user/notice what the reply directed,
821         // we assume first @ is it)
822
823         for ($i=0; $i<count($names); $i++) {
824             $nickname = $names[$i];
825             $recipient = common_relative_profile($sender, $nickname, $this->created);
826             if (!$recipient) {
827                 continue;
828             }
829             if ($i == 0 && ($recipient->id != $sender->id) && !$this->reply_to) { // Don't save reply to self
830                 $reply_for = $recipient;
831                 $recipient_notice = $reply_for->getCurrentNotice();
832                 if ($recipient_notice) {
833                     $orig = clone($this);
834                     $this->reply_to = $recipient_notice->id;
835                     $this->conversation = $recipient_notice->conversation;
836                     $this->update($orig);
837                 }
838             }
839             // Don't save replies from blocked profile to local user
840             $recipient_user = User::staticGet('id', $recipient->id);
841             if ($recipient_user && $recipient_user->hasBlocked($sender)) {
842                 continue;
843             }
844             $reply = new Reply();
845             $reply->notice_id = $this->id;
846             $reply->profile_id = $recipient->id;
847             $id = $reply->insert();
848             if (!$id) {
849                 $last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
850                 common_log(LOG_ERR, 'DB error inserting reply: ' . $last_error->message);
851                 common_server_error(sprintf(_('DB error inserting reply: %s'), $last_error->message));
852                 return;
853             } else {
854                 $replied[$recipient->id] = 1;
855             }
856         }
857
858         // Hash format replies, too
859         $cnt = preg_match_all('/(?:^|\s)@#([a-z0-9]{1,64})/', $this->content, $match);
860         if ($cnt) {
861             foreach ($match[1] as $tag) {
862                 $tagged = Profile_tag::getTagged($sender->id, $tag);
863                 foreach ($tagged as $t) {
864                     if (!$replied[$t->id]) {
865                         // Don't save replies from blocked profile to local user
866                         $t_user = User::staticGet('id', $t->id);
867                         if ($t_user && $t_user->hasBlocked($sender)) {
868                             continue;
869                         }
870                         $reply = new Reply();
871                         $reply->notice_id = $this->id;
872                         $reply->profile_id = $t->id;
873                         $id = $reply->insert();
874                         if (!$id) {
875                             common_log_db_error($reply, 'INSERT', __FILE__);
876                             return;
877                         } else {
878                             $replied[$recipient->id] = 1;
879                         }
880                     }
881                 }
882             }
883         }
884
885         // If it's not a reply, make it the root of a new conversation
886
887         if (empty($this->conversation)) {
888             $orig = clone($this);
889             $this->conversation = $this->id;
890             $this->update($orig);
891         }
892
893         foreach (array_keys($replied) as $recipient) {
894             $user = User::staticGet('id', $recipient);
895             if ($user) {
896                 mail_notify_attn($user, $this);
897             }
898         }
899     }
900
901     function asAtomEntry($namespace=false, $source=false)
902     {
903         $profile = $this->getProfile();
904
905         $xs = new XMLStringer(true);
906
907         if ($namespace) {
908             $attrs = array('xmlns' => 'http://www.w3.org/2005/Atom',
909                            'xmlns:thr' => 'http://purl.org/syndication/thread/1.0');
910         } else {
911             $attrs = array();
912         }
913
914         $xs->elementStart('entry', $attrs);
915
916         if ($source) {
917             $xs->elementStart('source');
918             $xs->element('title', null, $profile->nickname . " - " . common_config('site', 'name'));
919             $xs->element('link', array('href' => $profile->profileurl));
920             $user = User::staticGet('id', $profile->id);
921             if (!empty($user)) {
922                 $atom_feed = common_local_url('api',
923                                               array('apiaction' => 'statuses',
924                                                     'method' => 'user_timeline',
925                                                     'argument' => $profile->nickname.'.atom'));
926                 $xs->element('link', array('rel' => 'self',
927                                            'type' => 'application/atom+xml',
928                                            'href' => $profile->profileurl));
929                 $xs->element('link', array('rel' => 'license',
930                                            'href' => common_config('license', 'url')));
931             }
932
933             $xs->element('icon', null, $profile->avatarUrl(AVATAR_PROFILE_SIZE));
934         }
935
936         $xs->elementStart('author');
937         $xs->element('name', null, $profile->nickname);
938         $xs->element('uri', null, $profile->profileurl);
939         $xs->elementEnd('author');
940
941         if ($source) {
942             $xs->elementEnd('source');
943         }
944
945         $xs->element('title', null, $this->content);
946         $xs->element('summary', null, $this->content);
947
948         $xs->element('link', array('rel' => 'alternate',
949                                    'href' => $this->bestUrl()));
950
951         $xs->element('id', null, $this->uri);
952
953         $xs->element('published', null, common_date_w3dtf($this->created));
954         $xs->element('updated', null, common_date_w3dtf($this->modified));
955
956         if ($this->reply_to) {
957             $reply_notice = Notice::staticGet('id', $this->reply_to);
958             if (!empty($reply_notice)) {
959                 $xs->element('link', array('rel' => 'related',
960                                            'href' => $reply_notice->bestUrl()));
961                 $xs->element('thr:in-reply-to',
962                              array('ref' => $reply_notice->uri,
963                                    'href' => $reply_notice->bestUrl()));
964             }
965         }
966
967         $xs->element('content', array('type' => 'html'), $this->rendered);
968
969         $tag = new Notice_tag();
970         $tag->notice_id = $this->id;
971         if ($tag->find()) {
972             while ($tag->fetch()) {
973                 $xs->element('category', array('term' => $tag->tag));
974             }
975         }
976         $tag->free();
977
978         $xs->elementEnd('entry');
979
980         return $xs->getString();
981     }
982
983     function bestUrl()
984     {
985         if (!empty($this->url)) {
986             return $this->url;
987         } else if (!empty($this->uri) && preg_match('/^https?:/', $this->uri)) {
988             return $this->uri;
989         } else {
990             return common_local_url('shownotice',
991                                     array('notice' => $this->id));
992         }
993     }
994
995     function stream($fn, $args, $cachekey, $offset=0, $limit=20, $since_id=0, $max_id=0, $since=null)
996     {
997         $cache = common_memcache();
998
999         if (empty($cache) ||
1000             $since_id != 0 || $max_id != 0 || (!is_null($since) && $since > 0) ||
1001             ($offset + $limit) > NOTICE_CACHE_WINDOW) {
1002             return call_user_func_array($fn, array_merge($args, array($offset, $limit, $since_id,
1003                                                                       $max_id, $since)));
1004         }
1005
1006         $idkey = common_cache_key($cachekey);
1007
1008         $idstr = $cache->get($idkey);
1009
1010         if (!empty($idstr)) {
1011             // Cache hit! Woohoo!
1012             $window = explode(',', $idstr);
1013             $ids = array_slice($window, $offset, $limit);
1014             return $ids;
1015         }
1016
1017         $laststr = $cache->get($idkey.';last');
1018
1019         if (!empty($laststr)) {
1020             $window = explode(',', $laststr);
1021             $last_id = $window[0];
1022             $new_ids = call_user_func_array($fn, array_merge($args, array(0, NOTICE_CACHE_WINDOW,
1023                                                                           $last_id, 0, null, $tag)));
1024
1025             $new_window = array_merge($new_ids, $window);
1026
1027             $new_windowstr = implode(',', $new_window);
1028
1029             $result = $cache->set($idkey, $new_windowstr);
1030             $result = $cache->set($idkey . ';last', $new_windowstr);
1031
1032             $ids = array_slice($new_window, $offset, $limit);
1033
1034             return $ids;
1035         }
1036
1037         $window = call_user_func_array($fn, array_merge($args, array(0, NOTICE_CACHE_WINDOW,
1038                                                                      0, 0, null, $tag)));
1039
1040         $windowstr = implode(',', $window);
1041
1042         $result = $cache->set($idkey, $windowstr);
1043         $result = $cache->set($idkey . ';last', $windowstr);
1044
1045         $ids = array_slice($window, $offset, $limit);
1046
1047         return $ids;
1048     }
1049 }