]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Notice.php
Fix group regexes that got missed in Nickname::DISPLAY_FMT update: fixes bug where...
[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  * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
33  * @license  GNU Affero General Public License http://www.gnu.org/licenses/
34  */
35
36 if (!defined('STATUSNET') && !defined('LACONICA')) {
37     exit(1);
38 }
39
40 /**
41  * Table Definition for notice
42  */
43 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
44
45 /* We keep 200 notices, the max number of notices available per API request,
46  * in the memcached cache. */
47
48 define('NOTICE_CACHE_WINDOW', 200);
49
50 define('MAX_BOXCARS', 128);
51
52 class Notice extends Memcached_DataObject
53 {
54     ###START_AUTOCODE
55     /* the code below is auto generated do not remove the above tag */
56
57     public $__table = 'notice';                          // table name
58     public $id;                              // int(4)  primary_key not_null
59     public $profile_id;                      // int(4)  multiple_key not_null
60     public $uri;                             // varchar(255)  unique_key
61     public $content;                         // text
62     public $rendered;                        // text
63     public $url;                             // varchar(255)
64     public $created;                         // datetime  multiple_key not_null default_0000-00-00%2000%3A00%3A00
65     public $modified;                        // timestamp   not_null default_CURRENT_TIMESTAMP
66     public $reply_to;                        // int(4)
67     public $is_local;                        // int(4)
68     public $source;                          // varchar(32)
69     public $conversation;                    // int(4)
70     public $lat;                             // decimal(10,7)
71     public $lon;                             // decimal(10,7)
72     public $location_id;                     // int(4)
73     public $location_ns;                     // int(4)
74     public $repeat_of;                       // int(4)
75
76     /* Static get */
77     function staticGet($k,$v=NULL)
78     {
79         return Memcached_DataObject::staticGet('Notice',$k,$v);
80     }
81
82     /* the code above is auto generated do not remove the tag below */
83     ###END_AUTOCODE
84
85     /* Notice types */
86     const LOCAL_PUBLIC    =  1;
87     const REMOTE_OMB      =  0;
88     const LOCAL_NONPUBLIC = -1;
89     const GATEWAY         = -2;
90
91     function getProfile()
92     {
93         $profile = Profile::staticGet('id', $this->profile_id);
94
95         if (empty($profile)) {
96             // TRANS: Server exception thrown when a user profile for a notice cannot be found.
97             // TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number).
98             throw new ServerException(sprintf(_('No such profile (%1$d) for notice (%2$d).'), $this->profile_id, $this->id));
99         }
100
101         return $profile;
102     }
103
104     function delete()
105     {
106         // For auditing purposes, save a record that the notice
107         // was deleted.
108
109         // @fixme we have some cases where things get re-run and so the
110         // insert fails.
111         $deleted = Deleted_notice::staticGet('id', $this->id);
112
113         if (!$deleted) {
114             $deleted = Deleted_notice::staticGet('uri', $this->uri);
115         }
116
117         if (!$deleted) {
118             $deleted = new Deleted_notice();
119
120             $deleted->id         = $this->id;
121             $deleted->profile_id = $this->profile_id;
122             $deleted->uri        = $this->uri;
123             $deleted->created    = $this->created;
124             $deleted->deleted    = common_sql_now();
125
126             $deleted->insert();
127         }
128
129         if (Event::handle('NoticeDeleteRelated', array($this))) {
130
131             // Clear related records
132
133             $this->clearReplies();
134             $this->clearRepeats();
135             $this->clearFaves();
136             $this->clearTags();
137             $this->clearGroupInboxes();
138             $this->clearFiles();
139
140             // NOTE: we don't clear inboxes
141             // NOTE: we don't clear queue items
142         }
143
144         $result = parent::delete();
145
146         $this->blowOnDelete();
147         return $result;
148     }
149
150     /**
151      * Extract #hashtags from this notice's content and save them to the database.
152      */
153     function saveTags()
154     {
155         /* extract all #hastags */
156         $count = preg_match_all('/(?:^|\s)#([\pL\pN_\-\.]{1,64})/', strtolower($this->content), $match);
157         if (!$count) {
158             return true;
159         }
160
161         /* Add them to the database */
162         return $this->saveKnownTags($match[1]);
163     }
164
165     /**
166      * Record the given set of hash tags in the db for this notice.
167      * Given tag strings will be normalized and checked for dupes.
168      */
169     function saveKnownTags($hashtags)
170     {
171         //turn each into their canonical tag
172         //this is needed to remove dupes before saving e.g. #hash.tag = #hashtag
173         for($i=0; $i<count($hashtags); $i++) {
174             /* elide characters we don't want in the tag */
175             $hashtags[$i] = common_canonical_tag($hashtags[$i]);
176         }
177
178         foreach(array_unique($hashtags) as $hashtag) {
179             $this->saveTag($hashtag);
180             self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, $hashtag);
181         }
182         return true;
183     }
184
185     /**
186      * Record a single hash tag as associated with this notice.
187      * Tag format and uniqueness must be validated by caller.
188      */
189     function saveTag($hashtag)
190     {
191         $tag = new Notice_tag();
192         $tag->notice_id = $this->id;
193         $tag->tag = $hashtag;
194         $tag->created = $this->created;
195         $id = $tag->insert();
196
197         if (!$id) {
198             // TRANS: Server exception. %s are the error details.
199             throw new ServerException(sprintf(_('Database error inserting hashtag: %s'),
200                                               $last_error->message));
201             return;
202         }
203
204         // if it's saved, blow its cache
205         $tag->blowCache(false);
206     }
207
208     /**
209      * Save a new notice and push it out to subscribers' inboxes.
210      * Poster's permissions are checked before sending.
211      *
212      * @param int $profile_id Profile ID of the poster
213      * @param string $content source message text; links may be shortened
214      *                        per current user's preference
215      * @param string $source source key ('web', 'api', etc)
216      * @param array $options Associative array of optional properties:
217      *              string 'created' timestamp of notice; defaults to now
218      *              int 'is_local' source/gateway ID, one of:
219      *                  Notice::LOCAL_PUBLIC    - Local, ok to appear in public timeline
220      *                  Notice::REMOTE_OMB      - Sent from a remote OMB service;
221      *                                            hide from public timeline but show in
222      *                                            local "and friends" timelines
223      *                  Notice::LOCAL_NONPUBLIC - Local, but hide from public timeline
224      *                  Notice::GATEWAY         - From another non-OMB service;
225      *                                            will not appear in public views
226      *              float 'lat' decimal latitude for geolocation
227      *              float 'lon' decimal longitude for geolocation
228      *              int 'location_id' geoname identifier
229      *              int 'location_ns' geoname namespace to interpret location_id
230      *              int 'reply_to'; notice ID this is a reply to
231      *              int 'repeat_of'; notice ID this is a repeat of
232      *              string 'uri' unique ID for notice; defaults to local notice URL
233      *              string 'url' permalink to notice; defaults to local notice URL
234      *              string 'rendered' rendered HTML version of content
235      *              array 'replies' list of profile URIs for reply delivery in
236      *                              place of extracting @-replies from content.
237      *              array 'groups' list of group IDs to deliver to, in place of
238      *                              extracting ! tags from content
239      *              array 'tags' list of hashtag strings to save with the notice
240      *                           in place of extracting # tags from content
241      *              array 'urls' list of attached/referred URLs to save with the
242      *                           notice in place of extracting links from content
243      *              boolean 'distribute' whether to distribute the notice, default true
244      *
245      * @fixme tag override
246      *
247      * @return Notice
248      * @throws ClientException
249      */
250     static function saveNew($profile_id, $content, $source, $options=null) {
251         $defaults = array('uri' => null,
252                           'url' => null,
253                           'reply_to' => null,
254                           'repeat_of' => null,
255                           'distribute' => true);
256
257         if (!empty($options)) {
258             $options = $options + $defaults;
259             extract($options);
260         } else {
261             extract($defaults);
262         }
263
264         if (!isset($is_local)) {
265             $is_local = Notice::LOCAL_PUBLIC;
266         }
267
268         $profile = Profile::staticGet('id', $profile_id);
269         $user = User::staticGet('id', $profile_id);
270         if ($user) {
271             // Use the local user's shortening preferences, if applicable.
272             $final = $user->shortenLinks($content);
273         } else {
274             $final = common_shorten_links($content);
275         }
276
277         if (Notice::contentTooLong($final)) {
278             // TRANS: Client exception thrown if a notice contains too many characters.
279             throw new ClientException(_('Problem saving notice. Too long.'));
280         }
281
282         if (empty($profile)) {
283             // TRANS: Client exception thrown when trying to save a notice for an unknown user.
284             throw new ClientException(_('Problem saving notice. Unknown user.'));
285         }
286
287         if (common_config('throttle', 'enabled') && !Notice::checkEditThrottle($profile_id)) {
288             common_log(LOG_WARNING, 'Excessive posting by profile #' . $profile_id . '; throttled.');
289             // TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
290             throw new ClientException(_('Too many notices too fast; take a breather '.
291                                         'and post again in a few minutes.'));
292         }
293
294         if (common_config('site', 'dupelimit') > 0 && !Notice::checkDupes($profile_id, $final)) {
295             common_log(LOG_WARNING, 'Dupe posting by profile #' . $profile_id . '; throttled.');
296             // TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
297             throw new ClientException(_('Too many duplicate messages too quickly;'.
298                                         ' take a breather and post again in a few minutes.'));
299         }
300
301         if (!$profile->hasRight(Right::NEWNOTICE)) {
302             common_log(LOG_WARNING, "Attempted post from user disallowed to post: " . $profile->nickname);
303
304             // TRANS: Client exception thrown when a user tries to post while being banned.
305             throw new ClientException(_('You are banned from posting notices on this site.'), 403);
306         }
307
308         $notice = new Notice();
309         $notice->profile_id = $profile_id;
310
311         $autosource = common_config('public', 'autosource');
312
313         # Sandboxed are non-false, but not 1, either
314
315         if (!$profile->hasRight(Right::PUBLICNOTICE) ||
316             ($source && $autosource && in_array($source, $autosource))) {
317             $notice->is_local = Notice::LOCAL_NONPUBLIC;
318         } else {
319             $notice->is_local = $is_local;
320         }
321
322         if (!empty($created)) {
323             $notice->created = $created;
324         } else {
325             $notice->created = common_sql_now();
326         }
327
328         $notice->content = $final;
329
330         $notice->source = $source;
331         $notice->uri = $uri;
332         $notice->url = $url;
333
334         // Handle repeat case
335
336         if (isset($repeat_of)) {
337             $notice->repeat_of = $repeat_of;
338         } else {
339             $notice->reply_to = self::getReplyTo($reply_to, $profile_id, $source, $final);
340         }
341
342         if (!empty($notice->reply_to)) {
343             $reply = Notice::staticGet('id', $notice->reply_to);
344             $notice->conversation = $reply->conversation;
345         }
346
347         if (!empty($lat) && !empty($lon)) {
348             $notice->lat = $lat;
349             $notice->lon = $lon;
350         }
351
352         if (!empty($location_ns) && !empty($location_id)) {
353             $notice->location_id = $location_id;
354             $notice->location_ns = $location_ns;
355         }
356
357         if (!empty($rendered)) {
358             $notice->rendered = $rendered;
359         } else {
360             $notice->rendered = common_render_content($final, $notice);
361         }
362
363         if (Event::handle('StartNoticeSave', array(&$notice))) {
364
365             // XXX: some of these functions write to the DB
366
367             $id = $notice->insert();
368
369             if (!$id) {
370                 common_log_db_error($notice, 'INSERT', __FILE__);
371                 // TRANS: Server exception thrown when a notice cannot be saved.
372                 throw new ServerException(_('Problem saving notice.'));
373             }
374
375             // Update ID-dependent columns: URI, conversation
376
377             $orig = clone($notice);
378
379             $changed = false;
380
381             if (empty($uri)) {
382                 $notice->uri = common_notice_uri($notice);
383                 $changed = true;
384             }
385
386             // If it's not part of a conversation, it's
387             // the beginning of a new conversation.
388
389             if (empty($notice->conversation)) {
390                 $conv = Conversation::create();
391                 $notice->conversation = $conv->id;
392                 $changed = true;
393             }
394
395             if ($changed) {
396                 if (!$notice->update($orig)) {
397                     common_log_db_error($notice, 'UPDATE', __FILE__);
398                     // TRANS: Server exception thrown when a notice cannot be updated.
399                     throw new ServerException(_('Problem saving notice.'));
400                 }
401             }
402
403         }
404
405         # Clear the cache for subscribed users, so they'll update at next request
406         # XXX: someone clever could prepend instead of clearing the cache
407
408         $notice->blowOnInsert();
409
410         // Save per-notice metadata...
411
412         if (isset($replies)) {
413             $notice->saveKnownReplies($replies);
414         } else {
415             $notice->saveReplies();
416         }
417
418         if (isset($tags)) {
419             $notice->saveKnownTags($tags);
420         } else {
421             $notice->saveTags();
422         }
423
424         // Note: groups may save tags, so must be run after tags are saved
425         // to avoid errors on duplicates.
426         if (isset($groups)) {
427             $notice->saveKnownGroups($groups);
428         } else {
429             $notice->saveGroups();
430         }
431
432         if (isset($urls)) {
433             $notice->saveKnownUrls($urls);
434         } else {
435             $notice->saveUrls();
436         }
437
438         if ($distribute) {
439             // Prepare inbox delivery, may be queued to background.
440             $notice->distribute();
441         }
442
443         return $notice;
444     }
445
446     function blowOnInsert($conversation = false)
447     {
448         self::blow('profile:notice_ids:%d', $this->profile_id);
449
450         if ($this->isPublic()) {
451             self::blow('public');
452         }
453
454         // XXX: Before we were blowing the casche only if the notice id
455         // was not the root of the conversation.  What to do now?
456
457         self::blow('notice:conversation_ids:%d', $this->conversation);
458
459         if (!empty($this->repeat_of)) {
460             self::blow('notice:repeats:%d', $this->repeat_of);
461         }
462
463         $original = Notice::staticGet('id', $this->repeat_of);
464
465         if (!empty($original)) {
466             $originalUser = User::staticGet('id', $original->profile_id);
467             if (!empty($originalUser)) {
468                 self::blow('user:repeats_of_me:%d', $originalUser->id);
469             }
470         }
471
472         $profile = Profile::staticGet($this->profile_id);
473         if (!empty($profile)) {
474             $profile->blowNoticeCount();
475         }
476     }
477
478     /**
479      * Clear cache entries related to this notice at delete time.
480      * Necessary to avoid breaking paging on public, profile timelines.
481      */
482     function blowOnDelete()
483     {
484         $this->blowOnInsert();
485
486         self::blow('profile:notice_ids:%d;last', $this->profile_id);
487
488         if ($this->isPublic()) {
489             self::blow('public;last');
490         }
491     }
492
493     /** save all urls in the notice to the db
494      *
495      * follow redirects and save all available file information
496      * (mimetype, date, size, oembed, etc.)
497      *
498      * @return void
499      */
500     function saveUrls() {
501         if (common_config('attachments', 'process_links')) {
502             common_replace_urls_callback($this->content, array($this, 'saveUrl'), $this->id);
503         }
504     }
505
506     /**
507      * Save the given URLs as related links/attachments to the db
508      *
509      * follow redirects and save all available file information
510      * (mimetype, date, size, oembed, etc.)
511      *
512      * @return void
513      */
514     function saveKnownUrls($urls)
515     {
516         if (common_config('attachments', 'process_links')) {
517             // @fixme validation?
518             foreach (array_unique($urls) as $url) {
519                 File::processNew($url, $this->id);
520             }
521         }
522     }
523
524     /**
525      * @private callback
526      */
527     function saveUrl($url, $notice_id) {
528         File::processNew($url, $notice_id);
529     }
530
531     static function checkDupes($profile_id, $content) {
532         $profile = Profile::staticGet($profile_id);
533         if (empty($profile)) {
534             return false;
535         }
536         $notice = $profile->getNotices(0, NOTICE_CACHE_WINDOW);
537         if (!empty($notice)) {
538             $last = 0;
539             while ($notice->fetch()) {
540                 if (time() - strtotime($notice->created) >= common_config('site', 'dupelimit')) {
541                     return true;
542                 } else if ($notice->content == $content) {
543                     return false;
544                 }
545             }
546         }
547         # If we get here, oldest item in cache window is not
548         # old enough for dupe limit; do direct check against DB
549         $notice = new Notice();
550         $notice->profile_id = $profile_id;
551         $notice->content = $content;
552         $threshold = common_sql_date(time() - common_config('site', 'dupelimit'));
553         $notice->whereAdd(sprintf("created > '%s'", $notice->escape($threshold)));
554
555         $cnt = $notice->count();
556         return ($cnt == 0);
557     }
558
559     static function checkEditThrottle($profile_id) {
560         $profile = Profile::staticGet($profile_id);
561         if (empty($profile)) {
562             return false;
563         }
564         # Get the Nth notice
565         $notice = $profile->getNotices(common_config('throttle', 'count') - 1, 1);
566         if ($notice && $notice->fetch()) {
567             # If the Nth notice was posted less than timespan seconds ago
568             if (time() - strtotime($notice->created) <= common_config('throttle', 'timespan')) {
569                 # Then we throttle
570                 return false;
571             }
572         }
573         # Either not N notices in the stream, OR the Nth was not posted within timespan seconds
574         return true;
575     }
576
577     function getUploadedAttachment() {
578         $post = clone $this;
579         $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"';
580         $post->query($query);
581         $post->fetch();
582         if (empty($post->up) || empty($post->i)) {
583             $ret = false;
584         } else {
585             $ret = array($post->up, $post->i);
586         }
587         $post->free();
588         return $ret;
589     }
590
591     function hasAttachments() {
592         $post = clone $this;
593         $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);
594         $post->query($query);
595         $post->fetch();
596         $n_attachments = intval($post->n_attachments);
597         $post->free();
598         return $n_attachments;
599     }
600
601     function attachments() {
602         // XXX: cache this
603         $att = array();
604         $f2p = new File_to_post;
605         $f2p->post_id = $this->id;
606         if ($f2p->find()) {
607             while ($f2p->fetch()) {
608                 $f = File::staticGet($f2p->file_id);
609                 if ($f) {
610                     $att[] = clone($f);
611                 }
612             }
613         }
614         return $att;
615     }
616
617     function getStreamByIds($ids)
618     {
619         $cache = common_memcache();
620
621         if (!empty($cache)) {
622             $notices = array();
623             foreach ($ids as $id) {
624                 $n = Notice::staticGet('id', $id);
625                 if (!empty($n)) {
626                     $notices[] = $n;
627                 }
628             }
629             return new ArrayWrapper($notices);
630         } else {
631             $notice = new Notice();
632             if (empty($ids)) {
633                 //if no IDs requested, just return the notice object
634                 return $notice;
635             }
636             $notice->whereAdd('id in (' . implode(', ', $ids) . ')');
637
638             $notice->find();
639
640             $temp = array();
641
642             while ($notice->fetch()) {
643                 $temp[$notice->id] = clone($notice);
644             }
645
646             $wrapped = array();
647
648             foreach ($ids as $id) {
649                 if (array_key_exists($id, $temp)) {
650                     $wrapped[] = $temp[$id];
651                 }
652             }
653
654             return new ArrayWrapper($wrapped);
655         }
656     }
657
658     function publicStream($offset=0, $limit=20, $since_id=0, $max_id=0)
659     {
660         $ids = Notice::stream(array('Notice', '_publicStreamDirect'),
661                               array(),
662                               'public',
663                               $offset, $limit, $since_id, $max_id);
664         return Notice::getStreamByIds($ids);
665     }
666
667     function _publicStreamDirect($offset=0, $limit=20, $since_id=0, $max_id=0)
668     {
669         $notice = new Notice();
670
671         $notice->selectAdd(); // clears it
672         $notice->selectAdd('id');
673
674         $notice->orderBy('created DESC, id DESC');
675
676         if (!is_null($offset)) {
677             $notice->limit($offset, $limit);
678         }
679
680         if (common_config('public', 'localonly')) {
681             $notice->whereAdd('is_local = ' . Notice::LOCAL_PUBLIC);
682         } else {
683             # -1 == blacklisted, -2 == gateway (i.e. Twitter)
684             $notice->whereAdd('is_local !='. Notice::LOCAL_NONPUBLIC);
685             $notice->whereAdd('is_local !='. Notice::GATEWAY);
686         }
687
688         Notice::addWhereSinceId($notice, $since_id);
689         Notice::addWhereMaxId($notice, $max_id);
690
691         $ids = array();
692
693         if ($notice->find()) {
694             while ($notice->fetch()) {
695                 $ids[] = $notice->id;
696             }
697         }
698
699         $notice->free();
700         $notice = NULL;
701
702         return $ids;
703     }
704
705     function conversationStream($id, $offset=0, $limit=20, $since_id=0, $max_id=0)
706     {
707         $ids = Notice::stream(array('Notice', '_conversationStreamDirect'),
708                               array($id),
709                               'notice:conversation_ids:'.$id,
710                               $offset, $limit, $since_id, $max_id);
711
712         return Notice::getStreamByIds($ids);
713     }
714
715     function _conversationStreamDirect($id, $offset=0, $limit=20, $since_id=0, $max_id=0)
716     {
717         $notice = new Notice();
718
719         $notice->selectAdd(); // clears it
720         $notice->selectAdd('id');
721
722         $notice->conversation = $id;
723
724         $notice->orderBy('created DESC, id DESC');
725
726         if (!is_null($offset)) {
727             $notice->limit($offset, $limit);
728         }
729
730         Notice::addWhereSinceId($notice, $since_id);
731         Notice::addWhereMaxId($notice, $max_id);
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     /**
748      * Is this notice part of an active conversation?
749      *
750      * @return boolean true if other messages exist in the same
751      *                 conversation, false if this is the only one
752      */
753     function hasConversation()
754     {
755         if (!empty($this->conversation)) {
756             $conversation = Notice::conversationStream(
757                 $this->conversation,
758                 1,
759                 1
760             );
761
762             if ($conversation->N > 0) {
763                 return true;
764             }
765         }
766         return false;
767     }
768
769     /**
770      * Pull up a full list of local recipients who will be getting
771      * this notice in their inbox. Results will be cached, so don't
772      * change the input data wily-nilly!
773      *
774      * @param array $groups optional list of Group objects;
775      *              if left empty, will be loaded from group_inbox records
776      * @param array $recipient optional list of reply profile ids
777      *              if left empty, will be loaded from reply records
778      * @return array associating recipient user IDs with an inbox source constant
779      */
780     function whoGets($groups=null, $recipients=null)
781     {
782         $c = self::memcache();
783
784         if (!empty($c)) {
785             $ni = $c->get(common_cache_key('notice:who_gets:'.$this->id));
786             if ($ni !== false) {
787                 return $ni;
788             }
789         }
790
791         if (is_null($groups)) {
792             $groups = $this->getGroups();
793         }
794
795         if (is_null($recipients)) {
796             $recipients = $this->getReplies();
797         }
798
799         $users = $this->getSubscribedUsers();
800
801         // FIXME: kind of ignoring 'transitional'...
802         // we'll probably stop supporting inboxless mode
803         // in 0.9.x
804
805         $ni = array();
806
807         foreach ($users as $id) {
808             $ni[$id] = NOTICE_INBOX_SOURCE_SUB;
809         }
810
811         foreach ($groups as $group) {
812             $users = $group->getUserMembers();
813             foreach ($users as $id) {
814                 if (!array_key_exists($id, $ni)) {
815                     $ni[$id] = NOTICE_INBOX_SOURCE_GROUP;
816                 }
817             }
818         }
819
820         foreach ($recipients as $recipient) {
821             if (!array_key_exists($recipient, $ni)) {
822                 $ni[$recipient] = NOTICE_INBOX_SOURCE_REPLY;
823             }
824         }
825
826         // Exclude any deleted, non-local, or blocking recipients.
827         $profile = $this->getProfile();
828         $originalProfile = null;
829         if ($this->repeat_of) {
830             // Check blocks against the original notice's poster as well.
831             $original = Notice::staticGet('id', $this->repeat_of);
832             if ($original) {
833                 $originalProfile = $original->getProfile();
834             }
835         }
836         foreach ($ni as $id => $source) {
837             $user = User::staticGet('id', $id);
838             if (empty($user) || $user->hasBlocked($profile) ||
839                 ($originalProfile && $user->hasBlocked($originalProfile))) {
840                 unset($ni[$id]);
841             }
842         }
843
844         if (!empty($c)) {
845             // XXX: pack this data better
846             $c->set(common_cache_key('notice:who_gets:'.$this->id), $ni);
847         }
848
849         return $ni;
850     }
851
852     /**
853      * Adds this notice to the inboxes of each local user who should receive
854      * it, based on author subscriptions, group memberships, and @-replies.
855      *
856      * Warning: running a second time currently will make items appear
857      * multiple times in users' inboxes.
858      *
859      * @fixme make more robust against errors
860      * @fixme break up massive deliveries to smaller background tasks
861      *
862      * @param array $groups optional list of Group objects;
863      *              if left empty, will be loaded from group_inbox records
864      * @param array $recipient optional list of reply profile ids
865      *              if left empty, will be loaded from reply records
866      */
867     function addToInboxes($groups=null, $recipients=null)
868     {
869         $ni = $this->whoGets($groups, $recipients);
870
871         $ids = array_keys($ni);
872
873         // We remove the author (if they're a local user),
874         // since we'll have already done this in distribute()
875
876         $i = array_search($this->profile_id, $ids);
877
878         if ($i !== false) {
879             unset($ids[$i]);
880         }
881
882         // Bulk insert
883
884         Inbox::bulkInsert($this->id, $ids);
885
886         return;
887     }
888
889     function getSubscribedUsers()
890     {
891         $user = new User();
892
893         if(common_config('db','quote_identifiers'))
894           $user_table = '"user"';
895         else $user_table = 'user';
896
897         $qry =
898           'SELECT id ' .
899           'FROM '. $user_table .' JOIN subscription '.
900           'ON '. $user_table .'.id = subscription.subscriber ' .
901           'WHERE subscription.subscribed = %d ';
902
903         $user->query(sprintf($qry, $this->profile_id));
904
905         $ids = array();
906
907         while ($user->fetch()) {
908             $ids[] = $user->id;
909         }
910
911         $user->free();
912
913         return $ids;
914     }
915
916     /**
917      * Record this notice to the given group inboxes for delivery.
918      * Overrides the regular parsing of !group markup.
919      *
920      * @param string $group_ids
921      * @fixme might prefer URIs as identifiers, as for replies?
922      *        best with generalizations on user_group to support
923      *        remote groups better.
924      */
925     function saveKnownGroups($group_ids)
926     {
927         if (!is_array($group_ids)) {
928             // TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
929             throw new ServerException(_('Bad type provided to saveKnownGroups.'));
930         }
931
932         $groups = array();
933         foreach (array_unique($group_ids) as $id) {
934             $group = User_group::staticGet('id', $id);
935             if ($group) {
936                 common_log(LOG_ERR, "Local delivery to group id $id, $group->nickname");
937                 $result = $this->addToGroupInbox($group);
938                 if (!$result) {
939                     common_log_db_error($gi, 'INSERT', __FILE__);
940                 }
941
942                 // @fixme should we save the tags here or not?
943                 $groups[] = clone($group);
944             } else {
945                 common_log(LOG_ERR, "Local delivery to group id $id skipped, doesn't exist");
946             }
947         }
948
949         return $groups;
950     }
951
952     /**
953      * Parse !group delivery and record targets into group_inbox.
954      * @return array of Group objects
955      */
956     function saveGroups()
957     {
958         // Don't save groups for repeats
959
960         if (!empty($this->repeat_of)) {
961             return array();
962         }
963
964         $groups = array();
965
966         /* extract all !group */
967         $count = preg_match_all('/(?:^|\s)!(' . Nickname::DISPLAY_FMT . ')/',
968                                 strtolower($this->content),
969                                 $match);
970         if (!$count) {
971             return $groups;
972         }
973
974         $profile = $this->getProfile();
975
976         /* Add them to the database */
977
978         foreach (array_unique($match[1]) as $nickname) {
979             /* XXX: remote groups. */
980             $group = User_group::getForNickname($nickname, $profile);
981
982             if (empty($group)) {
983                 continue;
984             }
985
986             // we automatically add a tag for every group name, too
987
988             $tag = Notice_tag::pkeyGet(array('tag' => common_canonical_tag($nickname),
989                                              'notice_id' => $this->id));
990
991             if (is_null($tag)) {
992                 $this->saveTag($nickname);
993             }
994
995             if ($profile->isMember($group)) {
996
997                 $result = $this->addToGroupInbox($group);
998
999                 if (!$result) {
1000                     common_log_db_error($gi, 'INSERT', __FILE__);
1001                 }
1002
1003                 $groups[] = clone($group);
1004             }
1005         }
1006
1007         return $groups;
1008     }
1009
1010     function addToGroupInbox($group)
1011     {
1012         $gi = Group_inbox::pkeyGet(array('group_id' => $group->id,
1013                                          'notice_id' => $this->id));
1014
1015         if (empty($gi)) {
1016
1017             $gi = new Group_inbox();
1018
1019             $gi->group_id  = $group->id;
1020             $gi->notice_id = $this->id;
1021             $gi->created   = $this->created;
1022
1023             $result = $gi->insert();
1024
1025             if (!$result) {
1026                 common_log_db_error($gi, 'INSERT', __FILE__);
1027                 // TRANS: Server exception thrown when an update for a group inbox fails.
1028                 throw new ServerException(_('Problem saving group inbox.'));
1029             }
1030
1031             self::blow('user_group:notice_ids:%d', $gi->group_id);
1032         }
1033
1034         return true;
1035     }
1036
1037     /**
1038      * Save reply records indicating that this notice needs to be
1039      * delivered to the local users with the given URIs.
1040      *
1041      * Since this is expected to be used when saving foreign-sourced
1042      * messages, we won't deliver to any remote targets as that's the
1043      * source service's responsibility.
1044      *
1045      * Mail notifications etc will be handled later.
1046      *
1047      * @param array of unique identifier URIs for recipients
1048      */
1049     function saveKnownReplies($uris)
1050     {
1051         if (empty($uris)) {
1052             return;
1053         }
1054
1055         $sender = Profile::staticGet($this->profile_id);
1056
1057         foreach (array_unique($uris) as $uri) {
1058
1059             $profile = Profile::fromURI($uri);
1060
1061             if (empty($profile)) {
1062                 common_log(LOG_WARNING, "Unable to determine profile for URI '$uri'");
1063                 continue;
1064             }
1065
1066             if ($profile->hasBlocked($sender)) {
1067                 common_log(LOG_INFO, "Not saving reply to profile {$profile->id} ($uri) from sender {$sender->id} because of a block.");
1068                 continue;
1069             }
1070
1071             $reply = new Reply();
1072
1073             $reply->notice_id  = $this->id;
1074             $reply->profile_id = $profile->id;
1075
1076             common_log(LOG_INFO, __METHOD__ . ": saving reply: notice $this->id to profile $profile->id");
1077
1078             $id = $reply->insert();
1079         }
1080
1081         return;
1082     }
1083
1084     /**
1085      * Pull @-replies from this message's content in StatusNet markup format
1086      * and save reply records indicating that this message needs to be
1087      * delivered to those users.
1088      *
1089      * Mail notifications to local profiles will be sent later.
1090      *
1091      * @return array of integer profile IDs
1092      */
1093
1094     function saveReplies()
1095     {
1096         // Don't save reply data for repeats
1097
1098         if (!empty($this->repeat_of)) {
1099             return array();
1100         }
1101
1102         $sender = Profile::staticGet($this->profile_id);
1103
1104         // @todo ideally this parser information would only
1105         // be calculated once.
1106
1107         $mentions = common_find_mentions($this->content, $this);
1108
1109         $replied = array();
1110
1111         // store replied only for first @ (what user/notice what the reply directed,
1112         // we assume first @ is it)
1113
1114         foreach ($mentions as $mention) {
1115
1116             foreach ($mention['mentioned'] as $mentioned) {
1117
1118                 // skip if they're already covered
1119
1120                 if (!empty($replied[$mentioned->id])) {
1121                     continue;
1122                 }
1123
1124                 // Don't save replies from blocked profile to local user
1125
1126                 $mentioned_user = User::staticGet('id', $mentioned->id);
1127                 if (!empty($mentioned_user) && $mentioned_user->hasBlocked($sender)) {
1128                     continue;
1129                 }
1130
1131                 $reply = new Reply();
1132
1133                 $reply->notice_id  = $this->id;
1134                 $reply->profile_id = $mentioned->id;
1135
1136                 $id = $reply->insert();
1137
1138                 if (!$id) {
1139                     common_log_db_error($reply, 'INSERT', __FILE__);
1140                     // TRANS: Server exception thrown when a reply cannot be saved.
1141                     // TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
1142                     throw new ServerException(sprintf(_('Could not save reply for %1$d, %2$d.'), $this->id, $mentioned->id));
1143                 } else {
1144                     $replied[$mentioned->id] = 1;
1145                     self::blow('reply:stream:%d', $mentioned->id);
1146                 }
1147             }
1148         }
1149
1150         $recipientIds = array_keys($replied);
1151
1152         return $recipientIds;
1153     }
1154
1155     /**
1156      * Pull the complete list of @-reply targets for this notice.
1157      *
1158      * @return array of integer profile ids
1159      */
1160     function getReplies()
1161     {
1162         // XXX: cache me
1163
1164         $ids = array();
1165
1166         $reply = new Reply();
1167         $reply->selectAdd();
1168         $reply->selectAdd('profile_id');
1169         $reply->notice_id = $this->id;
1170
1171         if ($reply->find()) {
1172             while($reply->fetch()) {
1173                 $ids[] = $reply->profile_id;
1174             }
1175         }
1176
1177         $reply->free();
1178
1179         return $ids;
1180     }
1181
1182     /**
1183      * Send e-mail notifications to local @-reply targets.
1184      *
1185      * Replies must already have been saved; this is expected to be run
1186      * from the distrib queue handler.
1187      */
1188     function sendReplyNotifications()
1189     {
1190         // Don't send reply notifications for repeats
1191
1192         if (!empty($this->repeat_of)) {
1193             return array();
1194         }
1195
1196         $recipientIds = $this->getReplies();
1197
1198         foreach ($recipientIds as $recipientId) {
1199             $user = User::staticGet('id', $recipientId);
1200             if (!empty($user)) {
1201                 mail_notify_attn($user, $this);
1202             }
1203         }
1204     }
1205
1206     /**
1207      * Pull list of groups this notice needs to be delivered to,
1208      * as previously recorded by saveGroups() or saveKnownGroups().
1209      *
1210      * @return array of Group objects
1211      */
1212     function getGroups()
1213     {
1214         // Don't save groups for repeats
1215
1216         if (!empty($this->repeat_of)) {
1217             return array();
1218         }
1219
1220         // XXX: cache me
1221
1222         $groups = array();
1223
1224         $gi = new Group_inbox();
1225
1226         $gi->selectAdd();
1227         $gi->selectAdd('group_id');
1228
1229         $gi->notice_id = $this->id;
1230
1231         if ($gi->find()) {
1232             while ($gi->fetch()) {
1233                 $group = User_group::staticGet('id', $gi->group_id);
1234                 if ($group) {
1235                     $groups[] = $group;
1236                 }
1237             }
1238         }
1239
1240         $gi->free();
1241
1242         return $groups;
1243     }
1244
1245     /**
1246      * Convert a notice into an activity for export.
1247      *
1248      * @param User $cur Current user
1249      *
1250      * @return Activity activity object representing this Notice.
1251      */
1252
1253     function asActivity()
1254     {
1255         $act = self::cacheGet(Cache::codeKey('notice:as-activity:'.$this->id));
1256
1257         if (!empty($act)) {
1258             return $act;
1259         }
1260
1261         $act = new Activity();
1262
1263         if (Event::handle('StartNoticeAsActivity', array($this, &$act))) {
1264
1265             $profile = $this->getProfile();
1266
1267             $act->actor     = ActivityObject::fromProfile($profile);
1268             $act->verb      = ActivityVerb::POST;
1269             $act->objects[] = ActivityObject::fromNotice($this);
1270
1271             // XXX: should this be handled by default processing for object entry?
1272
1273             $act->time    = strtotime($this->created);
1274             $act->link    = $this->bestUrl();
1275
1276             $act->content = common_xml_safe_str($this->rendered);
1277             $act->id      = $this->uri;
1278             $act->title   = common_xml_safe_str($this->content);
1279
1280             // Categories
1281
1282             $tags = $this->getTags();
1283
1284             foreach ($tags as $tag) {
1285                 $cat       = new AtomCategory();
1286                 $cat->term = $tag;
1287
1288                 $act->categories[] = $cat;
1289             }
1290
1291             // Enclosures
1292             // XXX: use Atom Media and/or File activity objects instead
1293
1294             $attachments = $this->attachments();
1295
1296             foreach ($attachments as $attachment) {
1297                 $enclosure = $attachment->getEnclosure();
1298                 if ($enclosure) {
1299                     $act->enclosures[] = $enclosure;
1300                 }
1301             }
1302
1303             $ctx = new ActivityContext();
1304
1305             if (!empty($this->reply_to)) {
1306                 $reply = Notice::staticGet('id', $this->reply_to);
1307                 if (!empty($reply)) {
1308                     $ctx->replyToID  = $reply->uri;
1309                     $ctx->replyToUrl = $reply->bestUrl();
1310                 }
1311             }
1312
1313             $ctx->location = $this->getLocation();
1314
1315             $conv = null;
1316
1317             if (!empty($this->conversation)) {
1318                 $conv = Conversation::staticGet('id', $this->conversation);
1319                 if (!empty($conv)) {
1320                     $ctx->conversation = $conv->uri;
1321                 }
1322             }
1323
1324             $reply_ids = $this->getReplies();
1325
1326             foreach ($reply_ids as $id) {
1327                 $profile = Profile::staticGet('id', $id);
1328                 if (!empty($profile)) {
1329                     $ctx->attention[] = $profile->getUri();
1330                 }
1331             }
1332
1333             $groups = $this->getGroups();
1334
1335             foreach ($groups as $group) {
1336                 $ctx->attention[] = $group->uri;
1337             }
1338
1339             // XXX: deprecated; use ActivityVerb::SHARE instead
1340
1341             $repeat = null;
1342
1343             if (!empty($this->repeat_of)) {
1344                 $repeat = Notice::staticGet('id', $this->repeat_of);
1345                 $ctx->forwardID  = $repeat->uri;
1346                 $ctx->forwardUrl = $repeat->bestUrl();
1347             }
1348
1349             $act->context = $ctx;
1350
1351             // Source
1352
1353             $atom_feed = $profile->getAtomFeed();
1354
1355             if (!empty($atom_feed)) {
1356
1357                 $act->source = new ActivitySource();
1358
1359                 // XXX: we should store the actual feed ID
1360
1361                 $act->source->id = $atom_feed;
1362
1363                 // XXX: we should store the actual feed title
1364
1365                 $act->source->title = $profile->getBestName();
1366
1367                 $act->source->links['alternate'] = $profile->profileurl;
1368                 $act->source->links['self']      = $atom_feed;
1369
1370                 $act->source->icon = $profile->avatarUrl(AVATAR_PROFILE_SIZE);
1371
1372                 $notice = $profile->getCurrentNotice();
1373
1374                 if (!empty($notice)) {
1375                     $act->source->updated = self::utcDate($notice->created);
1376                 }
1377
1378                 $user = User::staticGet('id', $profile->id);
1379
1380                 if (!empty($user)) {
1381                     $act->source->links['license'] = common_config('license', 'url');
1382                 }
1383             }
1384
1385             if ($this->isLocal()) {
1386                 $act->selfLink = common_local_url('ApiStatusesShow', array('id' => $this->id,
1387                                                                            'format' => 'atom'));
1388                 $act->editLink = $act->selfLink;
1389             }
1390
1391             Event::handle('EndNoticeAsActivity', array($this, &$act));
1392         }
1393
1394         self::cacheSet(Cache::codeKey('notice:as-activity:'.$this->id), $act);
1395
1396         return $act;
1397     }
1398
1399     // This has gotten way too long. Needs to be sliced up into functional bits
1400     // or ideally exported to a utility class.
1401
1402     function asAtomEntry($namespace=false,
1403                          $source=false,
1404                          $author=true,
1405                          $cur=null)
1406     {
1407         $act = $this->asActivity();
1408         $act->extra[] = $this->noticeInfo($cur);
1409         return $act->asString($namespace, $author, $source);
1410     }
1411
1412     /**
1413      * Extra notice info for atom entries
1414      *
1415      * Clients use some extra notice info in the atom stream.
1416      * This gives it to them.
1417      *
1418      * @param User $cur Current user
1419      *
1420      * @return array representation of <statusnet:notice_info> element
1421      */
1422
1423     function noticeInfo($cur)
1424     {
1425         // local notice ID (useful to clients for ordering)
1426
1427         $noticeInfoAttr = array('local_id' => $this->id);
1428
1429         // notice source
1430
1431         $ns = $this->getSource();
1432
1433         if (!empty($ns)) {
1434             $noticeInfoAttr['source'] =  $ns->code;
1435             if (!empty($ns->url)) {
1436                 $noticeInfoAttr['source_link'] = $ns->url;
1437                 if (!empty($ns->name)) {
1438                     $noticeInfoAttr['source'] =  '<a href="'
1439                         . htmlspecialchars($ns->url)
1440                         . '" rel="nofollow">'
1441                         . htmlspecialchars($ns->name)
1442                         . '</a>';
1443                 }
1444             }
1445         }
1446
1447         // favorite and repeated
1448
1449         if (!empty($cur)) {
1450             $noticeInfoAttr['favorite'] = ($cur->hasFave($this)) ? "true" : "false";
1451             $cp = $cur->getProfile();
1452             $noticeInfoAttr['repeated'] = ($cp->hasRepeated($this->id)) ? "true" : "false";
1453         }
1454
1455         if (!empty($this->repeat_of)) {
1456             $noticeInfoAttr['repeat_of'] = $this->repeat_of;
1457         }
1458
1459         return array('statusnet:notice_info', $noticeInfoAttr, null);
1460     }
1461
1462     /**
1463      * Returns an XML string fragment with a reference to a notice as an
1464      * Activity Streams noun object with the given element type.
1465      *
1466      * Assumes that 'activity' namespace has been previously defined.
1467      *
1468      * @param string $element one of 'subject', 'object', 'target'
1469      * @return string
1470      */
1471
1472     function asActivityNoun($element)
1473     {
1474         $noun = ActivityObject::fromNotice($this);
1475         return $noun->asString('activity:' . $element);
1476     }
1477
1478     function bestUrl()
1479     {
1480         if (!empty($this->url)) {
1481             return $this->url;
1482         } else if (!empty($this->uri) && preg_match('/^https?:/', $this->uri)) {
1483             return $this->uri;
1484         } else {
1485             return common_local_url('shownotice',
1486                                     array('notice' => $this->id));
1487         }
1488     }
1489
1490     function stream($fn, $args, $cachekey, $offset=0, $limit=20, $since_id=0, $max_id=0)
1491     {
1492         $cache = common_memcache();
1493
1494         if (empty($cache) ||
1495             $since_id != 0 || $max_id != 0 ||
1496             is_null($limit) ||
1497             ($offset + $limit) > NOTICE_CACHE_WINDOW) {
1498             return call_user_func_array($fn, array_merge($args, array($offset, $limit, $since_id,
1499                                                                       $max_id)));
1500         }
1501
1502         $idkey = common_cache_key($cachekey);
1503
1504         $idstr = $cache->get($idkey);
1505
1506         if ($idstr !== false) {
1507             // Cache hit! Woohoo!
1508             $window = explode(',', $idstr);
1509             $ids = array_slice($window, $offset, $limit);
1510             return $ids;
1511         }
1512
1513         $laststr = $cache->get($idkey.';last');
1514
1515         if ($laststr !== false) {
1516             $window = explode(',', $laststr);
1517             $last_id = $window[0];
1518             $new_ids = call_user_func_array($fn, array_merge($args, array(0, NOTICE_CACHE_WINDOW,
1519                                                                           $last_id, 0, null)));
1520
1521             $new_window = array_merge($new_ids, $window);
1522
1523             $new_windowstr = implode(',', $new_window);
1524
1525             $result = $cache->set($idkey, $new_windowstr);
1526             $result = $cache->set($idkey . ';last', $new_windowstr);
1527
1528             $ids = array_slice($new_window, $offset, $limit);
1529
1530             return $ids;
1531         }
1532
1533         $window = call_user_func_array($fn, array_merge($args, array(0, NOTICE_CACHE_WINDOW,
1534                                                                      0, 0, null)));
1535
1536         $windowstr = implode(',', $window);
1537
1538         $result = $cache->set($idkey, $windowstr);
1539         $result = $cache->set($idkey . ';last', $windowstr);
1540
1541         $ids = array_slice($window, $offset, $limit);
1542
1543         return $ids;
1544     }
1545
1546     /**
1547      * Determine which notice, if any, a new notice is in reply to.
1548      *
1549      * For conversation tracking, we try to see where this notice fits
1550      * in the tree. Rough algorithm is:
1551      *
1552      * if (reply_to is set and valid) {
1553      *     return reply_to;
1554      * } else if ((source not API or Web) and (content starts with "T NAME" or "@name ")) {
1555      *     return ID of last notice by initial @name in content;
1556      * }
1557      *
1558      * Note that all @nickname instances will still be used to save "reply" records,
1559      * so the notice shows up in the mentioned users' "replies" tab.
1560      *
1561      * @param integer $reply_to   ID passed in by Web or API
1562      * @param integer $profile_id ID of author
1563      * @param string  $source     Source tag, like 'web' or 'gwibber'
1564      * @param string  $content    Final notice content
1565      *
1566      * @return integer ID of replied-to notice, or null for not a reply.
1567      */
1568
1569     static function getReplyTo($reply_to, $profile_id, $source, $content)
1570     {
1571         static $lb = array('xmpp', 'mail', 'sms', 'omb');
1572
1573         // If $reply_to is specified, we check that it exists, and then
1574         // return it if it does
1575
1576         if (!empty($reply_to)) {
1577             $reply_notice = Notice::staticGet('id', $reply_to);
1578             if (!empty($reply_notice)) {
1579                 return $reply_to;
1580             }
1581         }
1582
1583         // If it's not a "low bandwidth" source (one where you can't set
1584         // a reply_to argument), we return. This is mostly web and API
1585         // clients.
1586
1587         if (!in_array($source, $lb)) {
1588             return null;
1589         }
1590
1591         // Is there an initial @ or T?
1592
1593         if (preg_match('/^T ([A-Z0-9]{1,64}) /', $content, $match) ||
1594             preg_match('/^@([a-z0-9]{1,64})\s+/', $content, $match)) {
1595             $nickname = common_canonical_nickname($match[1]);
1596         } else {
1597             return null;
1598         }
1599
1600         // Figure out who that is.
1601
1602         $sender = Profile::staticGet('id', $profile_id);
1603         if (empty($sender)) {
1604             return null;
1605         }
1606
1607         $recipient = common_relative_profile($sender, $nickname, common_sql_now());
1608
1609         if (empty($recipient)) {
1610             return null;
1611         }
1612
1613         // Get their last notice
1614
1615         $last = $recipient->getCurrentNotice();
1616
1617         if (!empty($last)) {
1618             return $last->id;
1619         }
1620     }
1621
1622     static function maxContent()
1623     {
1624         $contentlimit = common_config('notice', 'contentlimit');
1625         // null => use global limit (distinct from 0!)
1626         if (is_null($contentlimit)) {
1627             $contentlimit = common_config('site', 'textlimit');
1628         }
1629         return $contentlimit;
1630     }
1631
1632     static function contentTooLong($content)
1633     {
1634         $contentlimit = self::maxContent();
1635         return ($contentlimit > 0 && !empty($content) && (mb_strlen($content) > $contentlimit));
1636     }
1637
1638     function getLocation()
1639     {
1640         $location = null;
1641
1642         if (!empty($this->location_id) && !empty($this->location_ns)) {
1643             $location = Location::fromId($this->location_id, $this->location_ns);
1644         }
1645
1646         if (is_null($location)) { // no ID, or Location::fromId() failed
1647             if (!empty($this->lat) && !empty($this->lon)) {
1648                 $location = Location::fromLatLon($this->lat, $this->lon);
1649             }
1650         }
1651
1652         return $location;
1653     }
1654
1655     function repeat($repeater_id, $source)
1656     {
1657         $author = Profile::staticGet('id', $this->profile_id);
1658
1659         // TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
1660         // TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
1661         $content = sprintf(_('RT @%1$s %2$s'),
1662                            $author->nickname,
1663                            $this->content);
1664
1665         $maxlen = common_config('site', 'textlimit');
1666         if ($maxlen > 0 && mb_strlen($content) > $maxlen) {
1667             // Web interface and current Twitter API clients will
1668             // pull the original notice's text, but some older
1669             // clients and RSS/Atom feeds will see this trimmed text.
1670             //
1671             // Unfortunately this is likely to lose tags or URLs
1672             // at the end of long notices.
1673             $content = mb_substr($content, 0, $maxlen - 4) . ' ...';
1674         }
1675
1676         return self::saveNew($repeater_id, $content, $source,
1677                              array('repeat_of' => $this->id));
1678     }
1679
1680     // These are supposed to be in chron order!
1681
1682     function repeatStream($limit=100)
1683     {
1684         $cache = common_memcache();
1685
1686         if (empty($cache)) {
1687             $ids = $this->_repeatStreamDirect($limit);
1688         } else {
1689             $idstr = $cache->get(common_cache_key('notice:repeats:'.$this->id));
1690             if ($idstr !== false) {
1691                 $ids = explode(',', $idstr);
1692             } else {
1693                 $ids = $this->_repeatStreamDirect(100);
1694                 $cache->set(common_cache_key('notice:repeats:'.$this->id), implode(',', $ids));
1695             }
1696             if ($limit < 100) {
1697                 // We do a max of 100, so slice down to limit
1698                 $ids = array_slice($ids, 0, $limit);
1699             }
1700         }
1701
1702         return Notice::getStreamByIds($ids);
1703     }
1704
1705     function _repeatStreamDirect($limit)
1706     {
1707         $notice = new Notice();
1708
1709         $notice->selectAdd(); // clears it
1710         $notice->selectAdd('id');
1711
1712         $notice->repeat_of = $this->id;
1713
1714         $notice->orderBy('created, id'); // NB: asc!
1715
1716         if (!is_null($limit)) {
1717             $notice->limit(0, $limit);
1718         }
1719
1720         $ids = array();
1721
1722         if ($notice->find()) {
1723             while ($notice->fetch()) {
1724                 $ids[] = $notice->id;
1725             }
1726         }
1727
1728         $notice->free();
1729         $notice = NULL;
1730
1731         return $ids;
1732     }
1733
1734     function locationOptions($lat, $lon, $location_id, $location_ns, $profile = null)
1735     {
1736         $options = array();
1737
1738         if (!empty($location_id) && !empty($location_ns)) {
1739             $options['location_id'] = $location_id;
1740             $options['location_ns'] = $location_ns;
1741
1742             $location = Location::fromId($location_id, $location_ns);
1743
1744             if (!empty($location)) {
1745                 $options['lat'] = $location->lat;
1746                 $options['lon'] = $location->lon;
1747             }
1748
1749         } else if (!empty($lat) && !empty($lon)) {
1750             $options['lat'] = $lat;
1751             $options['lon'] = $lon;
1752
1753             $location = Location::fromLatLon($lat, $lon);
1754
1755             if (!empty($location)) {
1756                 $options['location_id'] = $location->location_id;
1757                 $options['location_ns'] = $location->location_ns;
1758             }
1759         } else if (!empty($profile)) {
1760             if (isset($profile->lat) && isset($profile->lon)) {
1761                 $options['lat'] = $profile->lat;
1762                 $options['lon'] = $profile->lon;
1763             }
1764
1765             if (isset($profile->location_id) && isset($profile->location_ns)) {
1766                 $options['location_id'] = $profile->location_id;
1767                 $options['location_ns'] = $profile->location_ns;
1768             }
1769         }
1770
1771         return $options;
1772     }
1773
1774     function clearReplies()
1775     {
1776         $replyNotice = new Notice();
1777         $replyNotice->reply_to = $this->id;
1778
1779         //Null any notices that are replies to this notice
1780
1781         if ($replyNotice->find()) {
1782             while ($replyNotice->fetch()) {
1783                 $orig = clone($replyNotice);
1784                 $replyNotice->reply_to = null;
1785                 $replyNotice->update($orig);
1786             }
1787         }
1788
1789         // Reply records
1790
1791         $reply = new Reply();
1792         $reply->notice_id = $this->id;
1793
1794         if ($reply->find()) {
1795             while($reply->fetch()) {
1796                 self::blow('reply:stream:%d', $reply->profile_id);
1797                 $reply->delete();
1798             }
1799         }
1800
1801         $reply->free();
1802     }
1803
1804     function clearFiles()
1805     {
1806         $f2p = new File_to_post();
1807
1808         $f2p->post_id = $this->id;
1809
1810         if ($f2p->find()) {
1811             while ($f2p->fetch()) {
1812                 $f2p->delete();
1813             }
1814         }
1815         // FIXME: decide whether to delete File objects
1816         // ...and related (actual) files
1817     }
1818
1819     function clearRepeats()
1820     {
1821         $repeatNotice = new Notice();
1822         $repeatNotice->repeat_of = $this->id;
1823
1824         //Null any notices that are repeats of this notice
1825
1826         if ($repeatNotice->find()) {
1827             while ($repeatNotice->fetch()) {
1828                 $orig = clone($repeatNotice);
1829                 $repeatNotice->repeat_of = null;
1830                 $repeatNotice->update($orig);
1831             }
1832         }
1833     }
1834
1835     function clearFaves()
1836     {
1837         $fave = new Fave();
1838         $fave->notice_id = $this->id;
1839
1840         if ($fave->find()) {
1841             while ($fave->fetch()) {
1842                 self::blow('fave:ids_by_user_own:%d', $fave->user_id);
1843                 self::blow('fave:ids_by_user_own:%d;last', $fave->user_id);
1844                 self::blow('fave:ids_by_user:%d', $fave->user_id);
1845                 self::blow('fave:ids_by_user:%d;last', $fave->user_id);
1846                 $fave->delete();
1847             }
1848         }
1849
1850         $fave->free();
1851     }
1852
1853     function clearTags()
1854     {
1855         $tag = new Notice_tag();
1856         $tag->notice_id = $this->id;
1857
1858         if ($tag->find()) {
1859             while ($tag->fetch()) {
1860                 self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, common_keyize($tag->tag));
1861                 self::blow('profile:notice_ids_tagged:%d:%s;last', $this->profile_id, common_keyize($tag->tag));
1862                 self::blow('notice_tag:notice_ids:%s', common_keyize($tag->tag));
1863                 self::blow('notice_tag:notice_ids:%s;last', common_keyize($tag->tag));
1864                 $tag->delete();
1865             }
1866         }
1867
1868         $tag->free();
1869     }
1870
1871     function clearGroupInboxes()
1872     {
1873         $gi = new Group_inbox();
1874
1875         $gi->notice_id = $this->id;
1876
1877         if ($gi->find()) {
1878             while ($gi->fetch()) {
1879                 self::blow('user_group:notice_ids:%d', $gi->group_id);
1880                 $gi->delete();
1881             }
1882         }
1883
1884         $gi->free();
1885     }
1886
1887     function distribute()
1888     {
1889         // We always insert for the author so they don't
1890         // have to wait
1891         Event::handle('StartNoticeDistribute', array($this));
1892
1893         $user = User::staticGet('id', $this->profile_id);
1894         if (!empty($user)) {
1895             Inbox::insertNotice($user->id, $this->id);
1896         }
1897
1898         if (common_config('queue', 'inboxes')) {
1899             // If there's a failure, we want to _force_
1900             // distribution at this point.
1901             try {
1902                 $qm = QueueManager::get();
1903                 $qm->enqueue($this, 'distrib');
1904             } catch (Exception $e) {
1905                 // If the exception isn't transient, this
1906                 // may throw more exceptions as DQH does
1907                 // its own enqueueing. So, we ignore them!
1908                 try {
1909                     $handler = new DistribQueueHandler();
1910                     $handler->handle($this);
1911                 } catch (Exception $e) {
1912                     common_log(LOG_ERR, "emergency redistribution resulted in " . $e->getMessage());
1913                 }
1914                 // Re-throw so somebody smarter can handle it.
1915                 throw $e;
1916             }
1917         } else {
1918             $handler = new DistribQueueHandler();
1919             $handler->handle($this);
1920         }
1921     }
1922
1923     function insert()
1924     {
1925         $result = parent::insert();
1926
1927         if ($result) {
1928             // Profile::hasRepeated() abuses pkeyGet(), so we
1929             // have to clear manually
1930             if (!empty($this->repeat_of)) {
1931                 $c = self::memcache();
1932                 if (!empty($c)) {
1933                     $ck = self::multicacheKey('Notice',
1934                                               array('profile_id' => $this->profile_id,
1935                                                     'repeat_of' => $this->repeat_of));
1936                     $c->delete($ck);
1937                 }
1938             }
1939         }
1940
1941         return $result;
1942     }
1943
1944     /**
1945      * Get the source of the notice
1946      *
1947      * @return Notice_source $ns A notice source object. 'code' is the only attribute
1948      *                           guaranteed to be populated.
1949      */
1950     function getSource()
1951     {
1952         $ns = new Notice_source();
1953         if (!empty($this->source)) {
1954             switch ($this->source) {
1955             case 'web':
1956             case 'xmpp':
1957             case 'mail':
1958             case 'omb':
1959             case 'system':
1960             case 'api':
1961                 $ns->code = $this->source;
1962                 break;
1963             default:
1964                 $ns = Notice_source::staticGet($this->source);
1965                 if (!$ns) {
1966                     $ns = new Notice_source();
1967                     $ns->code = $this->source;
1968                     $app = Oauth_application::staticGet('name', $this->source);
1969                     if ($app) {
1970                         $ns->name = $app->name;
1971                         $ns->url  = $app->source_url;
1972                     }
1973                 }
1974                 break;
1975             }
1976         }
1977         return $ns;
1978     }
1979
1980     /**
1981      * Determine whether the notice was locally created
1982      *
1983      * @return boolean locality
1984      */
1985
1986     public function isLocal()
1987     {
1988         return ($this->is_local == Notice::LOCAL_PUBLIC ||
1989                 $this->is_local == Notice::LOCAL_NONPUBLIC);
1990     }
1991
1992     public function getTags()
1993     {
1994         $tags = array();
1995         $tag = new Notice_tag();
1996         $tag->notice_id = $this->id;
1997         if ($tag->find()) {
1998             while ($tag->fetch()) {
1999                 $tags[] = $tag->tag;
2000             }
2001         }
2002         $tag->free();
2003         return $tags;
2004     }
2005
2006     static private function utcDate($dt)
2007     {
2008         $dateStr = date('d F Y H:i:s', strtotime($dt));
2009         $d = new DateTime($dateStr, new DateTimeZone('UTC'));
2010         return $d->format(DATE_W3C);
2011     }
2012
2013     /**
2014      * Look up the creation timestamp for a given notice ID, even
2015      * if it's been deleted.
2016      *
2017      * @param int $id
2018      * @return mixed string recorded creation timestamp, or false if can't be found
2019      */
2020     public static function getAsTimestamp($id)
2021     {
2022         if (!$id) {
2023             return false;
2024         }
2025
2026         $notice = Notice::staticGet('id', $id);
2027         if ($notice) {
2028             return $notice->created;
2029         }
2030
2031         $deleted = Deleted_notice::staticGet('id', $id);
2032         if ($deleted) {
2033             return $deleted->created;
2034         }
2035
2036         return false;
2037     }
2038
2039     /**
2040      * Build an SQL 'where' fragment for timestamp-based sorting from a since_id
2041      * parameter, matching notices posted after the given one (exclusive).
2042      *
2043      * If the referenced notice can't be found, will return false.
2044      *
2045      * @param int $id
2046      * @param string $idField
2047      * @param string $createdField
2048      * @return mixed string or false if no match
2049      */
2050     public static function whereSinceId($id, $idField='id', $createdField='created')
2051     {
2052         $since = Notice::getAsTimestamp($id);
2053         if ($since) {
2054             return sprintf("($createdField = '%s' and $idField > %d) or ($createdField > '%s')", $since, $id, $since);
2055         }
2056         return false;
2057     }
2058
2059     /**
2060      * Build an SQL 'where' fragment for timestamp-based sorting from a since_id
2061      * parameter, matching notices posted after the given one (exclusive), and
2062      * if necessary add it to the data object's query.
2063      *
2064      * @param DB_DataObject $obj
2065      * @param int $id
2066      * @param string $idField
2067      * @param string $createdField
2068      * @return mixed string or false if no match
2069      */
2070     public static function addWhereSinceId(DB_DataObject $obj, $id, $idField='id', $createdField='created')
2071     {
2072         $since = self::whereSinceId($id, $idField, $createdField);
2073         if ($since) {
2074             $obj->whereAdd($since);
2075         }
2076     }
2077
2078     /**
2079      * Build an SQL 'where' fragment for timestamp-based sorting from a max_id
2080      * parameter, matching notices posted before the given one (inclusive).
2081      *
2082      * If the referenced notice can't be found, will return false.
2083      *
2084      * @param int $id
2085      * @param string $idField
2086      * @param string $createdField
2087      * @return mixed string or false if no match
2088      */
2089     public static function whereMaxId($id, $idField='id', $createdField='created')
2090     {
2091         $max = Notice::getAsTimestamp($id);
2092         if ($max) {
2093             return sprintf("($createdField < '%s') or ($createdField = '%s' and $idField <= %d)", $max, $max, $id);
2094         }
2095         return false;
2096     }
2097
2098     /**
2099      * Build an SQL 'where' fragment for timestamp-based sorting from a max_id
2100      * parameter, matching notices posted before the given one (inclusive), and
2101      * if necessary add it to the data object's query.
2102      *
2103      * @param DB_DataObject $obj
2104      * @param int $id
2105      * @param string $idField
2106      * @param string $createdField
2107      * @return mixed string or false if no match
2108      */
2109     public static function addWhereMaxId(DB_DataObject $obj, $id, $idField='id', $createdField='created')
2110     {
2111         $max = self::whereMaxId($id, $idField, $createdField);
2112         if ($max) {
2113             $obj->whereAdd($max);
2114         }
2115     }
2116
2117     function isPublic()
2118     {
2119         if (common_config('public', 'localonly')) {
2120             return ($this->is_local == Notice::LOCAL_PUBLIC);
2121         } else {
2122             return (($this->is_local != Notice::LOCAL_NONPUBLIC) &&
2123                     ($this->is_local != Notice::GATEWAY));
2124         }
2125     }
2126 }