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