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