3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2008-2011 StatusNet, Inc.
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.
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.
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/>.
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/
36 if (!defined('STATUSNET') && !defined('LACONICA')) {
41 * Table Definition for notice
43 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
45 /* We keep 200 notices, the max number of notices available per API request,
46 * in the memcached cache. */
48 define('NOTICE_CACHE_WINDOW', CachingNoticeStream::CACHE_WINDOW);
50 define('MAX_BOXCARS', 128);
52 class Notice extends Managed_DataObject
55 /* the code below is auto generated do not remove the above tag */
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 public $verb; // varchar(255)
76 public $object_type; // varchar(255)
77 public $scope; // int(4)
80 function staticGet($k,$v=NULL)
82 return Memcached_DataObject::staticGet('Notice',$k,$v);
85 /* the code above is auto generated do not remove the tag below */
88 public static function schemaDef()
92 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'),
93 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'who made the update'),
94 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universally unique identifier, usually a tag URI'),
95 'content' => array('type' => 'text', 'description' => 'update content', 'collate' => 'utf8_general_ci'),
96 'rendered' => array('type' => 'text', 'description' => 'HTML version of the content'),
97 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL of any attachment (image, video, bookmark, whatever)'),
98 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
99 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
100 'reply_to' => array('type' => 'int', 'description' => 'notice replied to (usually a guess)'),
101 'is_local' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'notice was generated by a user'),
102 'source' => array('type' => 'varchar', 'length' => 32, 'description' => 'source of comment, like "web", "im", or "clientname"'),
103 'conversation' => array('type' => 'int', 'description' => 'id of root notice in this conversation'),
104 'lat' => array('type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'latitude'),
105 'lon' => array('type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'longitude'),
106 'location_id' => array('type' => 'int', 'description' => 'location id if possible'),
107 'location_ns' => array('type' => 'int', 'description' => 'namespace for location'),
108 'repeat_of' => array('type' => 'int', 'description' => 'notice this is a repeat of'),
109 'object_type' => array('type' => 'varchar', 'length' => 255, 'description' => 'URI representing activity streams object type', 'default' => 'http://activitystrea.ms/schema/1.0/note'),
110 'verb' => array('type' => 'varchar', 'length' => 255, 'description' => 'URI representing activity streams verb', 'default' => 'http://activitystrea.ms/schema/1.0/post'),
111 'scope' => array('type' => 'int',
112 'description' => 'bit map for distribution scope; 0 = everywhere; 1 = this server only; 2 = addressees; 4 = followers; null = default'),
114 'primary key' => array('id'),
115 'unique keys' => array(
116 'notice_uri_key' => array('uri'),
118 'foreign keys' => array(
119 'notice_profile_id_fkey' => array('profile', array('profile_id' => 'id')),
120 'notice_reply_to_fkey' => array('notice', array('reply_to' => 'id')),
121 'notice_conversation_fkey' => array('conversation', array('conversation' => 'id')), # note... used to refer to notice.id
122 'notice_repeat_of_fkey' => array('notice', array('repeat_of' => 'id')), # @fixme: what about repeats of deleted notices?
125 'notice_created_id_is_local_idx' => array('created', 'id', 'is_local'),
126 'notice_profile_id_idx' => array('profile_id', 'created', 'id'),
127 'notice_repeat_of_created_id_idx' => array('repeat_of', 'created', 'id'),
128 'notice_conversation_created_id_idx' => array('conversation', 'created', 'id'),
129 'notice_replyto_idx' => array('reply_to')
133 if (common_config('search', 'type') == 'fulltext') {
134 $def['fulltext indexes'] = array('content' => array('content'));
140 function multiGet($kc, $kvs, $skipNulls=true)
142 return Memcached_DataObject::multiGet('Notice', $kc, $kvs, $skipNulls);
146 const LOCAL_PUBLIC = 1;
148 const LOCAL_NONPUBLIC = -1;
151 const PUBLIC_SCOPE = 0; // Useful fake constant
152 const SITE_SCOPE = 1;
153 const ADDRESSEE_SCOPE = 2;
154 const GROUP_SCOPE = 4;
155 const FOLLOWER_SCOPE = 8;
157 protected $_profile = -1;
159 function getProfile()
161 if (is_int($this->_profile) && $this->_profile == -1) {
162 $this->_setProfile(Profile::staticGet('id', $this->profile_id));
164 if (empty($this->_profile)) {
165 // TRANS: Server exception thrown when a user profile for a notice cannot be found.
166 // TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number).
167 throw new ServerException(sprintf(_('No such profile (%1$d) for notice (%2$d).'), $this->profile_id, $this->id));
171 return $this->_profile;
174 function _setProfile($profile)
176 $this->_profile = $profile;
181 // For auditing purposes, save a record that the notice
184 // @fixme we have some cases where things get re-run and so the
186 $deleted = Deleted_notice::staticGet('id', $this->id);
189 $deleted = Deleted_notice::staticGet('uri', $this->uri);
193 $deleted = new Deleted_notice();
195 $deleted->id = $this->id;
196 $deleted->profile_id = $this->profile_id;
197 $deleted->uri = $this->uri;
198 $deleted->created = $this->created;
199 $deleted->deleted = common_sql_now();
204 if (Event::handle('NoticeDeleteRelated', array($this))) {
206 // Clear related records
208 $this->clearReplies();
209 $this->clearRepeats();
212 $this->clearGroupInboxes();
215 // NOTE: we don't clear inboxes
216 // NOTE: we don't clear queue items
219 $result = parent::delete();
221 $this->blowOnDelete();
226 * Extract #hashtags from this notice's content and save them to the database.
230 /* extract all #hastags */
231 $count = preg_match_all('/(?:^|\s)#([\pL\pN_\-\.]{1,64})/u', strtolower($this->content), $match);
236 /* Add them to the database */
237 return $this->saveKnownTags($match[1]);
241 * Record the given set of hash tags in the db for this notice.
242 * Given tag strings will be normalized and checked for dupes.
244 function saveKnownTags($hashtags)
246 //turn each into their canonical tag
247 //this is needed to remove dupes before saving e.g. #hash.tag = #hashtag
248 for($i=0; $i<count($hashtags); $i++) {
249 /* elide characters we don't want in the tag */
250 $hashtags[$i] = common_canonical_tag($hashtags[$i]);
253 foreach(array_unique($hashtags) as $hashtag) {
254 $this->saveTag($hashtag);
255 self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, $hashtag);
261 * Record a single hash tag as associated with this notice.
262 * Tag format and uniqueness must be validated by caller.
264 function saveTag($hashtag)
266 $tag = new Notice_tag();
267 $tag->notice_id = $this->id;
268 $tag->tag = $hashtag;
269 $tag->created = $this->created;
270 $id = $tag->insert();
273 // TRANS: Server exception. %s are the error details.
274 throw new ServerException(sprintf(_('Database error inserting hashtag: %s.'),
275 $last_error->message));
279 // if it's saved, blow its cache
280 $tag->blowCache(false);
284 * Save a new notice and push it out to subscribers' inboxes.
285 * Poster's permissions are checked before sending.
287 * @param int $profile_id Profile ID of the poster
288 * @param string $content source message text; links may be shortened
289 * per current user's preference
290 * @param string $source source key ('web', 'api', etc)
291 * @param array $options Associative array of optional properties:
292 * string 'created' timestamp of notice; defaults to now
293 * int 'is_local' source/gateway ID, one of:
294 * Notice::LOCAL_PUBLIC - Local, ok to appear in public timeline
295 * Notice::REMOTE - Sent from a remote service;
296 * hide from public timeline but show in
297 * local "and friends" timelines
298 * Notice::LOCAL_NONPUBLIC - Local, but hide from public timeline
299 * Notice::GATEWAY - From another non-OStatus service;
300 * will not appear in public views
301 * float 'lat' decimal latitude for geolocation
302 * float 'lon' decimal longitude for geolocation
303 * int 'location_id' geoname identifier
304 * int 'location_ns' geoname namespace to interpret location_id
305 * int 'reply_to'; notice ID this is a reply to
306 * int 'repeat_of'; notice ID this is a repeat of
307 * string 'uri' unique ID for notice; defaults to local notice URL
308 * string 'url' permalink to notice; defaults to local notice URL
309 * string 'rendered' rendered HTML version of content
310 * array 'replies' list of profile URIs for reply delivery in
311 * place of extracting @-replies from content.
312 * array 'groups' list of group IDs to deliver to, in place of
313 * extracting ! tags from content
314 * array 'tags' list of hashtag strings to save with the notice
315 * in place of extracting # tags from content
316 * array 'urls' list of attached/referred URLs to save with the
317 * notice in place of extracting links from content
318 * boolean 'distribute' whether to distribute the notice, default true
319 * string 'object_type' URL of the associated object type (default ActivityObject::NOTE)
320 * string 'verb' URL of the associated verb (default ActivityVerb::POST)
321 * int 'scope' Scope bitmask; default to SITE_SCOPE on private sites, 0 otherwise
323 * @fixme tag override
326 * @throws ClientException
328 static function saveNew($profile_id, $content, $source, $options=null) {
329 $defaults = array('uri' => null,
334 'distribute' => true,
335 'object_type' => null,
338 if (!empty($options) && is_array($options)) {
339 $options = array_merge($defaults, $options);
345 if (!isset($is_local)) {
346 $is_local = Notice::LOCAL_PUBLIC;
349 $profile = Profile::staticGet('id', $profile_id);
350 $user = User::staticGet('id', $profile_id);
352 // Use the local user's shortening preferences, if applicable.
353 $final = $user->shortenLinks($content);
355 $final = common_shorten_links($content);
358 if (Notice::contentTooLong($final)) {
359 // TRANS: Client exception thrown if a notice contains too many characters.
360 throw new ClientException(_('Problem saving notice. Too long.'));
363 if (empty($profile)) {
364 // TRANS: Client exception thrown when trying to save a notice for an unknown user.
365 throw new ClientException(_('Problem saving notice. Unknown user.'));
368 if (common_config('throttle', 'enabled') && !Notice::checkEditThrottle($profile_id)) {
369 common_log(LOG_WARNING, 'Excessive posting by profile #' . $profile_id . '; throttled.');
370 // TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
371 throw new ClientException(_('Too many notices too fast; take a breather '.
372 'and post again in a few minutes.'));
375 if (common_config('site', 'dupelimit') > 0 && !Notice::checkDupes($profile_id, $final)) {
376 common_log(LOG_WARNING, 'Dupe posting by profile #' . $profile_id . '; throttled.');
377 // TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
378 throw new ClientException(_('Too many duplicate messages too quickly;'.
379 ' take a breather and post again in a few minutes.'));
382 if (!$profile->hasRight(Right::NEWNOTICE)) {
383 common_log(LOG_WARNING, "Attempted post from user disallowed to post: " . $profile->nickname);
385 // TRANS: Client exception thrown when a user tries to post while being banned.
386 throw new ClientException(_('You are banned from posting notices on this site.'), 403);
389 $notice = new Notice();
390 $notice->profile_id = $profile_id;
392 $autosource = common_config('public', 'autosource');
394 // Sandboxed are non-false, but not 1, either
396 if (!$profile->hasRight(Right::PUBLICNOTICE) ||
397 ($source && $autosource && in_array($source, $autosource))) {
398 $notice->is_local = Notice::LOCAL_NONPUBLIC;
400 $notice->is_local = $is_local;
403 if (!empty($created)) {
404 $notice->created = $created;
406 $notice->created = common_sql_now();
409 $notice->content = $final;
411 $notice->source = $source;
415 // Get the groups here so we can figure out replies and such
417 if (!isset($groups)) {
418 $groups = self::groupsFromText($notice->content, $profile);
423 // Handle repeat case
425 if (isset($repeat_of)) {
427 // Check for a private one
429 $repeat = Notice::staticGet('id', $repeat_of);
431 if (empty($repeat)) {
432 // TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice.
433 throw new ClientException(_('Cannot repeat; original notice is missing or deleted.'));
436 if ($profile->id == $repeat->profile_id) {
437 // TRANS: Client error displayed when trying to repeat an own notice.
438 throw new ClientException(_('You cannot repeat your own notice.'));
441 if ($repeat->scope != Notice::SITE_SCOPE &&
442 $repeat->scope != Notice::PUBLIC_SCOPE) {
443 // TRANS: Client error displayed when trying to repeat a non-public notice.
444 throw new ClientException(_('Cannot repeat a private notice.'), 403);
447 if (!$repeat->inScope($profile)) {
448 // The generic checks above should cover this, but let's be sure!
449 // TRANS: Client error displayed when trying to repeat a notice you cannot access.
450 throw new ClientException(_('Cannot repeat a notice you cannot read.'), 403);
453 if ($profile->hasRepeated($repeat->id)) {
454 // TRANS: Client error displayed when trying to repeat an already repeated notice.
455 throw new ClientException(_('You already repeated that notice.'));
458 $notice->repeat_of = $repeat_of;
460 $reply = self::getReplyTo($reply_to, $profile_id, $source, $final);
462 if (!empty($reply)) {
464 if (!$reply->inScope($profile)) {
465 // TRANS: Client error displayed when trying to reply to a notice a the target has no access to.
466 // TRANS: %1$s is a user nickname, %2$d is a notice ID (number).
467 throw new ClientException(sprintf(_('%1$s has no access to notice %2$d.'),
468 $profile->nickname, $reply->id), 403);
471 $notice->reply_to = $reply->id;
472 $notice->conversation = $reply->conversation;
474 // If the original is private to a group, and notice has no group specified,
475 // make it to the same group(s)
477 if (empty($groups) && ($reply->scope | Notice::GROUP_SCOPE)) {
479 $replyGroups = $reply->getGroups();
480 foreach ($replyGroups as $group) {
481 if ($profile->isMember($group)) {
482 $groups[] = $group->id;
491 if (!empty($lat) && !empty($lon)) {
496 if (!empty($location_ns) && !empty($location_id)) {
497 $notice->location_id = $location_id;
498 $notice->location_ns = $location_ns;
501 if (!empty($rendered)) {
502 $notice->rendered = $rendered;
504 $notice->rendered = common_render_content($final, $notice);
508 if (!empty($notice->repeat_of)) {
509 $notice->verb = ActivityVerb::SHARE;
510 $notice->object_type = ActivityObject::ACTIVITY;
512 $notice->verb = ActivityVerb::POST;
515 $notice->verb = $verb;
518 if (empty($object_type)) {
519 $notice->object_type = (empty($notice->reply_to)) ? ActivityObject::NOTE : ActivityObject::COMMENT;
521 $notice->object_type = $object_type;
524 if (is_null($scope)) { // 0 is a valid value
525 if (!empty($reply)) {
526 $notice->scope = $reply->scope;
528 $notice->scope = self::defaultScope();
531 $notice->scope = $scope;
534 // For private streams
536 $user = $profile->getUser();
539 if ($user->private_stream &&
540 ($notice->scope == Notice::PUBLIC_SCOPE ||
541 $notice->scope == Notice::SITE_SCOPE)) {
542 $notice->scope |= Notice::FOLLOWER_SCOPE;
546 // Force the scope for private groups
548 foreach ($groups as $groupId) {
549 $group = User_group::staticGet('id', $groupId);
550 if (!empty($group)) {
551 if ($group->force_scope) {
552 $notice->scope |= Notice::GROUP_SCOPE;
558 if (Event::handle('StartNoticeSave', array(&$notice))) {
560 // XXX: some of these functions write to the DB
562 $id = $notice->insert();
565 common_log_db_error($notice, 'INSERT', __FILE__);
566 // TRANS: Server exception thrown when a notice cannot be saved.
567 throw new ServerException(_('Problem saving notice.'));
570 // Update ID-dependent columns: URI, conversation
572 $orig = clone($notice);
577 $notice->uri = common_notice_uri($notice);
581 // If it's not part of a conversation, it's
582 // the beginning of a new conversation.
584 if (empty($notice->conversation)) {
585 $conv = Conversation::create();
586 $notice->conversation = $conv->id;
591 if (!$notice->update($orig)) {
592 common_log_db_error($notice, 'UPDATE', __FILE__);
593 // TRANS: Server exception thrown when a notice cannot be updated.
594 throw new ServerException(_('Problem saving notice.'));
600 // Clear the cache for subscribed users, so they'll update at next request
601 // XXX: someone clever could prepend instead of clearing the cache
603 $notice->blowOnInsert();
605 // Save per-notice metadata...
607 if (isset($replies)) {
608 $notice->saveKnownReplies($replies);
610 $notice->saveReplies();
614 $notice->saveKnownTags($tags);
619 // Note: groups may save tags, so must be run after tags are saved
620 // to avoid errors on duplicates.
621 // Note: groups should always be set.
623 $notice->saveKnownGroups($groups);
626 $notice->saveKnownUrls($urls);
632 // Prepare inbox delivery, may be queued to background.
633 $notice->distribute();
639 function blowOnInsert($conversation = false)
641 $this->blowStream('profile:notice_ids:%d', $this->profile_id);
643 if ($this->isPublic()) {
644 $this->blowStream('public');
647 self::blow('notice:list-ids:conversation:%s', $this->conversation);
648 self::blow('conversation::notice_count:%d', $this->conversation);
650 if (!empty($this->repeat_of)) {
651 // XXX: we should probably only use one of these
652 $this->blowStream('notice:repeats:%d', $this->repeat_of);
653 self::blow('notice:list-ids:repeat_of:%d', $this->repeat_of);
656 $original = Notice::staticGet('id', $this->repeat_of);
658 if (!empty($original)) {
659 $originalUser = User::staticGet('id', $original->profile_id);
660 if (!empty($originalUser)) {
661 $this->blowStream('user:repeats_of_me:%d', $originalUser->id);
665 $profile = Profile::staticGet($this->profile_id);
667 if (!empty($profile)) {
668 $profile->blowNoticeCount();
671 $ptags = $this->getProfileTags();
672 foreach ($ptags as $ptag) {
673 $ptag->blowNoticeStreamCache();
678 * Clear cache entries related to this notice at delete time.
679 * Necessary to avoid breaking paging on public, profile timelines.
681 function blowOnDelete()
683 $this->blowOnInsert();
685 self::blow('profile:notice_ids:%d;last', $this->profile_id);
687 if ($this->isPublic()) {
688 self::blow('public;last');
691 self::blow('fave:by_notice', $this->id);
693 if ($this->conversation) {
694 // In case we're the first, will need to calc a new root.
695 self::blow('notice:conversation_root:%d', $this->conversation);
698 $ptags = $this->getProfileTags();
699 foreach ($ptags as $ptag) {
700 $ptag->blowNoticeStreamCache(true);
704 function blowStream()
706 $c = self::memcache();
712 $args = func_get_args();
714 $format = array_shift($args);
716 $keyPart = vsprintf($format, $args);
718 $cacheKey = Cache::key($keyPart);
720 $c->delete($cacheKey);
722 // delete the "last" stream, too, if this notice is
723 // older than the top of that stream
725 $lastKey = $cacheKey.';last';
727 $lastStr = $c->get($lastKey);
729 if ($lastStr !== false) {
730 $window = explode(',', $lastStr);
731 $lastID = $window[0];
732 $lastNotice = Notice::staticGet('id', $lastID);
733 if (empty($lastNotice) // just weird
734 || strtotime($lastNotice->created) >= strtotime($this->created)) {
735 $c->delete($lastKey);
740 /** save all urls in the notice to the db
742 * follow redirects and save all available file information
743 * (mimetype, date, size, oembed, etc.)
747 function saveUrls() {
748 if (common_config('attachments', 'process_links')) {
749 common_replace_urls_callback($this->content, array($this, 'saveUrl'), $this->id);
754 * Save the given URLs as related links/attachments to the db
756 * follow redirects and save all available file information
757 * (mimetype, date, size, oembed, etc.)
761 function saveKnownUrls($urls)
763 if (common_config('attachments', 'process_links')) {
764 // @fixme validation?
765 foreach (array_unique($urls) as $url) {
766 File::processNew($url, $this->id);
774 function saveUrl($url, $notice_id) {
775 File::processNew($url, $notice_id);
778 static function checkDupes($profile_id, $content) {
779 $profile = Profile::staticGet($profile_id);
780 if (empty($profile)) {
783 $notice = $profile->getNotices(0, CachingNoticeStream::CACHE_WINDOW);
784 if (!empty($notice)) {
786 while ($notice->fetch()) {
787 if (time() - strtotime($notice->created) >= common_config('site', 'dupelimit')) {
789 } else if ($notice->content == $content) {
794 // If we get here, oldest item in cache window is not
795 // old enough for dupe limit; do direct check against DB
796 $notice = new Notice();
797 $notice->profile_id = $profile_id;
798 $notice->content = $content;
799 $threshold = common_sql_date(time() - common_config('site', 'dupelimit'));
800 $notice->whereAdd(sprintf("created > '%s'", $notice->escape($threshold)));
802 $cnt = $notice->count();
806 static function checkEditThrottle($profile_id) {
807 $profile = Profile::staticGet($profile_id);
808 if (empty($profile)) {
811 // Get the Nth notice
812 $notice = $profile->getNotices(common_config('throttle', 'count') - 1, 1);
813 if ($notice && $notice->fetch()) {
814 // If the Nth notice was posted less than timespan seconds ago
815 if (time() - strtotime($notice->created) <= common_config('throttle', 'timespan')) {
820 // Either not N notices in the stream, OR the Nth was not posted within timespan seconds
824 protected $_attachments = -1;
826 function attachments() {
828 if ($this->_attachments != -1) {
829 return $this->_attachments;
832 $f2ps = Memcached_DataObject::listGet('File_to_post', 'post_id', array($this->id));
836 foreach ($f2ps[$this->id] as $f2p) {
837 $ids[] = $f2p->file_id;
840 $files = Memcached_DataObject::multiGet('File', 'id', $ids);
842 $this->_attachments = $files->fetchAll();
844 return $this->_attachments;
847 function _setAttachments($attachments)
849 $this->_attachments = $attachments;
852 function publicStream($offset=0, $limit=20, $since_id=0, $max_id=0)
854 $stream = new PublicNoticeStream();
855 return $stream->getNotices($offset, $limit, $since_id, $max_id);
859 function conversationStream($id, $offset=0, $limit=20, $since_id=0, $max_id=0)
861 $stream = new ConversationNoticeStream($id);
863 return $stream->getNotices($offset, $limit, $since_id, $max_id);
867 * Is this notice part of an active conversation?
869 * @return boolean true if other messages exist in the same
870 * conversation, false if this is the only one
872 function hasConversation()
874 if (!empty($this->conversation)) {
875 $conversation = Notice::conversationStream(
881 if ($conversation->N > 0) {
889 * Grab the earliest notice from this conversation.
891 * @return Notice or null
893 function conversationRoot($profile=-1)
895 // XXX: can this happen?
897 if (empty($this->conversation)) {
901 // Get the current profile if not specified
903 if (is_int($profile) && $profile == -1) {
904 $profile = Profile::current();
907 // If this notice is out of scope, no root for you!
909 if (!$this->inScope($profile)) {
913 // If this isn't a reply to anything, then it's its own
916 if (empty($this->reply_to)) {
920 if (is_null($profile)) {
921 $keypart = sprintf('notice:conversation_root:%d:null', $this->id);
923 $keypart = sprintf('notice:conversation_root:%d:%d',
928 $root = self::cacheGet($keypart);
930 if ($root !== false && $root->inScope($profile)) {
936 $parent = $last->getOriginal();
937 if (!empty($parent) && $parent->inScope($profile)) {
944 } while (!empty($parent));
946 self::cacheSet($keypart, $root);
953 * Pull up a full list of local recipients who will be getting
954 * this notice in their inbox. Results will be cached, so don't
955 * change the input data wily-nilly!
957 * @param array $groups optional list of Group objects;
958 * if left empty, will be loaded from group_inbox records
959 * @param array $recipient optional list of reply profile ids
960 * if left empty, will be loaded from reply records
961 * @return array associating recipient user IDs with an inbox source constant
963 function whoGets($groups=null, $recipients=null)
965 $c = self::memcache();
968 $ni = $c->get(Cache::key('notice:who_gets:'.$this->id));
974 if (is_null($groups)) {
975 $groups = $this->getGroups();
978 if (is_null($recipients)) {
979 $recipients = $this->getReplies();
982 $users = $this->getSubscribedUsers();
983 $ptags = $this->getProfileTags();
985 // FIXME: kind of ignoring 'transitional'...
986 // we'll probably stop supporting inboxless mode
991 // Give plugins a chance to add folks in at start...
992 if (Event::handle('StartNoticeWhoGets', array($this, &$ni))) {
994 foreach ($users as $id) {
995 $ni[$id] = NOTICE_INBOX_SOURCE_SUB;
998 foreach ($groups as $group) {
999 $users = $group->getUserMembers();
1000 foreach ($users as $id) {
1001 if (!array_key_exists($id, $ni)) {
1002 $ni[$id] = NOTICE_INBOX_SOURCE_GROUP;
1007 foreach ($ptags as $ptag) {
1008 $users = $ptag->getUserSubscribers();
1009 foreach ($users as $id) {
1010 if (!array_key_exists($id, $ni)) {
1011 $ni[$id] = NOTICE_INBOX_SOURCE_PROFILE_TAG;
1016 foreach ($recipients as $recipient) {
1017 if (!array_key_exists($recipient, $ni)) {
1018 $ni[$recipient] = NOTICE_INBOX_SOURCE_REPLY;
1022 // Exclude any deleted, non-local, or blocking recipients.
1023 $profile = $this->getProfile();
1024 $originalProfile = null;
1025 if ($this->repeat_of) {
1026 // Check blocks against the original notice's poster as well.
1027 $original = Notice::staticGet('id', $this->repeat_of);
1029 $originalProfile = $original->getProfile();
1033 foreach ($ni as $id => $source) {
1034 $user = User::staticGet('id', $id);
1035 if (empty($user) || $user->hasBlocked($profile) ||
1036 ($originalProfile && $user->hasBlocked($originalProfile))) {
1041 // Give plugins a chance to filter out...
1042 Event::handle('EndNoticeWhoGets', array($this, &$ni));
1046 // XXX: pack this data better
1047 $c->set(Cache::key('notice:who_gets:'.$this->id), $ni);
1054 * Adds this notice to the inboxes of each local user who should receive
1055 * it, based on author subscriptions, group memberships, and @-replies.
1057 * Warning: running a second time currently will make items appear
1058 * multiple times in users' inboxes.
1060 * @fixme make more robust against errors
1061 * @fixme break up massive deliveries to smaller background tasks
1063 * @param array $groups optional list of Group objects;
1064 * if left empty, will be loaded from group_inbox records
1065 * @param array $recipient optional list of reply profile ids
1066 * if left empty, will be loaded from reply records
1068 function addToInboxes($groups=null, $recipients=null)
1070 $ni = $this->whoGets($groups, $recipients);
1072 $ids = array_keys($ni);
1074 // We remove the author (if they're a local user),
1075 // since we'll have already done this in distribute()
1077 $i = array_search($this->profile_id, $ids);
1085 Inbox::bulkInsert($this->id, $ids);
1090 function getSubscribedUsers()
1094 if(common_config('db','quote_identifiers'))
1095 $user_table = '"user"';
1096 else $user_table = 'user';
1100 'FROM '. $user_table .' JOIN subscription '.
1101 'ON '. $user_table .'.id = subscription.subscriber ' .
1102 'WHERE subscription.subscribed = %d ';
1104 $user->query(sprintf($qry, $this->profile_id));
1108 while ($user->fetch()) {
1117 function getProfileTags()
1119 $profile = $this->getProfile();
1120 $list = $profile->getOtherTags($profile);
1123 while($list->fetch()) {
1124 $ptags[] = clone($list);
1131 * Record this notice to the given group inboxes for delivery.
1132 * Overrides the regular parsing of !group markup.
1134 * @param string $group_ids
1135 * @fixme might prefer URIs as identifiers, as for replies?
1136 * best with generalizations on user_group to support
1137 * remote groups better.
1139 function saveKnownGroups($group_ids)
1141 if (!is_array($group_ids)) {
1142 // TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
1143 throw new ServerException(_('Bad type provided to saveKnownGroups.'));
1147 foreach (array_unique($group_ids) as $id) {
1148 $group = User_group::staticGet('id', $id);
1150 common_log(LOG_ERR, "Local delivery to group id $id, $group->nickname");
1151 $result = $this->addToGroupInbox($group);
1153 common_log_db_error($gi, 'INSERT', __FILE__);
1156 if (common_config('group', 'addtag')) {
1157 // we automatically add a tag for every group name, too
1159 $tag = Notice_tag::pkeyGet(array('tag' => common_canonical_tag($group->nickname),
1160 'notice_id' => $this->id));
1162 if (is_null($tag)) {
1163 $this->saveTag($group->nickname);
1167 $groups[] = clone($group);
1169 common_log(LOG_ERR, "Local delivery to group id $id skipped, doesn't exist");
1177 * Parse !group delivery and record targets into group_inbox.
1178 * @return array of Group objects
1180 function saveGroups()
1182 // Don't save groups for repeats
1184 if (!empty($this->repeat_of)) {
1188 $profile = $this->getProfile();
1190 $groups = self::groupsFromText($this->content, $profile);
1192 /* Add them to the database */
1194 foreach ($groups as $group) {
1195 /* XXX: remote groups. */
1197 if (empty($group)) {
1202 if ($profile->isMember($group)) {
1204 $result = $this->addToGroupInbox($group);
1207 common_log_db_error($gi, 'INSERT', __FILE__);
1210 $groups[] = clone($group);
1217 function addToGroupInbox($group)
1219 $gi = Group_inbox::pkeyGet(array('group_id' => $group->id,
1220 'notice_id' => $this->id));
1224 $gi = new Group_inbox();
1226 $gi->group_id = $group->id;
1227 $gi->notice_id = $this->id;
1228 $gi->created = $this->created;
1230 $result = $gi->insert();
1233 common_log_db_error($gi, 'INSERT', __FILE__);
1234 // TRANS: Server exception thrown when an update for a group inbox fails.
1235 throw new ServerException(_('Problem saving group inbox.'));
1238 self::blow('user_group:notice_ids:%d', $gi->group_id);
1245 * Save reply records indicating that this notice needs to be
1246 * delivered to the local users with the given URIs.
1248 * Since this is expected to be used when saving foreign-sourced
1249 * messages, we won't deliver to any remote targets as that's the
1250 * source service's responsibility.
1252 * Mail notifications etc will be handled later.
1254 * @param array of unique identifier URIs for recipients
1256 function saveKnownReplies($uris)
1262 $sender = Profile::staticGet($this->profile_id);
1264 foreach (array_unique($uris) as $uri) {
1266 $profile = Profile::fromURI($uri);
1268 if (empty($profile)) {
1269 common_log(LOG_WARNING, "Unable to determine profile for URI '$uri'");
1273 if ($profile->hasBlocked($sender)) {
1274 common_log(LOG_INFO, "Not saving reply to profile {$profile->id} ($uri) from sender {$sender->id} because of a block.");
1278 $this->saveReply($profile->id);
1279 self::blow('reply:stream:%d', $profile->id);
1286 * Pull @-replies from this message's content in StatusNet markup format
1287 * and save reply records indicating that this message needs to be
1288 * delivered to those users.
1290 * Mail notifications to local profiles will be sent later.
1292 * @return array of integer profile IDs
1295 function saveReplies()
1297 // Don't save reply data for repeats
1299 if (!empty($this->repeat_of)) {
1303 $sender = Profile::staticGet($this->profile_id);
1307 // If it's a reply, save for the replied-to author
1309 if (!empty($this->reply_to)) {
1310 $original = $this->getOriginal();
1311 if (!empty($original)) { // that'd be weird
1312 $author = $original->getProfile();
1313 if (!empty($author)) {
1314 $this->saveReply($author->id);
1315 $replied[$author->id] = 1;
1316 self::blow('reply:stream:%d', $author->id);
1321 // @todo ideally this parser information would only
1322 // be calculated once.
1324 $mentions = common_find_mentions($this->content, $this);
1326 // store replied only for first @ (what user/notice what the reply directed,
1327 // we assume first @ is it)
1329 foreach ($mentions as $mention) {
1331 foreach ($mention['mentioned'] as $mentioned) {
1333 // skip if they're already covered
1335 if (!empty($replied[$mentioned->id])) {
1339 // Don't save replies from blocked profile to local user
1341 $mentioned_user = User::staticGet('id', $mentioned->id);
1342 if (!empty($mentioned_user) && $mentioned_user->hasBlocked($sender)) {
1346 $this->saveReply($mentioned->id);
1347 $replied[$mentioned->id] = 1;
1348 self::blow('reply:stream:%d', $mentioned->id);
1352 $recipientIds = array_keys($replied);
1354 return $recipientIds;
1357 function saveReply($profileId)
1359 $reply = new Reply();
1361 $reply->notice_id = $this->id;
1362 $reply->profile_id = $profileId;
1363 $reply->modified = $this->created;
1370 protected $_replies = -1;
1373 * Pull the complete list of @-reply targets for this notice.
1375 * @return array of integer profile ids
1377 function getReplies()
1379 if ($this->_replies != -1) {
1380 return $this->_replies;
1383 $replyMap = Memcached_DataObject::listGet('Reply', 'notice_id', array($this->id));
1387 foreach ($replyMap[$this->id] as $reply) {
1388 $ids[] = $reply->profile_id;
1391 $this->_replies = $ids;
1396 function _setReplies($replies)
1398 $this->_replies = $replies;
1402 * Pull the complete list of @-reply targets for this notice.
1404 * @return array of Profiles
1406 function getReplyProfiles()
1408 $ids = $this->getReplies();
1410 $profiles = Profile::multiGet('id', $ids);
1412 return $profiles->fetchAll();
1416 * Send e-mail notifications to local @-reply targets.
1418 * Replies must already have been saved; this is expected to be run
1419 * from the distrib queue handler.
1421 function sendReplyNotifications()
1423 // Don't send reply notifications for repeats
1425 if (!empty($this->repeat_of)) {
1429 $recipientIds = $this->getReplies();
1431 foreach ($recipientIds as $recipientId) {
1432 $user = User::staticGet('id', $recipientId);
1433 if (!empty($user)) {
1434 mail_notify_attn($user, $this);
1440 * Pull list of groups this notice needs to be delivered to,
1441 * as previously recorded by saveGroups() or saveKnownGroups().
1443 * @return array of Group objects
1446 protected $_groups = -1;
1448 function getGroups()
1450 // Don't save groups for repeats
1452 if (!empty($this->repeat_of)) {
1456 if ($this->_groups != -1)
1458 return $this->_groups;
1461 $gis = Memcached_DataObject::listGet('Group_inbox', 'notice_id', array($this->id));
1465 foreach ($gis[$this->id] as $gi)
1467 $ids[] = $gi->group_id;
1470 $groups = User_group::multiGet('id', $ids);
1472 $this->_groups = $groups->fetchAll();
1474 return $this->_groups;
1477 function _setGroups($groups)
1479 $this->_groups = $groups;
1483 * Convert a notice into an activity for export.
1485 * @param User $cur Current user
1487 * @return Activity activity object representing this Notice.
1490 function asActivity($cur)
1492 $act = self::cacheGet(Cache::codeKey('notice:as-activity:'.$this->id));
1497 $act = new Activity();
1499 if (Event::handle('StartNoticeAsActivity', array($this, &$act))) {
1501 $act->id = $this->uri;
1502 $act->time = strtotime($this->created);
1503 $act->link = $this->bestUrl();
1504 $act->content = common_xml_safe_str($this->rendered);
1505 $act->title = common_xml_safe_str($this->content);
1507 $profile = $this->getProfile();
1509 $act->actor = ActivityObject::fromProfile($profile);
1510 $act->actor->extra[] = $profile->profileInfo($cur);
1512 $act->verb = $this->verb;
1514 if ($this->repeat_of) {
1515 $repeated = Notice::staticGet('id', $this->repeat_of);
1516 $act->objects[] = $repeated->asActivity($cur);
1518 $act->objects[] = ActivityObject::fromNotice($this);
1521 // XXX: should this be handled by default processing for object entry?
1525 $tags = $this->getTags();
1527 foreach ($tags as $tag) {
1528 $cat = new AtomCategory();
1531 $act->categories[] = $cat;
1535 // XXX: use Atom Media and/or File activity objects instead
1537 $attachments = $this->attachments();
1539 foreach ($attachments as $attachment) {
1540 $enclosure = $attachment->getEnclosure();
1542 $act->enclosures[] = $enclosure;
1546 $ctx = new ActivityContext();
1548 if (!empty($this->reply_to)) {
1549 $reply = Notice::staticGet('id', $this->reply_to);
1550 if (!empty($reply)) {
1551 $ctx->replyToID = $reply->uri;
1552 $ctx->replyToUrl = $reply->bestUrl();
1556 $ctx->location = $this->getLocation();
1560 if (!empty($this->conversation)) {
1561 $conv = Conversation::staticGet('id', $this->conversation);
1562 if (!empty($conv)) {
1563 $ctx->conversation = $conv->uri;
1567 $reply_ids = $this->getReplies();
1569 foreach ($reply_ids as $id) {
1570 $rprofile = Profile::staticGet('id', $id);
1571 if (!empty($rprofile)) {
1572 $ctx->attention[] = $rprofile->getUri();
1576 $groups = $this->getGroups();
1578 foreach ($groups as $group) {
1579 $ctx->attention[] = $group->getUri();
1582 // XXX: deprecated; use ActivityVerb::SHARE instead
1586 if (!empty($this->repeat_of)) {
1587 $repeat = Notice::staticGet('id', $this->repeat_of);
1588 if (!empty($repeat)) {
1589 $ctx->forwardID = $repeat->uri;
1590 $ctx->forwardUrl = $repeat->bestUrl();
1594 $act->context = $ctx;
1598 $atom_feed = $profile->getAtomFeed();
1600 if (!empty($atom_feed)) {
1602 $act->source = new ActivitySource();
1604 // XXX: we should store the actual feed ID
1606 $act->source->id = $atom_feed;
1608 // XXX: we should store the actual feed title
1610 $act->source->title = $profile->getBestName();
1612 $act->source->links['alternate'] = $profile->profileurl;
1613 $act->source->links['self'] = $atom_feed;
1615 $act->source->icon = $profile->avatarUrl(AVATAR_PROFILE_SIZE);
1617 $notice = $profile->getCurrentNotice();
1619 if (!empty($notice)) {
1620 $act->source->updated = self::utcDate($notice->created);
1623 $user = User::staticGet('id', $profile->id);
1625 if (!empty($user)) {
1626 $act->source->links['license'] = common_config('license', 'url');
1630 if ($this->isLocal()) {
1631 $act->selfLink = common_local_url('ApiStatusesShow', array('id' => $this->id,
1632 'format' => 'atom'));
1633 $act->editLink = $act->selfLink;
1636 Event::handle('EndNoticeAsActivity', array($this, &$act));
1639 self::cacheSet(Cache::codeKey('notice:as-activity:'.$this->id), $act);
1644 // This has gotten way too long. Needs to be sliced up into functional bits
1645 // or ideally exported to a utility class.
1647 function asAtomEntry($namespace=false,
1652 $act = $this->asActivity($cur);
1653 $act->extra[] = $this->noticeInfo($cur);
1654 return $act->asString($namespace, $author, $source);
1658 * Extra notice info for atom entries
1660 * Clients use some extra notice info in the atom stream.
1661 * This gives it to them.
1663 * @param User $cur Current user
1665 * @return array representation of <statusnet:notice_info> element
1668 function noticeInfo($cur)
1670 // local notice ID (useful to clients for ordering)
1672 $noticeInfoAttr = array('local_id' => $this->id);
1676 $ns = $this->getSource();
1679 $noticeInfoAttr['source'] = $ns->code;
1680 if (!empty($ns->url)) {
1681 $noticeInfoAttr['source_link'] = $ns->url;
1682 if (!empty($ns->name)) {
1683 $noticeInfoAttr['source'] = '<a href="'
1684 . htmlspecialchars($ns->url)
1685 . '" rel="nofollow">'
1686 . htmlspecialchars($ns->name)
1692 // favorite and repeated
1695 $noticeInfoAttr['favorite'] = ($cur->hasFave($this)) ? "true" : "false";
1696 $cp = $cur->getProfile();
1697 $noticeInfoAttr['repeated'] = ($cp->hasRepeated($this->id)) ? "true" : "false";
1700 if (!empty($this->repeat_of)) {
1701 $noticeInfoAttr['repeat_of'] = $this->repeat_of;
1704 return array('statusnet:notice_info', $noticeInfoAttr, null);
1708 * Returns an XML string fragment with a reference to a notice as an
1709 * Activity Streams noun object with the given element type.
1711 * Assumes that 'activity' namespace has been previously defined.
1713 * @param string $element one of 'subject', 'object', 'target'
1717 function asActivityNoun($element)
1719 $noun = ActivityObject::fromNotice($this);
1720 return $noun->asString('activity:' . $element);
1725 if (!empty($this->url)) {
1727 } else if (!empty($this->uri) && preg_match('/^https?:/', $this->uri)) {
1730 return common_local_url('shownotice',
1731 array('notice' => $this->id));
1737 * Determine which notice, if any, a new notice is in reply to.
1739 * For conversation tracking, we try to see where this notice fits
1740 * in the tree. Rough algorithm is:
1742 * if (reply_to is set and valid) {
1744 * } else if ((source not API or Web) and (content starts with "T NAME" or "@name ")) {
1745 * return ID of last notice by initial @name in content;
1748 * Note that all @nickname instances will still be used to save "reply" records,
1749 * so the notice shows up in the mentioned users' "replies" tab.
1751 * @param integer $reply_to ID passed in by Web or API
1752 * @param integer $profile_id ID of author
1753 * @param string $source Source tag, like 'web' or 'gwibber'
1754 * @param string $content Final notice content
1756 * @return integer ID of replied-to notice, or null for not a reply.
1759 static function getReplyTo($reply_to, $profile_id, $source, $content)
1761 static $lb = array('xmpp', 'mail', 'sms', 'omb');
1763 // If $reply_to is specified, we check that it exists, and then
1764 // return it if it does
1766 if (!empty($reply_to)) {
1767 $reply_notice = Notice::staticGet('id', $reply_to);
1768 if (!empty($reply_notice)) {
1769 return $reply_notice;
1773 // If it's not a "low bandwidth" source (one where you can't set
1774 // a reply_to argument), we return. This is mostly web and API
1777 if (!in_array($source, $lb)) {
1781 // Is there an initial @ or T?
1783 if (preg_match('/^T ([A-Z0-9]{1,64}) /', $content, $match) ||
1784 preg_match('/^@([a-z0-9]{1,64})\s+/', $content, $match)) {
1785 $nickname = common_canonical_nickname($match[1]);
1790 // Figure out who that is.
1792 $sender = Profile::staticGet('id', $profile_id);
1793 if (empty($sender)) {
1797 $recipient = common_relative_profile($sender, $nickname, common_sql_now());
1799 if (empty($recipient)) {
1803 // Get their last notice
1805 $last = $recipient->getCurrentNotice();
1807 if (!empty($last)) {
1814 static function maxContent()
1816 $contentlimit = common_config('notice', 'contentlimit');
1817 // null => use global limit (distinct from 0!)
1818 if (is_null($contentlimit)) {
1819 $contentlimit = common_config('site', 'textlimit');
1821 return $contentlimit;
1824 static function contentTooLong($content)
1826 $contentlimit = self::maxContent();
1827 return ($contentlimit > 0 && !empty($content) && (mb_strlen($content) > $contentlimit));
1830 function getLocation()
1834 if (!empty($this->location_id) && !empty($this->location_ns)) {
1835 $location = Location::fromId($this->location_id, $this->location_ns);
1838 if (is_null($location)) { // no ID, or Location::fromId() failed
1839 if (!empty($this->lat) && !empty($this->lon)) {
1840 $location = Location::fromLatLon($this->lat, $this->lon);
1848 * Convenience function for posting a repeat of an existing message.
1850 * @param int $repeater_id: profile ID of user doing the repeat
1851 * @param string $source: posting source key, eg 'web', 'api', etc
1854 * @throws Exception on failure or permission problems
1856 function repeat($repeater_id, $source)
1858 $author = Profile::staticGet('id', $this->profile_id);
1860 // TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
1861 // TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
1862 $content = sprintf(_('RT @%1$s %2$s'),
1866 $maxlen = common_config('site', 'textlimit');
1867 if ($maxlen > 0 && mb_strlen($content) > $maxlen) {
1868 // Web interface and current Twitter API clients will
1869 // pull the original notice's text, but some older
1870 // clients and RSS/Atom feeds will see this trimmed text.
1872 // Unfortunately this is likely to lose tags or URLs
1873 // at the end of long notices.
1874 $content = mb_substr($content, 0, $maxlen - 4) . ' ...';
1877 // Scope is same as this one's
1879 return self::saveNew($repeater_id,
1882 array('repeat_of' => $this->id,
1883 'scope' => $this->scope));
1886 // These are supposed to be in chron order!
1888 function repeatStream($limit=100)
1890 $cache = Cache::instance();
1892 if (empty($cache)) {
1893 $ids = $this->_repeatStreamDirect($limit);
1895 $idstr = $cache->get(Cache::key('notice:repeats:'.$this->id));
1896 if ($idstr !== false) {
1897 if (empty($idstr)) {
1900 $ids = explode(',', $idstr);
1903 $ids = $this->_repeatStreamDirect(100);
1904 $cache->set(Cache::key('notice:repeats:'.$this->id), implode(',', $ids));
1907 // We do a max of 100, so slice down to limit
1908 $ids = array_slice($ids, 0, $limit);
1912 return NoticeStream::getStreamByIds($ids);
1915 function _repeatStreamDirect($limit)
1917 $notice = new Notice();
1919 $notice->selectAdd(); // clears it
1920 $notice->selectAdd('id');
1922 $notice->repeat_of = $this->id;
1924 $notice->orderBy('created, id'); // NB: asc!
1926 if (!is_null($limit)) {
1927 $notice->limit(0, $limit);
1930 return $notice->fetchAll('id');
1933 function locationOptions($lat, $lon, $location_id, $location_ns, $profile = null)
1937 if (!empty($location_id) && !empty($location_ns)) {
1938 $options['location_id'] = $location_id;
1939 $options['location_ns'] = $location_ns;
1941 $location = Location::fromId($location_id, $location_ns);
1943 if (!empty($location)) {
1944 $options['lat'] = $location->lat;
1945 $options['lon'] = $location->lon;
1948 } else if (!empty($lat) && !empty($lon)) {
1949 $options['lat'] = $lat;
1950 $options['lon'] = $lon;
1952 $location = Location::fromLatLon($lat, $lon);
1954 if (!empty($location)) {
1955 $options['location_id'] = $location->location_id;
1956 $options['location_ns'] = $location->location_ns;
1958 } else if (!empty($profile)) {
1959 if (isset($profile->lat) && isset($profile->lon)) {
1960 $options['lat'] = $profile->lat;
1961 $options['lon'] = $profile->lon;
1964 if (isset($profile->location_id) && isset($profile->location_ns)) {
1965 $options['location_id'] = $profile->location_id;
1966 $options['location_ns'] = $profile->location_ns;
1973 function clearReplies()
1975 $replyNotice = new Notice();
1976 $replyNotice->reply_to = $this->id;
1978 //Null any notices that are replies to this notice
1980 if ($replyNotice->find()) {
1981 while ($replyNotice->fetch()) {
1982 $orig = clone($replyNotice);
1983 $replyNotice->reply_to = null;
1984 $replyNotice->update($orig);
1990 $reply = new Reply();
1991 $reply->notice_id = $this->id;
1993 if ($reply->find()) {
1994 while($reply->fetch()) {
1995 self::blow('reply:stream:%d', $reply->profile_id);
2003 function clearFiles()
2005 $f2p = new File_to_post();
2007 $f2p->post_id = $this->id;
2010 while ($f2p->fetch()) {
2014 // FIXME: decide whether to delete File objects
2015 // ...and related (actual) files
2018 function clearRepeats()
2020 $repeatNotice = new Notice();
2021 $repeatNotice->repeat_of = $this->id;
2023 //Null any notices that are repeats of this notice
2025 if ($repeatNotice->find()) {
2026 while ($repeatNotice->fetch()) {
2027 $orig = clone($repeatNotice);
2028 $repeatNotice->repeat_of = null;
2029 $repeatNotice->update($orig);
2034 function clearFaves()
2037 $fave->notice_id = $this->id;
2039 if ($fave->find()) {
2040 while ($fave->fetch()) {
2041 self::blow('fave:ids_by_user_own:%d', $fave->user_id);
2042 self::blow('fave:ids_by_user_own:%d;last', $fave->user_id);
2043 self::blow('fave:ids_by_user:%d', $fave->user_id);
2044 self::blow('fave:ids_by_user:%d;last', $fave->user_id);
2052 function clearTags()
2054 $tag = new Notice_tag();
2055 $tag->notice_id = $this->id;
2058 while ($tag->fetch()) {
2059 self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, Cache::keyize($tag->tag));
2060 self::blow('profile:notice_ids_tagged:%d:%s;last', $this->profile_id, Cache::keyize($tag->tag));
2061 self::blow('notice_tag:notice_ids:%s', Cache::keyize($tag->tag));
2062 self::blow('notice_tag:notice_ids:%s;last', Cache::keyize($tag->tag));
2070 function clearGroupInboxes()
2072 $gi = new Group_inbox();
2074 $gi->notice_id = $this->id;
2077 while ($gi->fetch()) {
2078 self::blow('user_group:notice_ids:%d', $gi->group_id);
2086 function distribute()
2088 // We always insert for the author so they don't
2090 Event::handle('StartNoticeDistribute', array($this));
2092 $user = User::staticGet('id', $this->profile_id);
2093 if (!empty($user)) {
2094 Inbox::insertNotice($user->id, $this->id);
2097 if (common_config('queue', 'inboxes')) {
2098 // If there's a failure, we want to _force_
2099 // distribution at this point.
2101 $qm = QueueManager::get();
2102 $qm->enqueue($this, 'distrib');
2103 } catch (Exception $e) {
2104 // If the exception isn't transient, this
2105 // may throw more exceptions as DQH does
2106 // its own enqueueing. So, we ignore them!
2108 $handler = new DistribQueueHandler();
2109 $handler->handle($this);
2110 } catch (Exception $e) {
2111 common_log(LOG_ERR, "emergency redistribution resulted in " . $e->getMessage());
2113 // Re-throw so somebody smarter can handle it.
2117 $handler = new DistribQueueHandler();
2118 $handler->handle($this);
2124 $result = parent::insert();
2127 // Profile::hasRepeated() abuses pkeyGet(), so we
2128 // have to clear manually
2129 if (!empty($this->repeat_of)) {
2130 $c = self::memcache();
2132 $ck = self::multicacheKey('Notice',
2133 array('profile_id' => $this->profile_id,
2134 'repeat_of' => $this->repeat_of));
2144 * Get the source of the notice
2146 * @return Notice_source $ns A notice source object. 'code' is the only attribute
2147 * guaranteed to be populated.
2149 function getSource()
2151 $ns = new Notice_source();
2152 if (!empty($this->source)) {
2153 switch ($this->source) {
2160 $ns->code = $this->source;
2163 $ns = Notice_source::staticGet($this->source);
2165 $ns = new Notice_source();
2166 $ns->code = $this->source;
2167 $app = Oauth_application::staticGet('name', $this->source);
2169 $ns->name = $app->name;
2170 $ns->url = $app->source_url;
2180 * Determine whether the notice was locally created
2182 * @return boolean locality
2185 public function isLocal()
2187 return ($this->is_local == Notice::LOCAL_PUBLIC ||
2188 $this->is_local == Notice::LOCAL_NONPUBLIC);
2192 * Get the list of hash tags saved with this notice.
2194 * @return array of strings
2196 public function getTags()
2200 $keypart = sprintf('notice:tags:%d', $this->id);
2202 $tagstr = self::cacheGet($keypart);
2204 if ($tagstr !== false) {
2205 $tags = explode(',', $tagstr);
2207 $tag = new Notice_tag();
2208 $tag->notice_id = $this->id;
2210 while ($tag->fetch()) {
2211 $tags[] = $tag->tag;
2214 self::cacheSet($keypart, implode(',', $tags));
2220 static private function utcDate($dt)
2222 $dateStr = date('d F Y H:i:s', strtotime($dt));
2223 $d = new DateTime($dateStr, new DateTimeZone('UTC'));
2224 return $d->format(DATE_W3C);
2228 * Look up the creation timestamp for a given notice ID, even
2229 * if it's been deleted.
2232 * @return mixed string recorded creation timestamp, or false if can't be found
2234 public static function getAsTimestamp($id)
2240 $notice = Notice::staticGet('id', $id);
2242 return $notice->created;
2245 $deleted = Deleted_notice::staticGet('id', $id);
2247 return $deleted->created;
2254 * Build an SQL 'where' fragment for timestamp-based sorting from a since_id
2255 * parameter, matching notices posted after the given one (exclusive).
2257 * If the referenced notice can't be found, will return false.
2260 * @param string $idField
2261 * @param string $createdField
2262 * @return mixed string or false if no match
2264 public static function whereSinceId($id, $idField='id', $createdField='created')
2266 $since = Notice::getAsTimestamp($id);
2268 return sprintf("($createdField = '%s' and $idField > %d) or ($createdField > '%s')", $since, $id, $since);
2274 * Build an SQL 'where' fragment for timestamp-based sorting from a since_id
2275 * parameter, matching notices posted after the given one (exclusive), and
2276 * if necessary add it to the data object's query.
2278 * @param DB_DataObject $obj
2280 * @param string $idField
2281 * @param string $createdField
2282 * @return mixed string or false if no match
2284 public static function addWhereSinceId(DB_DataObject $obj, $id, $idField='id', $createdField='created')
2286 $since = self::whereSinceId($id, $idField, $createdField);
2288 $obj->whereAdd($since);
2293 * Build an SQL 'where' fragment for timestamp-based sorting from a max_id
2294 * parameter, matching notices posted before the given one (inclusive).
2296 * If the referenced notice can't be found, will return false.
2299 * @param string $idField
2300 * @param string $createdField
2301 * @return mixed string or false if no match
2303 public static function whereMaxId($id, $idField='id', $createdField='created')
2305 $max = Notice::getAsTimestamp($id);
2307 return sprintf("($createdField < '%s') or ($createdField = '%s' and $idField <= %d)", $max, $max, $id);
2313 * Build an SQL 'where' fragment for timestamp-based sorting from a max_id
2314 * parameter, matching notices posted before the given one (inclusive), and
2315 * if necessary add it to the data object's query.
2317 * @param DB_DataObject $obj
2319 * @param string $idField
2320 * @param string $createdField
2321 * @return mixed string or false if no match
2323 public static function addWhereMaxId(DB_DataObject $obj, $id, $idField='id', $createdField='created')
2325 $max = self::whereMaxId($id, $idField, $createdField);
2327 $obj->whereAdd($max);
2333 if (common_config('public', 'localonly')) {
2334 return ($this->is_local == Notice::LOCAL_PUBLIC);
2336 return (($this->is_local != Notice::LOCAL_NONPUBLIC) &&
2337 ($this->is_local != Notice::GATEWAY));
2342 * Check that the given profile is allowed to read, respond to, or otherwise
2343 * act on this notice.
2345 * The $scope member is a bitmask of scopes, representing a logical AND of the
2346 * scope requirement. So, 0x03 (Notice::ADDRESSEE_SCOPE | Notice::SITE_SCOPE) means
2347 * "only visible to people who are mentioned in the notice AND are users on this site."
2348 * Users on the site who are not mentioned in the notice will not be able to see the
2351 * @param Profile $profile The profile to check; pass null to check for public/unauthenticated users.
2353 * @return boolean whether the profile is in the notice's scope
2355 function inScope($profile)
2357 if (is_null($profile)) {
2358 $keypart = sprintf('notice:in-scope-for:%d:null', $this->id);
2360 $keypart = sprintf('notice:in-scope-for:%d:%d', $this->id, $profile->id);
2363 $result = self::cacheGet($keypart);
2365 if ($result === false) {
2367 if (Event::handle('StartNoticeInScope', array($this, $profile, &$bResult))) {
2368 $bResult = $this->_inScope($profile);
2369 Event::handle('EndNoticeInScope', array($this, $profile, &$bResult));
2371 $result = ($bResult) ? 1 : 0;
2372 self::cacheSet($keypart, $result, 0, 300);
2375 return ($result == 1) ? true : false;
2378 protected function _inScope($profile)
2380 if (!is_null($this->scope)) {
2381 $scope = $this->scope;
2383 $scope = self::defaultScope();
2386 // If there's no scope, anyone (even anon) is in scope.
2388 if ($scope == 0) { // Not private
2390 return !$this->isHiddenSpam($profile);
2392 } else { // Private, somehow
2394 // If there's scope, anon cannot be in scope
2396 if (empty($profile)) {
2400 // Author is always in scope
2402 if ($this->profile_id == $profile->id) {
2406 // Only for users on this site
2408 if ($scope & Notice::SITE_SCOPE) {
2409 $user = $profile->getUser();
2415 // Only for users mentioned in the notice
2417 if ($scope & Notice::ADDRESSEE_SCOPE) {
2419 $repl = Reply::pkeyGet(array('notice_id' => $this->id,
2420 'profile_id' => $profile->id));
2427 // Only for members of the given group
2429 if ($scope & Notice::GROUP_SCOPE) {
2431 // XXX: just query for the single membership
2433 $groups = $this->getGroups();
2437 foreach ($groups as $group) {
2438 if ($profile->isMember($group)) {
2449 // Only for followers of the author
2453 if ($scope & Notice::FOLLOWER_SCOPE) {
2455 $author = $this->getProfile();
2457 if (!Subscription::exists($profile, $author)) {
2462 return !$this->isHiddenSpam($profile);
2466 function isHiddenSpam($profile) {
2468 // Hide posts by silenced users from everyone but moderators.
2470 if (common_config('notice', 'hidespam')) {
2472 $author = $this->getProfile();
2474 if ($author->hasRole(Profile_role::SILENCED)) {
2475 if (empty($profile) || !$profile->hasRole(Profile_role::MODERATOR)) {
2484 static function groupsFromText($text, $profile)
2488 /* extract all !group */
2489 $count = preg_match_all('/(?:^|\s)!(' . Nickname::DISPLAY_FMT . ')/',
2497 foreach (array_unique($match[1]) as $nickname) {
2498 $group = User_group::getForNickname($nickname, $profile);
2499 if (!empty($group) && $profile->isMember($group)) {
2500 $groups[] = $group->id;
2507 protected $_original = -1;
2509 function getOriginal()
2511 if (is_int($this->_original) && $this->_original == -1) {
2512 if (empty($this->reply_to)) {
2513 $this->_original = null;
2515 $this->_original = Notice::staticGet('id', $this->reply_to);
2518 return $this->_original;
2522 * Magic function called at serialize() time.
2524 * We use this to drop a couple process-specific references
2525 * from DB_DataObject which can cause trouble in future
2528 * @return array of variable names to include in serialization.
2533 $vars = parent::__sleep();
2534 $skip = array('_original', '_profile', '_groups', '_attachments', '_faves', '_replies', '_repeats');
2535 return array_diff($vars, $skip);
2538 static function defaultScope()
2540 $scope = common_config('notice', 'defaultscope');
2541 if (is_null($scope)) {
2542 if (common_config('site', 'private')) {
2551 static function fillProfiles($notices)
2553 $map = self::getProfiles($notices);
2555 foreach ($notices as $notice) {
2556 if (array_key_exists($notice->profile_id, $map)) {
2557 $notice->_setProfile($map[$notice->profile_id]);
2561 return array_values($map);
2564 static function getProfiles(&$notices)
2567 foreach ($notices as $notice) {
2568 $ids[] = $notice->profile_id;
2571 $ids = array_unique($ids);
2573 return Memcached_DataObject::pivotGet('Profile', 'id', $ids);
2576 static function fillGroups(&$notices)
2578 $ids = self::_idsOf($notices);
2580 $gis = Memcached_DataObject::listGet('Group_inbox', 'notice_id', $ids);
2584 foreach ($gis as $id => $gi)
2588 $gids[] = $g->group_id;
2592 $gids = array_unique($gids);
2594 $group = Memcached_DataObject::pivotGet('User_group', 'id', $gids);
2596 foreach ($notices as $notice)
2599 $gi = $gis[$notice->id];
2600 foreach ($gi as $g) {
2601 $grps[] = $group[$g->group_id];
2603 $notice->_setGroups($grps);
2607 static function _idsOf(&$notices)
2610 foreach ($notices as $notice) {
2611 $ids[] = $notice->id;
2613 $ids = array_unique($ids);
2617 static function fillAttachments(&$notices)
2619 $ids = self::_idsOf($notices);
2621 $f2pMap = Memcached_DataObject::listGet('File_to_post', 'post_id', $ids);
2625 foreach ($f2pMap as $noticeId => $f2ps) {
2626 foreach ($f2ps as $f2p) {
2627 $fileIds[] = $f2p->file_id;
2631 $fileIds = array_unique($fileIds);
2633 $fileMap = Memcached_DataObject::pivotGet('File', 'id', $fileIds);
2635 foreach ($notices as $notice)
2638 $f2ps = $f2pMap[$notice->id];
2639 foreach ($f2ps as $f2p) {
2640 $files[] = $fileMap[$f2p->file_id];
2642 $notice->_setAttachments($files);
2649 * All faves of this notice
2651 * @return array Array of Fave objects
2656 if (isset($this->_faves) && is_array($this->_faves)) {
2657 return $this->_faves;
2659 $faveMap = Memcached_DataObject::listGet('Fave', 'notice_id', array($this->id));
2660 $this->_faves = $faveMap[$this->id];
2661 return $this->_faves;
2664 function _setFaves($faves)
2666 $this->_faves = $faves;
2669 static function fillFaves(&$notices)
2671 $ids = self::_idsOf($notices);
2672 $faveMap = Memcached_DataObject::listGet('Fave', 'notice_id', $ids);
2675 foreach ($faveMap as $id => $faves) {
2676 $cnt += count($faves);
2677 if (count($faves) > 0) {
2681 foreach ($notices as $notice) {
2682 $faves = $faveMap[$notice->id];
2683 $notice->_setFaves($faves);
2687 static function fillReplies(&$notices)
2689 $ids = self::_idsOf($notices);
2690 $replyMap = Memcached_DataObject::listGet('Reply', 'notice_id', $ids);
2691 foreach ($notices as $notice) {
2692 $replies = $replyMap[$notice->id];
2694 foreach ($replies as $reply) {
2695 $ids[] = $reply->profile_id;
2697 $notice->_setReplies($ids);
2701 protected $_repeats;
2703 function getRepeats()
2705 if (isset($this->_repeats) && is_array($this->_repeats)) {
2706 return $this->_repeats;
2708 $repeatMap = Memcached_DataObject::listGet('Notice', 'repeat_of', array($this->id));
2709 $this->_repeats = $repeatMap[$this->id];
2710 return $this->_repeats;
2713 function _setRepeats($repeats)
2715 $this->_repeats = $repeats;
2718 static function fillRepeats(&$notices)
2720 $ids = self::_idsOf($notices);
2721 $repeatMap = Memcached_DataObject::listGet('Notice', 'repeat_of', $ids);
2722 foreach ($notices as $notice) {
2723 $repeats = $repeatMap[$notice->id];
2724 $notice->_setRepeats($repeats);