3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2008, 2009, 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', 200);
50 define('MAX_BOXCARS', 128);
52 class Notice extends Memcached_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)
77 function staticGet($k,$v=NULL)
79 return Memcached_DataObject::staticGet('Notice',$k,$v);
82 /* the code above is auto generated do not remove the tag below */
86 const LOCAL_PUBLIC = 1;
88 const LOCAL_NONPUBLIC = -1;
93 $profile = Profile::staticGet('id', $this->profile_id);
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));
106 // For auditing purposes, save a record that the notice
109 // @fixme we have some cases where things get re-run and so the
111 $deleted = Deleted_notice::staticGet('id', $this->id);
114 $deleted = Deleted_notice::staticGet('uri', $this->uri);
118 $deleted = new Deleted_notice();
120 $deleted->id = $this->id;
121 $deleted->profile_id = $this->profile_id;
122 $deleted->uri = $this->uri;
123 $deleted->created = $this->created;
124 $deleted->deleted = common_sql_now();
129 if (Event::handle('NoticeDeleteRelated', array($this))) {
131 // Clear related records
133 $this->clearReplies();
134 $this->clearRepeats();
137 $this->clearGroupInboxes();
140 // NOTE: we don't clear inboxes
141 // NOTE: we don't clear queue items
144 $result = parent::delete();
146 $this->blowOnDelete();
151 * Extract #hashtags from this notice's content and save them to the database.
155 /* extract all #hastags */
156 $count = preg_match_all('/(?:^|\s)#([\pL\pN_\-\.]{1,64})/u', strtolower($this->content), $match);
161 /* Add them to the database */
162 return $this->saveKnownTags($match[1]);
166 * Record the given set of hash tags in the db for this notice.
167 * Given tag strings will be normalized and checked for dupes.
169 function saveKnownTags($hashtags)
171 //turn each into their canonical tag
172 //this is needed to remove dupes before saving e.g. #hash.tag = #hashtag
173 for($i=0; $i<count($hashtags); $i++) {
174 /* elide characters we don't want in the tag */
175 $hashtags[$i] = common_canonical_tag($hashtags[$i]);
178 foreach(array_unique($hashtags) as $hashtag) {
179 $this->saveTag($hashtag);
180 self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, $hashtag);
186 * Record a single hash tag as associated with this notice.
187 * Tag format and uniqueness must be validated by caller.
189 function saveTag($hashtag)
191 $tag = new Notice_tag();
192 $tag->notice_id = $this->id;
193 $tag->tag = $hashtag;
194 $tag->created = $this->created;
195 $id = $tag->insert();
198 // TRANS: Server exception. %s are the error details.
199 throw new ServerException(sprintf(_('Database error inserting hashtag: %s'),
200 $last_error->message));
204 // if it's saved, blow its cache
205 $tag->blowCache(false);
209 * Save a new notice and push it out to subscribers' inboxes.
210 * Poster's permissions are checked before sending.
212 * @param int $profile_id Profile ID of the poster
213 * @param string $content source message text; links may be shortened
214 * per current user's preference
215 * @param string $source source key ('web', 'api', etc)
216 * @param array $options Associative array of optional properties:
217 * string 'created' timestamp of notice; defaults to now
218 * int 'is_local' source/gateway ID, one of:
219 * Notice::LOCAL_PUBLIC - Local, ok to appear in public timeline
220 * Notice::REMOTE_OMB - Sent from a remote OMB service;
221 * hide from public timeline but show in
222 * local "and friends" timelines
223 * Notice::LOCAL_NONPUBLIC - Local, but hide from public timeline
224 * Notice::GATEWAY - From another non-OMB service;
225 * will not appear in public views
226 * float 'lat' decimal latitude for geolocation
227 * float 'lon' decimal longitude for geolocation
228 * int 'location_id' geoname identifier
229 * int 'location_ns' geoname namespace to interpret location_id
230 * int 'reply_to'; notice ID this is a reply to
231 * int 'repeat_of'; notice ID this is a repeat of
232 * string 'uri' unique ID for notice; defaults to local notice URL
233 * string 'url' permalink to notice; defaults to local notice URL
234 * string 'rendered' rendered HTML version of content
235 * array 'replies' list of profile URIs for reply delivery in
236 * place of extracting @-replies from content.
237 * array 'groups' list of group IDs to deliver to, in place of
238 * extracting ! tags from content
239 * array 'tags' list of hashtag strings to save with the notice
240 * in place of extracting # tags from content
241 * array 'urls' list of attached/referred URLs to save with the
242 * notice in place of extracting links from content
243 * boolean 'distribute' whether to distribute the notice, default true
245 * @fixme tag override
248 * @throws ClientException
250 static function saveNew($profile_id, $content, $source, $options=null) {
251 $defaults = array('uri' => null,
255 'distribute' => true);
257 if (!empty($options)) {
258 $options = $options + $defaults;
264 if (!isset($is_local)) {
265 $is_local = Notice::LOCAL_PUBLIC;
268 $profile = Profile::staticGet('id', $profile_id);
269 $user = User::staticGet('id', $profile_id);
271 // Use the local user's shortening preferences, if applicable.
272 $final = $user->shortenLinks($content);
274 $final = common_shorten_links($content);
277 if (Notice::contentTooLong($final)) {
278 // TRANS: Client exception thrown if a notice contains too many characters.
279 throw new ClientException(_('Problem saving notice. Too long.'));
282 if (empty($profile)) {
283 // TRANS: Client exception thrown when trying to save a notice for an unknown user.
284 throw new ClientException(_('Problem saving notice. Unknown user.'));
287 if (common_config('throttle', 'enabled') && !Notice::checkEditThrottle($profile_id)) {
288 common_log(LOG_WARNING, 'Excessive posting by profile #' . $profile_id . '; throttled.');
289 // TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
290 throw new ClientException(_('Too many notices too fast; take a breather '.
291 'and post again in a few minutes.'));
294 if (common_config('site', 'dupelimit') > 0 && !Notice::checkDupes($profile_id, $final)) {
295 common_log(LOG_WARNING, 'Dupe posting by profile #' . $profile_id . '; throttled.');
296 // TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
297 throw new ClientException(_('Too many duplicate messages too quickly;'.
298 ' take a breather and post again in a few minutes.'));
301 if (!$profile->hasRight(Right::NEWNOTICE)) {
302 common_log(LOG_WARNING, "Attempted post from user disallowed to post: " . $profile->nickname);
304 // TRANS: Client exception thrown when a user tries to post while being banned.
305 throw new ClientException(_('You are banned from posting notices on this site.'), 403);
308 $notice = new Notice();
309 $notice->profile_id = $profile_id;
311 $autosource = common_config('public', 'autosource');
313 # Sandboxed are non-false, but not 1, either
315 if (!$profile->hasRight(Right::PUBLICNOTICE) ||
316 ($source && $autosource && in_array($source, $autosource))) {
317 $notice->is_local = Notice::LOCAL_NONPUBLIC;
319 $notice->is_local = $is_local;
322 if (!empty($created)) {
323 $notice->created = $created;
325 $notice->created = common_sql_now();
328 $notice->content = $final;
330 $notice->source = $source;
334 // Handle repeat case
336 if (isset($repeat_of)) {
337 $notice->repeat_of = $repeat_of;
339 $notice->reply_to = self::getReplyTo($reply_to, $profile_id, $source, $final);
342 if (!empty($notice->reply_to)) {
343 $reply = Notice::staticGet('id', $notice->reply_to);
344 $notice->conversation = $reply->conversation;
347 if (!empty($lat) && !empty($lon)) {
352 if (!empty($location_ns) && !empty($location_id)) {
353 $notice->location_id = $location_id;
354 $notice->location_ns = $location_ns;
357 if (!empty($rendered)) {
358 $notice->rendered = $rendered;
360 $notice->rendered = common_render_content($final, $notice);
363 if (Event::handle('StartNoticeSave', array(&$notice))) {
365 // XXX: some of these functions write to the DB
367 $id = $notice->insert();
370 common_log_db_error($notice, 'INSERT', __FILE__);
371 // TRANS: Server exception thrown when a notice cannot be saved.
372 throw new ServerException(_('Problem saving notice.'));
375 // Update ID-dependent columns: URI, conversation
377 $orig = clone($notice);
382 $notice->uri = common_notice_uri($notice);
386 // If it's not part of a conversation, it's
387 // the beginning of a new conversation.
389 if (empty($notice->conversation)) {
390 $conv = Conversation::create();
391 $notice->conversation = $conv->id;
396 if (!$notice->update($orig)) {
397 common_log_db_error($notice, 'UPDATE', __FILE__);
398 // TRANS: Server exception thrown when a notice cannot be updated.
399 throw new ServerException(_('Problem saving notice.'));
405 # Clear the cache for subscribed users, so they'll update at next request
406 # XXX: someone clever could prepend instead of clearing the cache
408 $notice->blowOnInsert();
410 // Save per-notice metadata...
412 if (isset($replies)) {
413 $notice->saveKnownReplies($replies);
415 $notice->saveReplies();
419 $notice->saveKnownTags($tags);
424 // Note: groups may save tags, so must be run after tags are saved
425 // to avoid errors on duplicates.
426 if (isset($groups)) {
427 $notice->saveKnownGroups($groups);
429 $notice->saveGroups();
433 $notice->saveKnownUrls($urls);
439 // Prepare inbox delivery, may be queued to background.
440 $notice->distribute();
446 function blowOnInsert($conversation = false)
448 $this->blowStream('profile:notice_ids:%d', $this->profile_id);
450 if ($this->isPublic()) {
451 $this->blowStream('public');
454 // XXX: Before we were blowing the casche only if the notice id
455 // was not the root of the conversation. What to do now?
457 $this->blowStream('notice:conversation_ids:%d', $this->conversation);
459 if (!empty($this->repeat_of)) {
460 $this->blowStream('notice:repeats:%d', $this->repeat_of);
463 $original = Notice::staticGet('id', $this->repeat_of);
465 if (!empty($original)) {
466 $originalUser = User::staticGet('id', $original->profile_id);
467 if (!empty($originalUser)) {
468 $this->blowStream('user:repeats_of_me:%d', $originalUser->id);
472 $profile = Profile::staticGet($this->profile_id);
474 if (!empty($profile)) {
475 $profile->blowNoticeCount();
480 * Clear cache entries related to this notice at delete time.
481 * Necessary to avoid breaking paging on public, profile timelines.
483 function blowOnDelete()
485 $this->blowOnInsert();
487 self::blow('profile:notice_ids:%d;last', $this->profile_id);
489 if ($this->isPublic()) {
490 self::blow('public;last');
494 function blowStream()
496 $c = self::memcache();
502 $args = func_get_args();
504 $format = array_shift($args);
506 $keyPart = vsprintf($format, $args);
508 $cacheKey = Cache::key($keyPart);
510 $c->delete($cacheKey);
512 // delete the "last" stream, too, if this notice is
513 // older than the top of that stream
515 $lastKey = $cacheKey.';last';
517 $lastStr = $c->get($lastKey);
519 if ($lastStr !== false) {
520 $window = explode(',', $lastStr);
521 $lastID = $window[0];
522 $lastNotice = Notice::staticGet('id', $lastID);
523 if (empty($lastNotice) // just weird
524 || strtotime($lastNotice->created) >= strtotime($this->created)) {
525 $c->delete($lastKey);
530 /** save all urls in the notice to the db
532 * follow redirects and save all available file information
533 * (mimetype, date, size, oembed, etc.)
537 function saveUrls() {
538 if (common_config('attachments', 'process_links')) {
539 common_replace_urls_callback($this->content, array($this, 'saveUrl'), $this->id);
544 * Save the given URLs as related links/attachments to the db
546 * follow redirects and save all available file information
547 * (mimetype, date, size, oembed, etc.)
551 function saveKnownUrls($urls)
553 if (common_config('attachments', 'process_links')) {
554 // @fixme validation?
555 foreach (array_unique($urls) as $url) {
556 File::processNew($url, $this->id);
564 function saveUrl($url, $notice_id) {
565 File::processNew($url, $notice_id);
568 static function checkDupes($profile_id, $content) {
569 $profile = Profile::staticGet($profile_id);
570 if (empty($profile)) {
573 $notice = $profile->getNotices(0, NOTICE_CACHE_WINDOW);
574 if (!empty($notice)) {
576 while ($notice->fetch()) {
577 if (time() - strtotime($notice->created) >= common_config('site', 'dupelimit')) {
579 } else if ($notice->content == $content) {
584 # If we get here, oldest item in cache window is not
585 # old enough for dupe limit; do direct check against DB
586 $notice = new Notice();
587 $notice->profile_id = $profile_id;
588 $notice->content = $content;
589 $threshold = common_sql_date(time() - common_config('site', 'dupelimit'));
590 $notice->whereAdd(sprintf("created > '%s'", $notice->escape($threshold)));
592 $cnt = $notice->count();
596 static function checkEditThrottle($profile_id) {
597 $profile = Profile::staticGet($profile_id);
598 if (empty($profile)) {
602 $notice = $profile->getNotices(common_config('throttle', 'count') - 1, 1);
603 if ($notice && $notice->fetch()) {
604 # If the Nth notice was posted less than timespan seconds ago
605 if (time() - strtotime($notice->created) <= common_config('throttle', 'timespan')) {
610 # Either not N notices in the stream, OR the Nth was not posted within timespan seconds
614 function getUploadedAttachment() {
616 $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"';
617 $post->query($query);
619 if (empty($post->up) || empty($post->i)) {
622 $ret = array($post->up, $post->i);
628 function hasAttachments() {
630 $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);
631 $post->query($query);
633 $n_attachments = intval($post->n_attachments);
635 return $n_attachments;
638 function attachments() {
641 $f2p = new File_to_post;
642 $f2p->post_id = $this->id;
644 while ($f2p->fetch()) {
645 $f = File::staticGet($f2p->file_id);
654 function getStreamByIds($ids)
656 $cache = common_memcache();
658 if (!empty($cache)) {
660 foreach ($ids as $id) {
661 $n = Notice::staticGet('id', $id);
666 return new ArrayWrapper($notices);
668 $notice = new Notice();
670 //if no IDs requested, just return the notice object
673 $notice->whereAdd('id in (' . implode(', ', $ids) . ')');
679 while ($notice->fetch()) {
680 $temp[$notice->id] = clone($notice);
685 foreach ($ids as $id) {
686 if (array_key_exists($id, $temp)) {
687 $wrapped[] = $temp[$id];
691 return new ArrayWrapper($wrapped);
695 function publicStream($offset=0, $limit=20, $since_id=0, $max_id=0)
697 $ids = Notice::stream(array('Notice', '_publicStreamDirect'),
700 $offset, $limit, $since_id, $max_id);
701 return Notice::getStreamByIds($ids);
704 function _publicStreamDirect($offset=0, $limit=20, $since_id=0, $max_id=0)
706 $notice = new Notice();
708 $notice->selectAdd(); // clears it
709 $notice->selectAdd('id');
711 $notice->orderBy('created DESC, id DESC');
713 if (!is_null($offset)) {
714 $notice->limit($offset, $limit);
717 if (common_config('public', 'localonly')) {
718 $notice->whereAdd('is_local = ' . Notice::LOCAL_PUBLIC);
720 # -1 == blacklisted, -2 == gateway (i.e. Twitter)
721 $notice->whereAdd('is_local !='. Notice::LOCAL_NONPUBLIC);
722 $notice->whereAdd('is_local !='. Notice::GATEWAY);
725 Notice::addWhereSinceId($notice, $since_id);
726 Notice::addWhereMaxId($notice, $max_id);
730 if ($notice->find()) {
731 while ($notice->fetch()) {
732 $ids[] = $notice->id;
742 function conversationStream($id, $offset=0, $limit=20, $since_id=0, $max_id=0)
744 $ids = Notice::stream(array('Notice', '_conversationStreamDirect'),
746 'notice:conversation_ids:'.$id,
747 $offset, $limit, $since_id, $max_id);
749 return Notice::getStreamByIds($ids);
752 function _conversationStreamDirect($id, $offset=0, $limit=20, $since_id=0, $max_id=0)
754 $notice = new Notice();
756 $notice->selectAdd(); // clears it
757 $notice->selectAdd('id');
759 $notice->conversation = $id;
761 $notice->orderBy('created DESC, id DESC');
763 if (!is_null($offset)) {
764 $notice->limit($offset, $limit);
767 Notice::addWhereSinceId($notice, $since_id);
768 Notice::addWhereMaxId($notice, $max_id);
772 if ($notice->find()) {
773 while ($notice->fetch()) {
774 $ids[] = $notice->id;
785 * Is this notice part of an active conversation?
787 * @return boolean true if other messages exist in the same
788 * conversation, false if this is the only one
790 function hasConversation()
792 if (!empty($this->conversation)) {
793 $conversation = Notice::conversationStream(
799 if ($conversation->N > 0) {
807 * Pull up a full list of local recipients who will be getting
808 * this notice in their inbox. Results will be cached, so don't
809 * change the input data wily-nilly!
811 * @param array $groups optional list of Group objects;
812 * if left empty, will be loaded from group_inbox records
813 * @param array $recipient optional list of reply profile ids
814 * if left empty, will be loaded from reply records
815 * @return array associating recipient user IDs with an inbox source constant
817 function whoGets($groups=null, $recipients=null)
819 $c = self::memcache();
822 $ni = $c->get(common_cache_key('notice:who_gets:'.$this->id));
828 if (is_null($groups)) {
829 $groups = $this->getGroups();
832 if (is_null($recipients)) {
833 $recipients = $this->getReplies();
836 $users = $this->getSubscribedUsers();
838 // FIXME: kind of ignoring 'transitional'...
839 // we'll probably stop supporting inboxless mode
844 foreach ($users as $id) {
845 $ni[$id] = NOTICE_INBOX_SOURCE_SUB;
848 foreach ($groups as $group) {
849 $users = $group->getUserMembers();
850 foreach ($users as $id) {
851 if (!array_key_exists($id, $ni)) {
852 $ni[$id] = NOTICE_INBOX_SOURCE_GROUP;
857 foreach ($recipients as $recipient) {
858 if (!array_key_exists($recipient, $ni)) {
859 $ni[$recipient] = NOTICE_INBOX_SOURCE_REPLY;
863 // Exclude any deleted, non-local, or blocking recipients.
864 $profile = $this->getProfile();
865 $originalProfile = null;
866 if ($this->repeat_of) {
867 // Check blocks against the original notice's poster as well.
868 $original = Notice::staticGet('id', $this->repeat_of);
870 $originalProfile = $original->getProfile();
873 foreach ($ni as $id => $source) {
874 $user = User::staticGet('id', $id);
875 if (empty($user) || $user->hasBlocked($profile) ||
876 ($originalProfile && $user->hasBlocked($originalProfile))) {
882 // XXX: pack this data better
883 $c->set(common_cache_key('notice:who_gets:'.$this->id), $ni);
890 * Adds this notice to the inboxes of each local user who should receive
891 * it, based on author subscriptions, group memberships, and @-replies.
893 * Warning: running a second time currently will make items appear
894 * multiple times in users' inboxes.
896 * @fixme make more robust against errors
897 * @fixme break up massive deliveries to smaller background tasks
899 * @param array $groups optional list of Group objects;
900 * if left empty, will be loaded from group_inbox records
901 * @param array $recipient optional list of reply profile ids
902 * if left empty, will be loaded from reply records
904 function addToInboxes($groups=null, $recipients=null)
906 $ni = $this->whoGets($groups, $recipients);
908 $ids = array_keys($ni);
910 // We remove the author (if they're a local user),
911 // since we'll have already done this in distribute()
913 $i = array_search($this->profile_id, $ids);
921 Inbox::bulkInsert($this->id, $ids);
926 function getSubscribedUsers()
930 if(common_config('db','quote_identifiers'))
931 $user_table = '"user"';
932 else $user_table = 'user';
936 'FROM '. $user_table .' JOIN subscription '.
937 'ON '. $user_table .'.id = subscription.subscriber ' .
938 'WHERE subscription.subscribed = %d ';
940 $user->query(sprintf($qry, $this->profile_id));
944 while ($user->fetch()) {
954 * Record this notice to the given group inboxes for delivery.
955 * Overrides the regular parsing of !group markup.
957 * @param string $group_ids
958 * @fixme might prefer URIs as identifiers, as for replies?
959 * best with generalizations on user_group to support
960 * remote groups better.
962 function saveKnownGroups($group_ids)
964 if (!is_array($group_ids)) {
965 // TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
966 throw new ServerException(_('Bad type provided to saveKnownGroups.'));
970 foreach (array_unique($group_ids) as $id) {
971 $group = User_group::staticGet('id', $id);
973 common_log(LOG_ERR, "Local delivery to group id $id, $group->nickname");
974 $result = $this->addToGroupInbox($group);
976 common_log_db_error($gi, 'INSERT', __FILE__);
979 // @fixme should we save the tags here or not?
980 $groups[] = clone($group);
982 common_log(LOG_ERR, "Local delivery to group id $id skipped, doesn't exist");
990 * Parse !group delivery and record targets into group_inbox.
991 * @return array of Group objects
993 function saveGroups()
995 // Don't save groups for repeats
997 if (!empty($this->repeat_of)) {
1003 /* extract all !group */
1004 $count = preg_match_all('/(?:^|\s)!(' . Nickname::DISPLAY_FMT . ')/',
1005 strtolower($this->content),
1011 $profile = $this->getProfile();
1013 /* Add them to the database */
1015 foreach (array_unique($match[1]) as $nickname) {
1016 /* XXX: remote groups. */
1017 $group = User_group::getForNickname($nickname, $profile);
1019 if (empty($group)) {
1023 // we automatically add a tag for every group name, too
1025 $tag = Notice_tag::pkeyGet(array('tag' => common_canonical_tag($nickname),
1026 'notice_id' => $this->id));
1028 if (is_null($tag)) {
1029 $this->saveTag($nickname);
1032 if ($profile->isMember($group)) {
1034 $result = $this->addToGroupInbox($group);
1037 common_log_db_error($gi, 'INSERT', __FILE__);
1040 $groups[] = clone($group);
1047 function addToGroupInbox($group)
1049 $gi = Group_inbox::pkeyGet(array('group_id' => $group->id,
1050 'notice_id' => $this->id));
1054 $gi = new Group_inbox();
1056 $gi->group_id = $group->id;
1057 $gi->notice_id = $this->id;
1058 $gi->created = $this->created;
1060 $result = $gi->insert();
1063 common_log_db_error($gi, 'INSERT', __FILE__);
1064 // TRANS: Server exception thrown when an update for a group inbox fails.
1065 throw new ServerException(_('Problem saving group inbox.'));
1068 self::blow('user_group:notice_ids:%d', $gi->group_id);
1075 * Save reply records indicating that this notice needs to be
1076 * delivered to the local users with the given URIs.
1078 * Since this is expected to be used when saving foreign-sourced
1079 * messages, we won't deliver to any remote targets as that's the
1080 * source service's responsibility.
1082 * Mail notifications etc will be handled later.
1084 * @param array of unique identifier URIs for recipients
1086 function saveKnownReplies($uris)
1092 $sender = Profile::staticGet($this->profile_id);
1094 foreach (array_unique($uris) as $uri) {
1096 $profile = Profile::fromURI($uri);
1098 if (empty($profile)) {
1099 common_log(LOG_WARNING, "Unable to determine profile for URI '$uri'");
1103 if ($profile->hasBlocked($sender)) {
1104 common_log(LOG_INFO, "Not saving reply to profile {$profile->id} ($uri) from sender {$sender->id} because of a block.");
1108 $reply = new Reply();
1110 $reply->notice_id = $this->id;
1111 $reply->profile_id = $profile->id;
1112 $reply->modified = $this->created;
1114 common_log(LOG_INFO, __METHOD__ . ": saving reply: notice $this->id to profile $profile->id");
1116 $id = $reply->insert();
1123 * Pull @-replies from this message's content in StatusNet markup format
1124 * and save reply records indicating that this message needs to be
1125 * delivered to those users.
1127 * Mail notifications to local profiles will be sent later.
1129 * @return array of integer profile IDs
1132 function saveReplies()
1134 // Don't save reply data for repeats
1136 if (!empty($this->repeat_of)) {
1140 $sender = Profile::staticGet($this->profile_id);
1142 // @todo ideally this parser information would only
1143 // be calculated once.
1145 $mentions = common_find_mentions($this->content, $this);
1149 // store replied only for first @ (what user/notice what the reply directed,
1150 // we assume first @ is it)
1152 foreach ($mentions as $mention) {
1154 foreach ($mention['mentioned'] as $mentioned) {
1156 // skip if they're already covered
1158 if (!empty($replied[$mentioned->id])) {
1162 // Don't save replies from blocked profile to local user
1164 $mentioned_user = User::staticGet('id', $mentioned->id);
1165 if (!empty($mentioned_user) && $mentioned_user->hasBlocked($sender)) {
1169 $reply = new Reply();
1171 $reply->notice_id = $this->id;
1172 $reply->profile_id = $mentioned->id;
1173 $reply->modified = $this->created;
1175 $id = $reply->insert();
1178 common_log_db_error($reply, 'INSERT', __FILE__);
1179 // TRANS: Server exception thrown when a reply cannot be saved.
1180 // TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
1181 throw new ServerException(sprintf(_('Could not save reply for %1$d, %2$d.'), $this->id, $mentioned->id));
1183 $replied[$mentioned->id] = 1;
1184 self::blow('reply:stream:%d', $mentioned->id);
1189 $recipientIds = array_keys($replied);
1191 return $recipientIds;
1195 * Pull the complete list of @-reply targets for this notice.
1197 * @return array of integer profile ids
1199 function getReplies()
1205 $reply = new Reply();
1206 $reply->selectAdd();
1207 $reply->selectAdd('profile_id');
1208 $reply->notice_id = $this->id;
1210 if ($reply->find()) {
1211 while($reply->fetch()) {
1212 $ids[] = $reply->profile_id;
1222 * Send e-mail notifications to local @-reply targets.
1224 * Replies must already have been saved; this is expected to be run
1225 * from the distrib queue handler.
1227 function sendReplyNotifications()
1229 // Don't send reply notifications for repeats
1231 if (!empty($this->repeat_of)) {
1235 $recipientIds = $this->getReplies();
1237 foreach ($recipientIds as $recipientId) {
1238 $user = User::staticGet('id', $recipientId);
1239 if (!empty($user)) {
1240 mail_notify_attn($user, $this);
1246 * Pull list of groups this notice needs to be delivered to,
1247 * as previously recorded by saveGroups() or saveKnownGroups().
1249 * @return array of Group objects
1251 function getGroups()
1253 // Don't save groups for repeats
1255 if (!empty($this->repeat_of)) {
1263 $gi = new Group_inbox();
1266 $gi->selectAdd('group_id');
1268 $gi->notice_id = $this->id;
1271 while ($gi->fetch()) {
1272 $group = User_group::staticGet('id', $gi->group_id);
1285 * Convert a notice into an activity for export.
1287 * @param User $cur Current user
1289 * @return Activity activity object representing this Notice.
1292 function asActivity($cur)
1294 $act = self::cacheGet(Cache::codeKey('notice:as-activity:'.$this->id));
1299 $act = new Activity();
1301 if (Event::handle('StartNoticeAsActivity', array($this, &$act))) {
1303 $profile = $this->getProfile();
1305 $act->actor = ActivityObject::fromProfile($profile);
1306 $act->actor->extra[] = $profile->profileInfo($cur);
1307 $act->verb = ActivityVerb::POST;
1308 $act->objects[] = ActivityObject::fromNotice($this);
1310 // XXX: should this be handled by default processing for object entry?
1312 $act->time = strtotime($this->created);
1313 $act->link = $this->bestUrl();
1315 $act->content = common_xml_safe_str($this->rendered);
1316 $act->id = $this->uri;
1317 $act->title = common_xml_safe_str($this->content);
1321 $tags = $this->getTags();
1323 foreach ($tags as $tag) {
1324 $cat = new AtomCategory();
1327 $act->categories[] = $cat;
1331 // XXX: use Atom Media and/or File activity objects instead
1333 $attachments = $this->attachments();
1335 foreach ($attachments as $attachment) {
1336 $enclosure = $attachment->getEnclosure();
1338 $act->enclosures[] = $enclosure;
1342 $ctx = new ActivityContext();
1344 if (!empty($this->reply_to)) {
1345 $reply = Notice::staticGet('id', $this->reply_to);
1346 if (!empty($reply)) {
1347 $ctx->replyToID = $reply->uri;
1348 $ctx->replyToUrl = $reply->bestUrl();
1352 $ctx->location = $this->getLocation();
1356 if (!empty($this->conversation)) {
1357 $conv = Conversation::staticGet('id', $this->conversation);
1358 if (!empty($conv)) {
1359 $ctx->conversation = $conv->uri;
1363 $reply_ids = $this->getReplies();
1365 foreach ($reply_ids as $id) {
1366 $profile = Profile::staticGet('id', $id);
1367 if (!empty($profile)) {
1368 $ctx->attention[] = $profile->getUri();
1372 $groups = $this->getGroups();
1374 foreach ($groups as $group) {
1375 $ctx->attention[] = $group->getUri();
1378 // XXX: deprecated; use ActivityVerb::SHARE instead
1382 if (!empty($this->repeat_of)) {
1383 $repeat = Notice::staticGet('id', $this->repeat_of);
1384 $ctx->forwardID = $repeat->uri;
1385 $ctx->forwardUrl = $repeat->bestUrl();
1388 $act->context = $ctx;
1392 $atom_feed = $profile->getAtomFeed();
1394 if (!empty($atom_feed)) {
1396 $act->source = new ActivitySource();
1398 // XXX: we should store the actual feed ID
1400 $act->source->id = $atom_feed;
1402 // XXX: we should store the actual feed title
1404 $act->source->title = $profile->getBestName();
1406 $act->source->links['alternate'] = $profile->profileurl;
1407 $act->source->links['self'] = $atom_feed;
1409 $act->source->icon = $profile->avatarUrl(AVATAR_PROFILE_SIZE);
1411 $notice = $profile->getCurrentNotice();
1413 if (!empty($notice)) {
1414 $act->source->updated = self::utcDate($notice->created);
1417 $user = User::staticGet('id', $profile->id);
1419 if (!empty($user)) {
1420 $act->source->links['license'] = common_config('license', 'url');
1424 if ($this->isLocal()) {
1425 $act->selfLink = common_local_url('ApiStatusesShow', array('id' => $this->id,
1426 'format' => 'atom'));
1427 $act->editLink = $act->selfLink;
1430 Event::handle('EndNoticeAsActivity', array($this, &$act));
1433 self::cacheSet(Cache::codeKey('notice:as-activity:'.$this->id), $act);
1438 // This has gotten way too long. Needs to be sliced up into functional bits
1439 // or ideally exported to a utility class.
1441 function asAtomEntry($namespace=false,
1446 $act = $this->asActivity($cur);
1447 $act->extra[] = $this->noticeInfo($cur);
1448 return $act->asString($namespace, $author, $source);
1452 * Extra notice info for atom entries
1454 * Clients use some extra notice info in the atom stream.
1455 * This gives it to them.
1457 * @param User $cur Current user
1459 * @return array representation of <statusnet:notice_info> element
1462 function noticeInfo($cur)
1464 // local notice ID (useful to clients for ordering)
1466 $noticeInfoAttr = array('local_id' => $this->id);
1470 $ns = $this->getSource();
1473 $noticeInfoAttr['source'] = $ns->code;
1474 if (!empty($ns->url)) {
1475 $noticeInfoAttr['source_link'] = $ns->url;
1476 if (!empty($ns->name)) {
1477 $noticeInfoAttr['source'] = '<a href="'
1478 . htmlspecialchars($ns->url)
1479 . '" rel="nofollow">'
1480 . htmlspecialchars($ns->name)
1486 // favorite and repeated
1489 $noticeInfoAttr['favorite'] = ($cur->hasFave($this)) ? "true" : "false";
1490 $cp = $cur->getProfile();
1491 $noticeInfoAttr['repeated'] = ($cp->hasRepeated($this->id)) ? "true" : "false";
1494 if (!empty($this->repeat_of)) {
1495 $noticeInfoAttr['repeat_of'] = $this->repeat_of;
1498 return array('statusnet:notice_info', $noticeInfoAttr, null);
1502 * Returns an XML string fragment with a reference to a notice as an
1503 * Activity Streams noun object with the given element type.
1505 * Assumes that 'activity' namespace has been previously defined.
1507 * @param string $element one of 'subject', 'object', 'target'
1511 function asActivityNoun($element)
1513 $noun = ActivityObject::fromNotice($this);
1514 return $noun->asString('activity:' . $element);
1519 if (!empty($this->url)) {
1521 } else if (!empty($this->uri) && preg_match('/^https?:/', $this->uri)) {
1524 return common_local_url('shownotice',
1525 array('notice' => $this->id));
1529 function stream($fn, $args, $cachekey, $offset=0, $limit=20, $since_id=0, $max_id=0)
1531 $cache = common_memcache();
1533 if (empty($cache) ||
1534 $since_id != 0 || $max_id != 0 ||
1536 ($offset + $limit) > NOTICE_CACHE_WINDOW) {
1537 return call_user_func_array($fn, array_merge($args, array($offset, $limit, $since_id,
1541 $idkey = common_cache_key($cachekey);
1543 $idstr = $cache->get($idkey);
1545 if ($idstr !== false) {
1546 // Cache hit! Woohoo!
1547 $window = explode(',', $idstr);
1548 $ids = array_slice($window, $offset, $limit);
1552 $laststr = $cache->get($idkey.';last');
1554 if ($laststr !== false) {
1555 $window = explode(',', $laststr);
1556 $last_id = $window[0];
1557 $new_ids = call_user_func_array($fn, array_merge($args, array(0, NOTICE_CACHE_WINDOW,
1558 $last_id, 0, null)));
1560 $new_window = array_merge($new_ids, $window);
1562 $new_windowstr = implode(',', $new_window);
1564 $result = $cache->set($idkey, $new_windowstr);
1565 $result = $cache->set($idkey . ';last', $new_windowstr);
1567 $ids = array_slice($new_window, $offset, $limit);
1572 $window = call_user_func_array($fn, array_merge($args, array(0, NOTICE_CACHE_WINDOW,
1575 $windowstr = implode(',', $window);
1577 $result = $cache->set($idkey, $windowstr);
1578 $result = $cache->set($idkey . ';last', $windowstr);
1580 $ids = array_slice($window, $offset, $limit);
1586 * Determine which notice, if any, a new notice is in reply to.
1588 * For conversation tracking, we try to see where this notice fits
1589 * in the tree. Rough algorithm is:
1591 * if (reply_to is set and valid) {
1593 * } else if ((source not API or Web) and (content starts with "T NAME" or "@name ")) {
1594 * return ID of last notice by initial @name in content;
1597 * Note that all @nickname instances will still be used to save "reply" records,
1598 * so the notice shows up in the mentioned users' "replies" tab.
1600 * @param integer $reply_to ID passed in by Web or API
1601 * @param integer $profile_id ID of author
1602 * @param string $source Source tag, like 'web' or 'gwibber'
1603 * @param string $content Final notice content
1605 * @return integer ID of replied-to notice, or null for not a reply.
1608 static function getReplyTo($reply_to, $profile_id, $source, $content)
1610 static $lb = array('xmpp', 'mail', 'sms', 'omb');
1612 // If $reply_to is specified, we check that it exists, and then
1613 // return it if it does
1615 if (!empty($reply_to)) {
1616 $reply_notice = Notice::staticGet('id', $reply_to);
1617 if (!empty($reply_notice)) {
1622 // If it's not a "low bandwidth" source (one where you can't set
1623 // a reply_to argument), we return. This is mostly web and API
1626 if (!in_array($source, $lb)) {
1630 // Is there an initial @ or T?
1632 if (preg_match('/^T ([A-Z0-9]{1,64}) /', $content, $match) ||
1633 preg_match('/^@([a-z0-9]{1,64})\s+/', $content, $match)) {
1634 $nickname = common_canonical_nickname($match[1]);
1639 // Figure out who that is.
1641 $sender = Profile::staticGet('id', $profile_id);
1642 if (empty($sender)) {
1646 $recipient = common_relative_profile($sender, $nickname, common_sql_now());
1648 if (empty($recipient)) {
1652 // Get their last notice
1654 $last = $recipient->getCurrentNotice();
1656 if (!empty($last)) {
1661 static function maxContent()
1663 $contentlimit = common_config('notice', 'contentlimit');
1664 // null => use global limit (distinct from 0!)
1665 if (is_null($contentlimit)) {
1666 $contentlimit = common_config('site', 'textlimit');
1668 return $contentlimit;
1671 static function contentTooLong($content)
1673 $contentlimit = self::maxContent();
1674 return ($contentlimit > 0 && !empty($content) && (mb_strlen($content) > $contentlimit));
1677 function getLocation()
1681 if (!empty($this->location_id) && !empty($this->location_ns)) {
1682 $location = Location::fromId($this->location_id, $this->location_ns);
1685 if (is_null($location)) { // no ID, or Location::fromId() failed
1686 if (!empty($this->lat) && !empty($this->lon)) {
1687 $location = Location::fromLatLon($this->lat, $this->lon);
1694 function repeat($repeater_id, $source)
1696 $author = Profile::staticGet('id', $this->profile_id);
1698 // TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
1699 // TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
1700 $content = sprintf(_('RT @%1$s %2$s'),
1704 $maxlen = common_config('site', 'textlimit');
1705 if ($maxlen > 0 && mb_strlen($content) > $maxlen) {
1706 // Web interface and current Twitter API clients will
1707 // pull the original notice's text, but some older
1708 // clients and RSS/Atom feeds will see this trimmed text.
1710 // Unfortunately this is likely to lose tags or URLs
1711 // at the end of long notices.
1712 $content = mb_substr($content, 0, $maxlen - 4) . ' ...';
1715 return self::saveNew($repeater_id, $content, $source,
1716 array('repeat_of' => $this->id));
1719 // These are supposed to be in chron order!
1721 function repeatStream($limit=100)
1723 $cache = common_memcache();
1725 if (empty($cache)) {
1726 $ids = $this->_repeatStreamDirect($limit);
1728 $idstr = $cache->get(common_cache_key('notice:repeats:'.$this->id));
1729 if ($idstr !== false) {
1730 $ids = explode(',', $idstr);
1732 $ids = $this->_repeatStreamDirect(100);
1733 $cache->set(common_cache_key('notice:repeats:'.$this->id), implode(',', $ids));
1736 // We do a max of 100, so slice down to limit
1737 $ids = array_slice($ids, 0, $limit);
1741 return Notice::getStreamByIds($ids);
1744 function _repeatStreamDirect($limit)
1746 $notice = new Notice();
1748 $notice->selectAdd(); // clears it
1749 $notice->selectAdd('id');
1751 $notice->repeat_of = $this->id;
1753 $notice->orderBy('created, id'); // NB: asc!
1755 if (!is_null($limit)) {
1756 $notice->limit(0, $limit);
1761 if ($notice->find()) {
1762 while ($notice->fetch()) {
1763 $ids[] = $notice->id;
1773 function locationOptions($lat, $lon, $location_id, $location_ns, $profile = null)
1777 if (!empty($location_id) && !empty($location_ns)) {
1778 $options['location_id'] = $location_id;
1779 $options['location_ns'] = $location_ns;
1781 $location = Location::fromId($location_id, $location_ns);
1783 if (!empty($location)) {
1784 $options['lat'] = $location->lat;
1785 $options['lon'] = $location->lon;
1788 } else if (!empty($lat) && !empty($lon)) {
1789 $options['lat'] = $lat;
1790 $options['lon'] = $lon;
1792 $location = Location::fromLatLon($lat, $lon);
1794 if (!empty($location)) {
1795 $options['location_id'] = $location->location_id;
1796 $options['location_ns'] = $location->location_ns;
1798 } else if (!empty($profile)) {
1799 if (isset($profile->lat) && isset($profile->lon)) {
1800 $options['lat'] = $profile->lat;
1801 $options['lon'] = $profile->lon;
1804 if (isset($profile->location_id) && isset($profile->location_ns)) {
1805 $options['location_id'] = $profile->location_id;
1806 $options['location_ns'] = $profile->location_ns;
1813 function clearReplies()
1815 $replyNotice = new Notice();
1816 $replyNotice->reply_to = $this->id;
1818 //Null any notices that are replies to this notice
1820 if ($replyNotice->find()) {
1821 while ($replyNotice->fetch()) {
1822 $orig = clone($replyNotice);
1823 $replyNotice->reply_to = null;
1824 $replyNotice->update($orig);
1830 $reply = new Reply();
1831 $reply->notice_id = $this->id;
1833 if ($reply->find()) {
1834 while($reply->fetch()) {
1835 self::blow('reply:stream:%d', $reply->profile_id);
1843 function clearFiles()
1845 $f2p = new File_to_post();
1847 $f2p->post_id = $this->id;
1850 while ($f2p->fetch()) {
1854 // FIXME: decide whether to delete File objects
1855 // ...and related (actual) files
1858 function clearRepeats()
1860 $repeatNotice = new Notice();
1861 $repeatNotice->repeat_of = $this->id;
1863 //Null any notices that are repeats of this notice
1865 if ($repeatNotice->find()) {
1866 while ($repeatNotice->fetch()) {
1867 $orig = clone($repeatNotice);
1868 $repeatNotice->repeat_of = null;
1869 $repeatNotice->update($orig);
1874 function clearFaves()
1877 $fave->notice_id = $this->id;
1879 if ($fave->find()) {
1880 while ($fave->fetch()) {
1881 self::blow('fave:ids_by_user_own:%d', $fave->user_id);
1882 self::blow('fave:ids_by_user_own:%d;last', $fave->user_id);
1883 self::blow('fave:ids_by_user:%d', $fave->user_id);
1884 self::blow('fave:ids_by_user:%d;last', $fave->user_id);
1892 function clearTags()
1894 $tag = new Notice_tag();
1895 $tag->notice_id = $this->id;
1898 while ($tag->fetch()) {
1899 self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, common_keyize($tag->tag));
1900 self::blow('profile:notice_ids_tagged:%d:%s;last', $this->profile_id, common_keyize($tag->tag));
1901 self::blow('notice_tag:notice_ids:%s', common_keyize($tag->tag));
1902 self::blow('notice_tag:notice_ids:%s;last', common_keyize($tag->tag));
1910 function clearGroupInboxes()
1912 $gi = new Group_inbox();
1914 $gi->notice_id = $this->id;
1917 while ($gi->fetch()) {
1918 self::blow('user_group:notice_ids:%d', $gi->group_id);
1926 function distribute()
1928 // We always insert for the author so they don't
1930 Event::handle('StartNoticeDistribute', array($this));
1932 $user = User::staticGet('id', $this->profile_id);
1933 if (!empty($user)) {
1934 Inbox::insertNotice($user->id, $this->id);
1937 if (common_config('queue', 'inboxes')) {
1938 // If there's a failure, we want to _force_
1939 // distribution at this point.
1941 $qm = QueueManager::get();
1942 $qm->enqueue($this, 'distrib');
1943 } catch (Exception $e) {
1944 // If the exception isn't transient, this
1945 // may throw more exceptions as DQH does
1946 // its own enqueueing. So, we ignore them!
1948 $handler = new DistribQueueHandler();
1949 $handler->handle($this);
1950 } catch (Exception $e) {
1951 common_log(LOG_ERR, "emergency redistribution resulted in " . $e->getMessage());
1953 // Re-throw so somebody smarter can handle it.
1957 $handler = new DistribQueueHandler();
1958 $handler->handle($this);
1964 $result = parent::insert();
1967 // Profile::hasRepeated() abuses pkeyGet(), so we
1968 // have to clear manually
1969 if (!empty($this->repeat_of)) {
1970 $c = self::memcache();
1972 $ck = self::multicacheKey('Notice',
1973 array('profile_id' => $this->profile_id,
1974 'repeat_of' => $this->repeat_of));
1984 * Get the source of the notice
1986 * @return Notice_source $ns A notice source object. 'code' is the only attribute
1987 * guaranteed to be populated.
1989 function getSource()
1991 $ns = new Notice_source();
1992 if (!empty($this->source)) {
1993 switch ($this->source) {
2000 $ns->code = $this->source;
2003 $ns = Notice_source::staticGet($this->source);
2005 $ns = new Notice_source();
2006 $ns->code = $this->source;
2007 $app = Oauth_application::staticGet('name', $this->source);
2009 $ns->name = $app->name;
2010 $ns->url = $app->source_url;
2020 * Determine whether the notice was locally created
2022 * @return boolean locality
2025 public function isLocal()
2027 return ($this->is_local == Notice::LOCAL_PUBLIC ||
2028 $this->is_local == Notice::LOCAL_NONPUBLIC);
2031 public function getTags()
2034 $tag = new Notice_tag();
2035 $tag->notice_id = $this->id;
2037 while ($tag->fetch()) {
2038 $tags[] = $tag->tag;
2045 static private function utcDate($dt)
2047 $dateStr = date('d F Y H:i:s', strtotime($dt));
2048 $d = new DateTime($dateStr, new DateTimeZone('UTC'));
2049 return $d->format(DATE_W3C);
2053 * Look up the creation timestamp for a given notice ID, even
2054 * if it's been deleted.
2057 * @return mixed string recorded creation timestamp, or false if can't be found
2059 public static function getAsTimestamp($id)
2065 $notice = Notice::staticGet('id', $id);
2067 return $notice->created;
2070 $deleted = Deleted_notice::staticGet('id', $id);
2072 return $deleted->created;
2079 * Build an SQL 'where' fragment for timestamp-based sorting from a since_id
2080 * parameter, matching notices posted after the given one (exclusive).
2082 * If the referenced notice can't be found, will return false.
2085 * @param string $idField
2086 * @param string $createdField
2087 * @return mixed string or false if no match
2089 public static function whereSinceId($id, $idField='id', $createdField='created')
2091 $since = Notice::getAsTimestamp($id);
2093 return sprintf("($createdField = '%s' and $idField > %d) or ($createdField > '%s')", $since, $id, $since);
2099 * Build an SQL 'where' fragment for timestamp-based sorting from a since_id
2100 * parameter, matching notices posted after the given one (exclusive), and
2101 * if necessary add it to the data object's query.
2103 * @param DB_DataObject $obj
2105 * @param string $idField
2106 * @param string $createdField
2107 * @return mixed string or false if no match
2109 public static function addWhereSinceId(DB_DataObject $obj, $id, $idField='id', $createdField='created')
2111 $since = self::whereSinceId($id, $idField, $createdField);
2113 $obj->whereAdd($since);
2118 * Build an SQL 'where' fragment for timestamp-based sorting from a max_id
2119 * parameter, matching notices posted before the given one (inclusive).
2121 * If the referenced notice can't be found, will return false.
2124 * @param string $idField
2125 * @param string $createdField
2126 * @return mixed string or false if no match
2128 public static function whereMaxId($id, $idField='id', $createdField='created')
2130 $max = Notice::getAsTimestamp($id);
2132 return sprintf("($createdField < '%s') or ($createdField = '%s' and $idField <= %d)", $max, $max, $id);
2138 * Build an SQL 'where' fragment for timestamp-based sorting from a max_id
2139 * parameter, matching notices posted before the given one (inclusive), and
2140 * if necessary add it to the data object's query.
2142 * @param DB_DataObject $obj
2144 * @param string $idField
2145 * @param string $createdField
2146 * @return mixed string or false if no match
2148 public static function addWhereMaxId(DB_DataObject $obj, $id, $idField='id', $createdField='created')
2150 $max = self::whereMaxId($id, $idField, $createdField);
2152 $obj->whereAdd($max);
2158 if (common_config('public', 'localonly')) {
2159 return ($this->is_local == Notice::LOCAL_PUBLIC);
2161 return (($this->is_local != Notice::LOCAL_NONPUBLIC) &&
2162 ($this->is_local != Notice::GATEWAY));