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 * @author Mikael Nordfeldth <mmn@hethane.se>
33 * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
34 * @license GNU Affero General Public License http://www.gnu.org/licenses/
37 if (!defined('GNUSOCIAL')) { exit(1); }
40 * Table Definition for notice
43 /* We keep 200 notices, the max number of notices available per API request,
44 * in the memcached cache. */
46 define('NOTICE_CACHE_WINDOW', CachingNoticeStream::CACHE_WINDOW);
48 define('MAX_BOXCARS', 128);
50 class Notice extends Managed_DataObject
53 /* the code below is auto generated do not remove the above tag */
55 public $__table = 'notice'; // table name
56 public $id; // int(4) primary_key not_null
57 public $profile_id; // int(4) multiple_key not_null
58 public $uri; // varchar(191) unique_key not 255 because utf8mb4 takes more space
59 public $content; // text
60 public $rendered; // text
61 public $url; // varchar(191) not 255 because utf8mb4 takes more space
62 public $created; // datetime multiple_key not_null default_0000-00-00%2000%3A00%3A00
63 public $modified; // timestamp not_null default_CURRENT_TIMESTAMP
64 public $reply_to; // int(4)
65 public $is_local; // int(4)
66 public $source; // varchar(32)
67 public $conversation; // int(4)
68 public $repeat_of; // int(4)
69 public $verb; // varchar(191) not 255 because utf8mb4 takes more space
70 public $object_type; // varchar(191) not 255 because utf8mb4 takes more space
71 public $scope; // int(4)
73 /* the code above is auto generated do not remove the tag below */
76 public static function schemaDef()
80 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'),
81 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'who made the update'),
82 'uri' => array('type' => 'varchar', 'length' => 191, 'description' => 'universally unique identifier, usually a tag URI'),
83 'content' => array('type' => 'text', 'description' => 'update content', 'collate' => 'utf8mb4_general_ci'),
84 'rendered' => array('type' => 'text', 'description' => 'HTML version of the content'),
85 'url' => array('type' => 'varchar', 'length' => 191, 'description' => 'URL of any attachment (image, video, bookmark, whatever)'),
86 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
87 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
88 'reply_to' => array('type' => 'int', 'description' => 'notice replied to (usually a guess)'),
89 'is_local' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'notice was generated by a user'),
90 'source' => array('type' => 'varchar', 'length' => 32, 'description' => 'source of comment, like "web", "im", or "clientname"'),
91 'conversation' => array('type' => 'int', 'description' => 'id of root notice in this conversation'),
92 'repeat_of' => array('type' => 'int', 'description' => 'notice this is a repeat of'),
93 'object_type' => array('type' => 'varchar', 'length' => 191, 'description' => 'URI representing activity streams object type', 'default' => null),
94 'verb' => array('type' => 'varchar', 'length' => 191, 'description' => 'URI representing activity streams verb', 'default' => 'http://activitystrea.ms/schema/1.0/post'),
95 'scope' => array('type' => 'int',
96 'description' => 'bit map for distribution scope; 0 = everywhere; 1 = this server only; 2 = addressees; 4 = followers; null = default'),
98 'primary key' => array('id'),
99 'unique keys' => array(
100 'notice_uri_key' => array('uri'),
102 'foreign keys' => array(
103 'notice_profile_id_fkey' => array('profile', array('profile_id' => 'id')),
104 'notice_reply_to_fkey' => array('notice', array('reply_to' => 'id')),
105 'notice_conversation_fkey' => array('conversation', array('conversation' => 'id')), # note... used to refer to notice.id
106 'notice_repeat_of_fkey' => array('notice', array('repeat_of' => 'id')), # @fixme: what about repeats of deleted notices?
109 'notice_created_id_is_local_idx' => array('created', 'id', 'is_local'),
110 'notice_profile_id_idx' => array('profile_id', 'created', 'id'),
111 'notice_repeat_of_created_id_idx' => array('repeat_of', 'created', 'id'),
112 'notice_conversation_created_id_idx' => array('conversation', 'created', 'id'),
113 'notice_verb_idx' => array('verb'),
114 'notice_replyto_idx' => array('reply_to')
118 if (common_config('search', 'type') == 'fulltext') {
119 $def['fulltext indexes'] = array('content' => array('content'));
126 const LOCAL_PUBLIC = 1;
128 const LOCAL_NONPUBLIC = -1;
131 const PUBLIC_SCOPE = 0; // Useful fake constant
132 const SITE_SCOPE = 1;
133 const ADDRESSEE_SCOPE = 2;
134 const GROUP_SCOPE = 4;
135 const FOLLOWER_SCOPE = 8;
137 protected $_profile = array();
140 * Will always return a profile, if anything fails it will
141 * (through _setProfile) throw a NoProfileException.
143 public function getProfile()
145 if (!isset($this->_profile[$this->profile_id])) {
146 // We could've sent getKV directly to _setProfile, but occasionally we get
147 // a "false" (instead of null), likely because it indicates a cache miss.
148 $profile = Profile::getKV('id', $this->profile_id);
149 $this->_setProfile($profile instanceof Profile ? $profile : null);
151 return $this->_profile[$this->profile_id];
154 public function _setProfile(Profile $profile=null)
156 if (!$profile instanceof Profile) {
157 throw new NoProfileException($this->profile_id);
159 $this->_profile[$this->profile_id] = $profile;
162 public function deleteAs(Profile $actor, $delete_event=true)
164 if (!$this->getProfile()->sameAs($actor) && !$actor->hasRight(Right::DELETEOTHERSNOTICE)) {
165 throw new AuthorizationException(_('You are not allowed to delete another user\'s notice.'));
168 if (Event::handle('NoticeDeleteRelated', array($this))) {
169 // Clear related records
170 $this->clearReplies();
171 $this->clearLocation();
172 $this->clearRepeats();
174 $this->clearGroupInboxes();
176 $this->clearAttentions();
177 // NOTE: we don't clear queue items
181 if (!$delete_event || Event::handle('DeleteNoticeAsProfile', array($this, $actor, &$result))) {
182 // If $delete_event is true, we run the event. If the Event then
183 // returns false it is assumed everything was handled properly
184 // and the notice was deleted.
185 $result = $this->delete();
190 public function delete($useWhere=false)
192 $result = parent::delete($useWhere);
194 $this->blowOnDelete();
198 public function getUri()
204 * Get a Notice object by URI. Will call external plugins for help
205 * using the event StartGetNoticeFromURI.
207 * @param string $uri A unique identifier for a resource (notice in this case)
209 static function fromUri($uri)
213 if (Event::handle('StartGetNoticeFromUri', array($uri, &$notice))) {
214 $notice = Notice::getKV('uri', $uri);
215 Event::handle('EndGetNoticeFromUri', array($uri, $notice));
218 if (!$notice instanceof Notice) {
219 throw new UnknownUriException($uri);
226 * @param $root boolean If true, link to just the conversation root.
228 * @return URL to conversation
230 public function getConversationUrl($anchor=true)
232 return Conversation::getUrlFromNotice($this, $anchor);
236 * Get the local representation URL of this notice.
238 public function getLocalUrl()
240 return common_local_url('shownotice', array('notice' => $this->id), null, null, false);
243 public function getTitle()
246 if (Event::handle('GetNoticeTitle', array($this, &$title))) {
247 // TRANS: Title of a notice posted without a title value.
248 // TRANS: %1$s is a user name, %2$s is the notice creation date/time.
249 $title = sprintf(_('%1$s\'s status on %2$s'),
250 $this->getProfile()->getFancyName(),
251 common_exact_date($this->created));
256 public function getContent()
258 return $this->content;
261 public function getRendered()
263 if (is_null($this->rendered) || $this->rendered === '') {
264 // update to include rendered content on-the-fly, so we don't have to have a fix-up script in upgrade.php
265 common_debug('Rendering notice '.$this->getID().' as it had no rendered HTML content.');
266 $orig = clone($this);
267 $this->rendered = common_render_content($this->getContent(),
269 $this->hasParent() ? $this->getParent() : null);
270 $this->update($orig);
272 return $this->rendered;
275 public function getCreated()
277 return $this->created;
280 public function getVerb($make_relative=false)
282 return ActivityUtils::resolveUri($this->verb, $make_relative);
285 public function isVerb(array $verbs)
287 return ActivityUtils::compareVerbs($this->getVerb(), $verbs);
291 * Get the original representation URL of this notice.
293 * @param boolean $fallback Whether to fall back to generate a local URL or throw InvalidUrlException
295 public function getUrl($fallback=false)
297 // The risk is we start having empty urls and non-http uris...
298 // and we can't really handle any other protocol right now.
300 case $this->isLocal():
301 return common_local_url('shownotice', array('notice' => $this->getID()), null, null, false);
302 case common_valid_http_url($this->url): // should we allow non-http/https URLs?
304 case common_valid_http_url($this->uri): // Sometimes we only have the URI for remote posts.
307 // let's generate a valid link to our locally available notice on demand
308 return common_local_url('shownotice', array('notice' => $this->getID()), null, null, false);
310 common_debug('No URL available for notice: id='.$this->getID());
311 throw new InvalidUrlException($this->url);
315 public function getObjectType($canonical=false) {
316 if (is_null($this->object_type) || $this->object_type==='') {
317 throw new NoObjectTypeException($this);
319 return ActivityUtils::resolveUri($this->object_type, $canonical);
322 public function isObjectType(array $types)
325 return ActivityUtils::compareTypes($this->getObjectType(), $types);
326 } catch (NoObjectTypeException $e) {
331 public static function getByUri($uri)
333 $notice = new Notice();
335 if (!$notice->find(true)) {
336 throw new NoResultException($notice);
342 * Extract #hashtags from this notice's content and save them to the database.
346 /* extract all #hastags */
347 $count = preg_match_all('/(?:^|\s)#([\pL\pN_\-\.]{1,64})/u', strtolower($this->content), $match);
352 /* Add them to the database */
353 return $this->saveKnownTags($match[1]);
357 * Record the given set of hash tags in the db for this notice.
358 * Given tag strings will be normalized and checked for dupes.
360 function saveKnownTags($hashtags)
362 //turn each into their canonical tag
363 //this is needed to remove dupes before saving e.g. #hash.tag = #hashtag
364 for($i=0; $i<count($hashtags); $i++) {
365 /* elide characters we don't want in the tag */
366 $hashtags[$i] = common_canonical_tag($hashtags[$i]);
369 foreach(array_unique($hashtags) as $hashtag) {
370 $this->saveTag($hashtag);
371 self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, $hashtag);
377 * Record a single hash tag as associated with this notice.
378 * Tag format and uniqueness must be validated by caller.
380 function saveTag($hashtag)
382 $tag = new Notice_tag();
383 $tag->notice_id = $this->id;
384 $tag->tag = $hashtag;
385 $tag->created = $this->created;
386 $id = $tag->insert();
389 // TRANS: Server exception. %s are the error details.
390 throw new ServerException(sprintf(_('Database error inserting hashtag: %s.'),
391 $last_error->message));
395 // if it's saved, blow its cache
396 $tag->blowCache(false);
400 * Save a new notice and push it out to subscribers' inboxes.
401 * Poster's permissions are checked before sending.
403 * @param int $profile_id Profile ID of the poster
404 * @param string $content source message text; links may be shortened
405 * per current user's preference
406 * @param string $source source key ('web', 'api', etc)
407 * @param array $options Associative array of optional properties:
408 * string 'created' timestamp of notice; defaults to now
409 * int 'is_local' source/gateway ID, one of:
410 * Notice::LOCAL_PUBLIC - Local, ok to appear in public timeline
411 * Notice::REMOTE - Sent from a remote service;
412 * hide from public timeline but show in
413 * local "and friends" timelines
414 * Notice::LOCAL_NONPUBLIC - Local, but hide from public timeline
415 * Notice::GATEWAY - From another non-OStatus service;
416 * will not appear in public views
417 * float 'lat' decimal latitude for geolocation
418 * float 'lon' decimal longitude for geolocation
419 * int 'location_id' geoname identifier
420 * int 'location_ns' geoname namespace to interpret location_id
421 * int 'reply_to'; notice ID this is a reply to
422 * int 'repeat_of'; notice ID this is a repeat of
423 * string 'uri' unique ID for notice; a unique tag uri (can be url or anything too)
424 * string 'url' permalink to notice; defaults to local notice URL
425 * string 'rendered' rendered HTML version of content
426 * array 'replies' list of profile URIs for reply delivery in
427 * place of extracting @-replies from content.
428 * array 'groups' list of group IDs to deliver to, in place of
429 * extracting ! tags from content
430 * array 'tags' list of hashtag strings to save with the notice
431 * in place of extracting # tags from content
432 * array 'urls' list of attached/referred URLs to save with the
433 * notice in place of extracting links from content
434 * boolean 'distribute' whether to distribute the notice, default true
435 * string 'object_type' URL of the associated object type (default ActivityObject::NOTE)
436 * string 'verb' URL of the associated verb (default ActivityVerb::POST)
437 * int 'scope' Scope bitmask; default to SITE_SCOPE on private sites, 0 otherwise
439 * @fixme tag override
442 * @throws ClientException
444 static function saveNew($profile_id, $content, $source, array $options=null) {
445 $defaults = array('uri' => null,
447 'conversation' => null, // URI of conversation
448 'reply_to' => null, // This will override convo URI if the parent is known
449 'repeat_of' => null, // This will override convo URI if the repeated notice is known
451 'distribute' => true,
452 'object_type' => null,
455 if (!empty($options) && is_array($options)) {
456 $options = array_merge($defaults, $options);
462 if (!isset($is_local)) {
463 $is_local = Notice::LOCAL_PUBLIC;
466 $profile = Profile::getKV('id', $profile_id);
467 if (!$profile instanceof Profile) {
468 // TRANS: Client exception thrown when trying to save a notice for an unknown user.
469 throw new ClientException(_('Problem saving notice. Unknown user.'));
472 $user = User::getKV('id', $profile_id);
473 if ($user instanceof User) {
474 // Use the local user's shortening preferences, if applicable.
475 $final = $user->shortenLinks($content);
477 $final = common_shorten_links($content);
480 if (Notice::contentTooLong($final)) {
481 // TRANS: Client exception thrown if a notice contains too many characters.
482 throw new ClientException(_('Problem saving notice. Too long.'));
485 if (common_config('throttle', 'enabled') && !Notice::checkEditThrottle($profile_id)) {
486 common_log(LOG_WARNING, 'Excessive posting by profile #' . $profile_id . '; throttled.');
487 // TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
488 throw new ClientException(_('Too many notices too fast; take a breather '.
489 'and post again in a few minutes.'));
492 if (common_config('site', 'dupelimit') > 0 && !Notice::checkDupes($profile_id, $final)) {
493 common_log(LOG_WARNING, 'Dupe posting by profile #' . $profile_id . '; throttled.');
494 // TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
495 throw new ClientException(_('Too many duplicate messages too quickly;'.
496 ' take a breather and post again in a few minutes.'));
499 if (!$profile->hasRight(Right::NEWNOTICE)) {
500 common_log(LOG_WARNING, "Attempted post from user disallowed to post: " . $profile->nickname);
502 // TRANS: Client exception thrown when a user tries to post while being banned.
503 throw new ClientException(_('You are banned from posting notices on this site.'), 403);
506 $notice = new Notice();
507 $notice->profile_id = $profile_id;
509 $autosource = common_config('public', 'autosource');
511 // Sandboxed are non-false, but not 1, either
513 if (!$profile->hasRight(Right::PUBLICNOTICE) ||
514 ($source && $autosource && in_array($source, $autosource))) {
515 $notice->is_local = Notice::LOCAL_NONPUBLIC;
517 $notice->is_local = $is_local;
520 if (!empty($created)) {
521 $notice->created = $created;
523 $notice->created = common_sql_now();
526 if (!$notice->isLocal()) {
527 // Only do these checks for non-local notices. Local notices will generate these values later.
528 if (!common_valid_http_url($url)) {
529 common_debug('Bad notice URL: ['.$url.'], URI: ['.$uri.']. Cannot link back to original! This is normal for shared notices etc.');
532 throw new ServerException('No URI for remote notice. Cannot accept that.');
536 $notice->content = $final;
538 $notice->source = $source;
542 // Get the groups here so we can figure out replies and such
543 if (!isset($groups)) {
544 $groups = User_group::idsFromText($notice->content, $profile);
549 // Handle repeat case
551 if (!empty($options['repeat_of'])) {
553 // Check for a private one
555 $repeat = Notice::getByID($options['repeat_of']);
557 if ($profile->sameAs($repeat->getProfile())) {
558 // TRANS: Client error displayed when trying to repeat an own notice.
559 throw new ClientException(_('You cannot repeat your own notice.'));
562 if ($repeat->scope != Notice::SITE_SCOPE &&
563 $repeat->scope != Notice::PUBLIC_SCOPE) {
564 // TRANS: Client error displayed when trying to repeat a non-public notice.
565 throw new ClientException(_('Cannot repeat a private notice.'), 403);
568 if (!$repeat->inScope($profile)) {
569 // The generic checks above should cover this, but let's be sure!
570 // TRANS: Client error displayed when trying to repeat a notice you cannot access.
571 throw new ClientException(_('Cannot repeat a notice you cannot read.'), 403);
574 if ($profile->hasRepeated($repeat)) {
575 // TRANS: Client error displayed when trying to repeat an already repeated notice.
576 throw new ClientException(_('You already repeated that notice.'));
579 $notice->repeat_of = $repeat->id;
580 $notice->conversation = $repeat->conversation;
584 // If $reply_to is specified, we check that it exists, and then
585 // return it if it does
586 if (!empty($reply_to)) {
587 $reply = Notice::getKV('id', $reply_to);
588 } elseif (in_array($source, array('xmpp', 'mail', 'sms'))) {
589 // If the source lacks capability of sending the "reply_to"
590 // metadata, let's try to find an inline replyto-reference.
591 $reply = self::getInlineReplyTo($profile, $final);
594 if ($reply instanceof Notice) {
595 if (!$reply->inScope($profile)) {
596 // TRANS: Client error displayed when trying to reply to a notice a the target has no access to.
597 // TRANS: %1$s is a user nickname, %2$d is a notice ID (number).
598 throw new ClientException(sprintf(_('%1$s has no access to notice %2$d.'),
599 $profile->nickname, $reply->id), 403);
602 // If it's a repeat, the reply_to should be to the original
603 if ($reply->isRepeat()) {
604 $notice->reply_to = $reply->repeat_of;
606 $notice->reply_to = $reply->id;
608 // But the conversation ought to be the same :)
609 $notice->conversation = $reply->conversation;
611 // If the original is private to a group, and notice has
612 // no group specified, make it to the same group(s)
614 if (empty($groups) && ($reply->scope & Notice::GROUP_SCOPE)) {
616 $replyGroups = $reply->getGroups();
617 foreach ($replyGroups as $group) {
618 if ($profile->isMember($group)) {
619 $groups[] = $group->id;
627 // If we don't know the reply, we might know the conversation!
628 // This will happen if a known remote user replies to an
629 // unknown remote user - within a known conversation.
630 if (empty($notice->conversation) and !empty($options['conversation'])) {
631 $conv = Conversation::getKV('uri', $options['conversation']);
632 if ($conv instanceof Conversation) {
633 common_debug('Conversation stitched together from (probably) a reply to unknown remote user. Activity creation time ('.$notice->created.') should maybe be compared to conversation creation time ('.$conv->created.').');
635 // Conversation entry with specified URI was not found, so we must create it.
636 common_debug('Conversation URI not found, so we will create it with the URI given in the options to Notice::saveNew: '.$options['conversation']);
637 // The insert in Conversation::create throws exception on failure
638 $conv = Conversation::create($options['conversation'], $notice->created);
640 $notice->conversation = $conv->getID();
645 // If it's not part of a conversation, it's the beginning of a new conversation.
646 if (empty($notice->conversation)) {
647 $conv = Conversation::create();
648 $notice->conversation = $conv->getID();
653 $notloc = new Notice_location();
654 if (!empty($lat) && !empty($lon)) {
659 if (!empty($location_ns) && !empty($location_id)) {
660 $notloc->location_id = $location_id;
661 $notloc->location_ns = $location_ns;
664 if (!empty($rendered)) {
665 $notice->rendered = $rendered;
667 $notice->rendered = common_render_content($final,
668 $notice->getProfile(),
669 $notice->hasParent() ? $notice->getParent() : null);
673 if ($notice->isRepeat()) {
674 $notice->verb = ActivityVerb::SHARE;
675 $notice->object_type = ActivityObject::ACTIVITY;
677 $notice->verb = ActivityVerb::POST;
680 $notice->verb = $verb;
683 if (empty($object_type)) {
684 $notice->object_type = (empty($notice->reply_to)) ? ActivityObject::NOTE : ActivityObject::COMMENT;
686 $notice->object_type = $object_type;
689 if (is_null($scope) && $reply instanceof Notice) {
690 $notice->scope = $reply->scope;
692 $notice->scope = $scope;
695 $notice->scope = self::figureOutScope($profile, $groups, $notice->scope);
697 if (Event::handle('StartNoticeSave', array(&$notice))) {
699 // XXX: some of these functions write to the DB
702 $notice->insert(); // throws exception on failure, if successful we have an ->id
704 if (($notloc->lat && $notloc->lon) || ($notloc->location_id && $notloc->location_ns)) {
705 $notloc->notice_id = $notice->getID();
706 $notloc->insert(); // store the notice location if it had any information
708 } catch (Exception $e) {
709 // Let's test if we managed initial insert, which would imply
710 // failing on some update-part (check 'insert()'). Delete if
711 // something had been stored to the database.
712 if (!empty($notice->id)) {
719 // Only save 'attention' and metadata stuff (URLs, tags...) stuff if
720 // the activityverb is a POST (since stuff like repeat, favorite etc.
721 // reasonably handle notifications themselves.
722 if (ActivityUtils::compareVerbs($notice->verb, array(ActivityVerb::POST))) {
723 if (isset($replies)) {
724 $notice->saveKnownReplies($replies);
726 $notice->saveReplies();
730 $notice->saveKnownTags($tags);
735 // Note: groups may save tags, so must be run after tags are saved
736 // to avoid errors on duplicates.
737 // Note: groups should always be set.
739 $notice->saveKnownGroups($groups);
742 $notice->saveKnownUrls($urls);
749 // Prepare inbox delivery, may be queued to background.
750 $notice->distribute();
756 static function saveActivity(Activity $act, Profile $actor, array $options=array())
758 // First check if we're going to let this Activity through from the specific actor
759 if (!$actor->hasRight(Right::NEWNOTICE)) {
760 common_log(LOG_WARNING, "Attempted post from user disallowed to post: " . $actor->getNickname());
762 // TRANS: Client exception thrown when a user tries to post while being banned.
763 throw new ClientException(_m('You are banned from posting notices on this site.'), 403);
765 if (common_config('throttle', 'enabled') && !self::checkEditThrottle($actor->id)) {
766 common_log(LOG_WARNING, 'Excessive posting by profile #' . $actor->id . '; throttled.');
767 // TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
768 throw new ClientException(_m('Too many notices too fast; take a breather '.
769 'and post again in a few minutes.'));
772 // Get ActivityObject properties
774 if (!empty($act->id)) {
776 $options['uri'] = $act->id;
777 $options['url'] = $act->link;
779 $actobj = count($act->objects)===1 ? $act->objects[0] : null;
780 if (!is_null($actobj) && !empty($actobj->id)) {
781 $options['uri'] = $actobj->id;
783 $options['url'] = $actobj->link;
784 } elseif (preg_match('!^https?://!', $actobj->id)) {
785 $options['url'] = $actobj->id;
792 'is_local' => $actor->isLocal() ? self::LOCAL_PUBLIC : self::REMOTE,
793 'mentions' => array(),
797 'source' => 'unknown',
802 'distribute' => true);
804 // options will have default values when nothing has been supplied
805 $options = array_merge($defaults, $options);
806 foreach (array_keys($defaults) as $key) {
807 // Only convert the keynames we specify ourselves from 'defaults' array into variables
808 $$key = $options[$key];
810 extract($options, EXTR_SKIP);
813 $stored = new Notice();
814 if (!empty($uri) && !ActivityUtils::compareVerbs($act->verb, array(ActivityVerb::DELETE))) {
816 if ($stored->find()) {
817 common_debug('cannot create duplicate Notice URI: '.$stored->uri);
818 // I _assume_ saving a Notice with a colliding URI means we're really trying to
819 // save the same notice again...
820 throw new AlreadyFulfilledException('Notice URI already exists');
824 $autosource = common_config('public', 'autosource');
826 // Sandboxed are non-false, but not 1, either
827 if (!$actor->hasRight(Right::PUBLICNOTICE) ||
828 ($source && $autosource && in_array($source, $autosource))) {
829 // FIXME: ...what about remote nonpublic? Hmmm. That is, if we sandbox remote profiles...
830 $stored->is_local = Notice::LOCAL_NONPUBLIC;
832 $stored->is_local = intval($is_local);
835 if (!$stored->isLocal()) {
836 // Only do these checks for non-local notices. Local notices will generate these values later.
837 if (!common_valid_http_url($url)) {
838 common_debug('Bad notice URL: ['.$url.'], URI: ['.$uri.']. Cannot link back to original! This is normal for shared notices etc.');
841 throw new ServerException('No URI for remote notice. Cannot accept that.');
845 $stored->profile_id = $actor->id;
846 $stored->source = $source;
849 $stored->verb = $act->verb;
851 $content = $act->content ?: $act->summary;
852 if (is_null($content) && !is_null($actobj)) {
853 $content = $actobj->content ?: $actobj->summary;
855 // Strip out any bad HTML
856 $stored->rendered = common_purify($content);
857 // yeah, just don't use getRendered() here since it's not inserted yet ;)
858 $stored->content = common_strip_html($stored->rendered);
859 if (trim($stored->content) === '') {
860 // TRANS: Error message when the plain text content of a notice has zero length.
861 throw new ClientException(_('Empty notice content, will not save this.'));
864 // Maybe a missing act-time should be fatal if the actor is not local?
865 if (!empty($act->time)) {
866 $stored->created = common_sql_date($act->time);
868 $stored->created = common_sql_now();
872 if ($act->context instanceof ActivityContext && !empty($act->context->replyToID)) {
873 $reply = self::getKV('uri', $act->context->replyToID);
875 if (!$reply instanceof Notice && $act->target instanceof ActivityObject) {
876 $reply = self::getKV('uri', $act->target->id);
879 if ($reply instanceof Notice) {
880 if (!$reply->inScope($actor)) {
881 // TRANS: Client error displayed when trying to reply to a notice a the target has no access to.
882 // TRANS: %1$s is a user nickname, %2$d is a notice ID (number).
883 throw new ClientException(sprintf(_m('%1$s has no right to reply to notice %2$d.'), $actor->getNickname(), $reply->id), 403);
886 $stored->reply_to = $reply->id;
887 $stored->conversation = $reply->conversation;
889 // If the original is private to a group, and notice has no group specified,
890 // make it to the same group(s)
891 if (empty($groups) && ($reply->scope & Notice::GROUP_SCOPE)) {
892 $replyGroups = $reply->getGroups();
893 foreach ($replyGroups as $group) {
894 if ($actor->isMember($group)) {
895 $groups[] = $group->id;
900 if (is_null($scope)) {
901 $scope = $reply->scope;
904 // If we don't know the reply, we might know the conversation!
905 // This will happen if a known remote user replies to an
906 // unknown remote user - within a known conversation.
907 if (empty($stored->conversation) and !empty($act->context->conversation)) {
908 $conv = Conversation::getKV('uri', $act->context->conversation);
909 if ($conv instanceof Conversation) {
910 common_debug('Conversation stitched together from (probably) a reply activity to unknown remote user. Activity creation time ('.$stored->created.') should maybe be compared to conversation creation time ('.$conv->created.').');
912 // Conversation entry with specified URI was not found, so we must create it.
913 common_debug('Conversation URI not found, so we will create it with the URI given in the context of the activity: '.$act->context->conversation);
914 // The insert in Conversation::create throws exception on failure
915 $conv = Conversation::create($act->context->conversation, $stored->created);
917 $stored->conversation = $conv->getID();
922 // If it's not part of a conversation, it's the beginning of a new conversation.
923 if (empty($stored->conversation)) {
924 $conv = Conversation::create();
925 $stored->conversation = $conv->getID();
930 if ($act->context instanceof ActivityContext) {
931 if ($act->context->location instanceof Location) {
932 $notloc = Notice_location::fromLocation($act->context->location);
935 $act->context = new ActivityContext();
938 $stored->scope = self::figureOutScope($actor, $groups, $scope);
940 foreach ($act->categories as $cat) {
942 $term = common_canonical_tag($cat->term);
949 foreach ($act->enclosures as $href) {
950 // @todo FIXME: Save these locally or....?
954 if (ActivityUtils::compareVerbs($stored->verb, array(ActivityVerb::POST))) {
955 if (empty($act->objects[0]->type)) {
956 // Default type for the post verb is 'note', but we know it's
957 // a 'comment' if it is in reply to something.
958 $stored->object_type = empty($stored->reply_to) ? ActivityObject::NOTE : ActivityObject::COMMENT;
960 //TODO: Is it safe to always return a relative URI? The
961 // JSON version of ActivityStreams always use it, so we
962 // should definitely be able to handle it...
963 $stored->object_type = ActivityUtils::resolveUri($act->objects[0]->type, true);
967 if (Event::handle('StartNoticeSave', array(&$stored))) {
968 // XXX: some of these functions write to the DB
971 $result = $stored->insert(); // throws exception on error
973 if ($notloc instanceof Notice_location) {
974 $notloc->notice_id = $stored->getID();
978 $orig = clone($stored); // for updating later in this try clause
981 Event::handle('StoreActivityObject', array($act, $stored, $options, &$object));
982 if (empty($object)) {
983 throw new NoticeSaveException('Unsuccessful call to StoreActivityObject '._ve($stored->getUri()) . ': '._ve($act->asString()));
986 // If something changed in the Notice during StoreActivityObject
987 $stored->update($orig);
988 } catch (Exception $e) {
989 if (empty($stored->id)) {
990 common_debug('Failed to save stored object entry in database ('.$e->getMessage().')');
992 common_debug('Failed to store activity object in database ('.$e->getMessage().'), deleting notice id '.$stored->id);
998 if (!$stored instanceof Notice) {
999 throw new ServerException('StartNoticeSave did not give back a Notice');
1002 // Only save 'attention' and metadata stuff (URLs, tags...) stuff if
1003 // the activityverb is a POST (since stuff like repeat, favorite etc.
1004 // reasonably handle notifications themselves.
1005 if (ActivityUtils::compareVerbs($stored->verb, array(ActivityVerb::POST))) {
1007 if (!empty($tags)) {
1008 $stored->saveKnownTags($tags);
1010 $stored->saveTags();
1013 // Note: groups may save tags, so must be run after tags are saved
1014 // to avoid errors on duplicates.
1015 $stored->saveAttentions($act->context->attention);
1017 if (!empty($urls)) {
1018 $stored->saveKnownUrls($urls);
1020 $stored->saveUrls();
1025 // Prepare inbox delivery, may be queued to background.
1026 $stored->distribute();
1032 static public function figureOutScope(Profile $actor, array $groups, $scope=null) {
1033 $scope = is_null($scope) ? self::defaultScope() : intval($scope);
1035 // For private streams
1037 $user = $actor->getUser();
1038 // FIXME: We can't do bit comparison with == (Legacy StatusNet thing. Let's keep it for now.)
1039 if ($user->private_stream && ($scope === Notice::PUBLIC_SCOPE || $scope === Notice::SITE_SCOPE)) {
1040 $scope |= Notice::FOLLOWER_SCOPE;
1042 } catch (NoSuchUserException $e) {
1043 // TODO: Not a local user, so we don't know about scope preferences... yet!
1046 // Force the scope for private groups
1047 foreach ($groups as $group_id) {
1049 $group = User_group::getByID($group_id);
1050 if ($group->force_scope) {
1051 $scope |= Notice::GROUP_SCOPE;
1054 } catch (Exception $e) {
1055 common_log(LOG_ERR, 'Notice figureOutScope threw exception: '.$e->getMessage());
1062 function blowOnInsert($conversation = false)
1064 $this->blowStream('profile:notice_ids:%d', $this->profile_id);
1066 if ($this->isPublic()) {
1067 $this->blowStream('public');
1068 $this->blowStream('networkpublic');
1071 if ($this->conversation) {
1072 self::blow('notice:list-ids:conversation:%s', $this->conversation);
1073 self::blow('conversation:notice_count:%d', $this->conversation);
1076 if ($this->isRepeat()) {
1077 // XXX: we should probably only use one of these
1078 $this->blowStream('notice:repeats:%d', $this->repeat_of);
1079 self::blow('notice:list-ids:repeat_of:%d', $this->repeat_of);
1082 $original = Notice::getKV('id', $this->repeat_of);
1084 if ($original instanceof Notice) {
1085 $originalUser = User::getKV('id', $original->profile_id);
1086 if ($originalUser instanceof User) {
1087 $this->blowStream('user:repeats_of_me:%d', $originalUser->id);
1091 $profile = Profile::getKV($this->profile_id);
1093 if ($profile instanceof Profile) {
1094 $profile->blowNoticeCount();
1097 $ptags = $this->getProfileTags();
1098 foreach ($ptags as $ptag) {
1099 $ptag->blowNoticeStreamCache();
1104 * Clear cache entries related to this notice at delete time.
1105 * Necessary to avoid breaking paging on public, profile timelines.
1107 function blowOnDelete()
1109 $this->blowOnInsert();
1111 self::blow('profile:notice_ids:%d;last', $this->profile_id);
1113 if ($this->isPublic()) {
1114 self::blow('public;last');
1115 self::blow('networkpublic;last');
1118 self::blow('fave:by_notice', $this->id);
1120 if ($this->conversation) {
1121 // In case we're the first, will need to calc a new root.
1122 self::blow('notice:conversation_root:%d', $this->conversation);
1125 $ptags = $this->getProfileTags();
1126 foreach ($ptags as $ptag) {
1127 $ptag->blowNoticeStreamCache(true);
1131 function blowStream()
1133 $c = self::memcache();
1139 $args = func_get_args();
1140 $format = array_shift($args);
1141 $keyPart = vsprintf($format, $args);
1142 $cacheKey = Cache::key($keyPart);
1143 $c->delete($cacheKey);
1145 // delete the "last" stream, too, if this notice is
1146 // older than the top of that stream
1148 $lastKey = $cacheKey.';last';
1150 $lastStr = $c->get($lastKey);
1152 if ($lastStr !== false) {
1153 $window = explode(',', $lastStr);
1154 $lastID = $window[0];
1155 $lastNotice = Notice::getKV('id', $lastID);
1156 if (!$lastNotice instanceof Notice // just weird
1157 || strtotime($lastNotice->created) >= strtotime($this->created)) {
1158 $c->delete($lastKey);
1163 /** save all urls in the notice to the db
1165 * follow redirects and save all available file information
1166 * (mimetype, date, size, oembed, etc.)
1170 function saveUrls() {
1171 if (common_config('attachments', 'process_links')) {
1172 common_replace_urls_callback($this->content, array($this, 'saveUrl'), $this);
1177 * Save the given URLs as related links/attachments to the db
1179 * follow redirects and save all available file information
1180 * (mimetype, date, size, oembed, etc.)
1184 function saveKnownUrls($urls)
1186 if (common_config('attachments', 'process_links')) {
1187 // @fixme validation?
1188 foreach (array_unique($urls) as $url) {
1189 $this->saveUrl($url, $this);
1197 function saveUrl($url, Notice $notice) {
1199 File::processNew($url, $notice);
1200 } catch (ServerException $e) {
1201 // Could not save URL. Log it?
1205 static function checkDupes($profile_id, $content) {
1206 $profile = Profile::getKV($profile_id);
1207 if (!$profile instanceof Profile) {
1210 $notice = $profile->getNotices(0, CachingNoticeStream::CACHE_WINDOW);
1211 if (!empty($notice)) {
1213 while ($notice->fetch()) {
1214 if (time() - strtotime($notice->created) >= common_config('site', 'dupelimit')) {
1216 } else if ($notice->content == $content) {
1221 // If we get here, oldest item in cache window is not
1222 // old enough for dupe limit; do direct check against DB
1223 $notice = new Notice();
1224 $notice->profile_id = $profile_id;
1225 $notice->content = $content;
1226 $threshold = common_sql_date(time() - common_config('site', 'dupelimit'));
1227 $notice->whereAdd(sprintf("created > '%s'", $notice->escape($threshold)));
1229 $cnt = $notice->count();
1233 static function checkEditThrottle($profile_id) {
1234 $profile = Profile::getKV($profile_id);
1235 if (!$profile instanceof Profile) {
1238 // Get the Nth notice
1239 $notice = $profile->getNotices(common_config('throttle', 'count') - 1, 1);
1240 if ($notice && $notice->fetch()) {
1241 // If the Nth notice was posted less than timespan seconds ago
1242 if (time() - strtotime($notice->created) <= common_config('throttle', 'timespan')) {
1247 // Either not N notices in the stream, OR the Nth was not posted within timespan seconds
1251 protected $_attachments = array();
1253 function attachments() {
1254 if (isset($this->_attachments[$this->id])) {
1255 return $this->_attachments[$this->id];
1258 $f2ps = File_to_post::listGet('post_id', array($this->id));
1260 foreach ($f2ps[$this->id] as $f2p) {
1261 $ids[] = $f2p->file_id;
1264 $files = File::multiGet('id', $ids);
1265 $this->_attachments[$this->id] = $files->fetchAll();
1266 return $this->_attachments[$this->id];
1269 function _setAttachments($attachments)
1271 $this->_attachments[$this->id] = $attachments;
1274 static function publicStream($offset=0, $limit=20, $since_id=null, $max_id=null)
1276 $stream = new PublicNoticeStream();
1277 return $stream->getNotices($offset, $limit, $since_id, $max_id);
1280 static function conversationStream($id, $offset=0, $limit=20, $since_id=null, $max_id=null)
1282 $stream = new ConversationNoticeStream($id);
1283 return $stream->getNotices($offset, $limit, $since_id, $max_id);
1287 * Is this notice part of an active conversation?
1289 * @return boolean true if other messages exist in the same
1290 * conversation, false if this is the only one
1292 function hasConversation()
1294 if (empty($this->conversation)) {
1295 // this notice is not part of a conversation apparently
1296 // FIXME: all notices should have a conversation value, right?
1300 $stream = new ConversationNoticeStream($this->conversation);
1301 $notice = $stream->getNotices(/*offset*/ 1, /*limit*/ 1);
1303 // if our "offset 1, limit 1" query got a result, return true else false
1304 return $notice->N > 0;
1308 * Grab the earliest notice from this conversation.
1310 * @return Notice or null
1312 function conversationRoot($profile=-1)
1314 // XXX: can this happen?
1316 if (empty($this->conversation)) {
1320 // Get the current profile if not specified
1322 if (is_int($profile) && $profile == -1) {
1323 $profile = Profile::current();
1326 // If this notice is out of scope, no root for you!
1328 if (!$this->inScope($profile)) {
1332 // If this isn't a reply to anything, then it's its own
1333 // root if it's the earliest notice in the conversation:
1335 if (empty($this->reply_to)) {
1337 $root->conversation = $this->conversation;
1338 $root->orderBy('notice.created ASC');
1339 $root->find(true); // true means "fetch first result"
1344 if (is_null($profile)) {
1345 $keypart = sprintf('notice:conversation_root:%d:null', $this->id);
1347 $keypart = sprintf('notice:conversation_root:%d:%d',
1352 $root = self::cacheGet($keypart);
1354 if ($root !== false && $root->inScope($profile)) {
1361 $parent = $last->getParent();
1362 if ($parent->inScope($profile)) {
1366 } catch (NoParentNoticeException $e) {
1367 // Latest notice has no parent
1368 } catch (NoResultException $e) {
1369 // Notice was not found, so we can't go further up in the tree.
1370 // FIXME: Maybe we should do this in a more stable way where deleted
1371 // notices won't break conversation chains?
1373 // No parent, or parent out of scope
1378 self::cacheSet($keypart, $root);
1384 * Pull up a full list of local recipients who will be getting
1385 * this notice in their inbox. Results will be cached, so don't
1386 * change the input data wily-nilly!
1388 * @param array $groups optional list of Group objects;
1389 * if left empty, will be loaded from group_inbox records
1390 * @param array $recipient optional list of reply profile ids
1391 * if left empty, will be loaded from reply records
1392 * @return array associating recipient user IDs with an inbox source constant
1394 function whoGets(array $groups=null, array $recipients=null)
1396 $c = self::memcache();
1399 $ni = $c->get(Cache::key('notice:who_gets:'.$this->id));
1400 if ($ni !== false) {
1405 if (is_null($recipients)) {
1406 $recipients = $this->getReplies();
1411 // Give plugins a chance to add folks in at start...
1412 if (Event::handle('StartNoticeWhoGets', array($this, &$ni))) {
1414 $users = $this->getSubscribedUsers();
1415 foreach ($users as $id) {
1416 $ni[$id] = NOTICE_INBOX_SOURCE_SUB;
1419 if (is_null($groups)) {
1420 $groups = $this->getGroups();
1422 foreach ($groups as $group) {
1423 $users = $group->getUserMembers();
1424 foreach ($users as $id) {
1425 if (!array_key_exists($id, $ni)) {
1426 $ni[$id] = NOTICE_INBOX_SOURCE_GROUP;
1431 $ptAtts = $this->getAttentionsFromProfileTags();
1432 foreach ($ptAtts as $key=>$val) {
1433 if (!array_key_exists($key, $ni)) {
1438 foreach ($recipients as $recipient) {
1439 if (!array_key_exists($recipient, $ni)) {
1440 $ni[$recipient] = NOTICE_INBOX_SOURCE_REPLY;
1444 // Exclude any deleted, non-local, or blocking recipients.
1445 $profile = $this->getProfile();
1446 $originalProfile = null;
1447 if ($this->isRepeat()) {
1448 // Check blocks against the original notice's poster as well.
1449 $original = Notice::getKV('id', $this->repeat_of);
1450 if ($original instanceof Notice) {
1451 $originalProfile = $original->getProfile();
1455 foreach ($ni as $id => $source) {
1457 $user = User::getKV('id', $id);
1458 if (!$user instanceof User ||
1459 $user->hasBlocked($profile) ||
1460 ($originalProfile && $user->hasBlocked($originalProfile))) {
1463 } catch (UserNoProfileException $e) {
1464 // User doesn't have a profile; invalid; skip them.
1469 // Give plugins a chance to filter out...
1470 Event::handle('EndNoticeWhoGets', array($this, &$ni));
1474 // XXX: pack this data better
1475 $c->set(Cache::key('notice:who_gets:'.$this->id), $ni);
1481 function getSubscribedUsers()
1485 if(common_config('db','quote_identifiers'))
1486 $user_table = '"user"';
1487 else $user_table = 'user';
1491 'FROM '. $user_table .' JOIN subscription '.
1492 'ON '. $user_table .'.id = subscription.subscriber ' .
1493 'WHERE subscription.subscribed = %d ';
1495 $user->query(sprintf($qry, $this->profile_id));
1499 while ($user->fetch()) {
1508 function getProfileTags()
1510 $profile = $this->getProfile();
1511 $list = $profile->getOtherTags($profile);
1514 while($list->fetch()) {
1515 $ptags[] = clone($list);
1521 public function getAttentionsFromProfileTags()
1524 $ptags = $this->getProfileTags();
1525 foreach ($ptags as $ptag) {
1526 $users = $ptag->getUserSubscribers();
1527 foreach ($users as $id) {
1528 $ni[$id] = NOTICE_INBOX_SOURCE_PROFILE_TAG;
1535 * Record this notice to the given group inboxes for delivery.
1536 * Overrides the regular parsing of !group markup.
1538 * @param string $group_ids
1539 * @fixme might prefer URIs as identifiers, as for replies?
1540 * best with generalizations on user_group to support
1541 * remote groups better.
1543 function saveKnownGroups(array $group_ids)
1546 foreach (array_unique($group_ids) as $id) {
1547 $group = User_group::getKV('id', $id);
1548 if ($group instanceof User_group) {
1549 common_log(LOG_DEBUG, "Local delivery to group id $id, $group->nickname");
1550 $result = $this->addToGroupInbox($group);
1552 common_log_db_error($gi, 'INSERT', __FILE__);
1555 if (common_config('group', 'addtag')) {
1556 // we automatically add a tag for every group name, too
1558 $tag = Notice_tag::pkeyGet(array('tag' => common_canonical_tag($group->nickname),
1559 'notice_id' => $this->id));
1561 if (is_null($tag)) {
1562 $this->saveTag($group->nickname);
1566 $groups[] = clone($group);
1568 common_log(LOG_ERR, "Local delivery to group id $id skipped, doesn't exist");
1575 function addToGroupInbox(User_group $group)
1577 $gi = Group_inbox::pkeyGet(array('group_id' => $group->id,
1578 'notice_id' => $this->id));
1580 if (!$gi instanceof Group_inbox) {
1582 $gi = new Group_inbox();
1584 $gi->group_id = $group->id;
1585 $gi->notice_id = $this->id;
1586 $gi->created = $this->created;
1588 $result = $gi->insert();
1591 common_log_db_error($gi, 'INSERT', __FILE__);
1592 // TRANS: Server exception thrown when an update for a group inbox fails.
1593 throw new ServerException(_('Problem saving group inbox.'));
1596 self::blow('user_group:notice_ids:%d', $gi->group_id);
1602 function saveAttentions(array $uris)
1604 foreach ($uris as $uri=>$type) {
1606 $target = Profile::fromUri($uri);
1607 } catch (UnknownUriException $e) {
1608 common_log(LOG_WARNING, "Unable to determine profile for URI '$uri'");
1613 $this->saveAttention($target);
1614 } catch (AlreadyFulfilledException $e) {
1615 common_debug('Attention already exists: '.var_export($e->getMessage(),true));
1616 } catch (Exception $e) {
1617 common_log(LOG_ERR, "Could not save notice id=={$this->getID()} attention for profile id=={$target->getID()}: {$e->getMessage()}");
1623 * Saves an attention for a profile (user or group) which means
1624 * it shows up in their home feed and such.
1626 function saveAttention(Profile $target, $reason=null)
1628 if ($target->isGroup()) {
1629 // FIXME: Make sure we check (for both local and remote) users are in the groups they send to!
1631 // legacy notification method, will still be in use for quite a while I think
1632 $this->addToGroupInbox($target->getGroup());
1634 if ($target->hasBlocked($this->getProfile())) {
1635 common_log(LOG_INFO, "Not saving reply to profile {$target->id} ($uri) from sender {$sender->id} because of a block.");
1640 if ($target->isLocal()) {
1641 // legacy notification method, will still be in use for quite a while I think
1642 $this->saveReply($target->getID());
1645 $att = Attention::saveNew($this, $target, $reason);
1647 self::blow('reply:stream:%d', $target->getID());
1652 * Save reply records indicating that this notice needs to be
1653 * delivered to the local users with the given URIs.
1655 * Since this is expected to be used when saving foreign-sourced
1656 * messages, we won't deliver to any remote targets as that's the
1657 * source service's responsibility.
1659 * Mail notifications etc will be handled later.
1661 * @param array $uris Array of unique identifier URIs for recipients
1663 function saveKnownReplies(array $uris)
1669 $sender = $this->getProfile();
1671 foreach (array_unique($uris) as $uri) {
1673 $profile = Profile::fromUri($uri);
1674 } catch (UnknownUriException $e) {
1675 common_log(LOG_WARNING, "Unable to determine profile for URI '$uri'");
1679 if ($profile->hasBlocked($sender)) {
1680 common_log(LOG_INFO, "Not saving reply to profile {$profile->id} ($uri) from sender {$sender->id} because of a block.");
1684 $this->saveReply($profile->getID());
1685 self::blow('reply:stream:%d', $profile->getID());
1690 * Pull @-replies from this message's content in StatusNet markup format
1691 * and save reply records indicating that this message needs to be
1692 * delivered to those users.
1694 * Mail notifications to local profiles will be sent later.
1696 * @return array of integer profile IDs
1699 function saveReplies()
1701 $sender = $this->getProfile();
1705 // If it's a reply, save for the replied-to author
1707 $parent = $this->getParent();
1708 $parentauthor = $parent->getProfile();
1709 $this->saveReply($parentauthor->getID());
1710 $replied[$parentauthor->getID()] = 1;
1711 self::blow('reply:stream:%d', $parentauthor->getID());
1712 } catch (NoParentNoticeException $e) {
1713 // Not a reply, since it has no parent!
1715 } catch (NoResultException $e) {
1716 // Parent notice was probably deleted
1720 // @todo ideally this parser information would only
1721 // be calculated once.
1723 $mentions = common_find_mentions($this->content, $sender, $parent);
1725 foreach ($mentions as $mention) {
1727 foreach ($mention['mentioned'] as $mentioned) {
1729 // skip if they're already covered
1730 if (array_key_exists($mentioned->id, $replied)) {
1734 // Don't save replies from blocked profile to local user
1735 if ($mentioned->hasBlocked($sender)) {
1739 $this->saveReply($mentioned->id);
1740 $replied[$mentioned->id] = 1;
1741 self::blow('reply:stream:%d', $mentioned->id);
1745 $recipientIds = array_keys($replied);
1747 return $recipientIds;
1750 function saveReply($profileId)
1752 $reply = new Reply();
1754 $reply->notice_id = $this->id;
1755 $reply->profile_id = $profileId;
1756 $reply->modified = $this->created;
1763 protected $_attentionids = array();
1766 * Pull the complete list of known activity context attentions for this notice.
1768 * @return array of integer profile ids (also group profiles)
1770 function getAttentionProfileIDs()
1772 if (!isset($this->_attentionids[$this->getID()])) {
1773 $atts = Attention::multiGet('notice_id', array($this->getID()));
1774 // (array)null means empty array
1775 $this->_attentionids[$this->getID()] = (array)$atts->fetchAll('profile_id');
1777 return $this->_attentionids[$this->getID()];
1780 protected $_replies = array();
1783 * Pull the complete list of @-mentioned profile IDs for this notice.
1785 * @return array of integer profile ids
1787 function getReplies()
1789 if (!isset($this->_replies[$this->getID()])) {
1790 $mentions = Reply::multiGet('notice_id', array($this->getID()));
1791 $this->_replies[$this->getID()] = $mentions->fetchAll('profile_id');
1793 return $this->_replies[$this->getID()];
1796 function _setReplies($replies)
1798 $this->_replies[$this->getID()] = $replies;
1802 * Pull the complete list of @-reply targets for this notice.
1804 * @return array of Profiles
1806 function getAttentionProfiles()
1808 $ids = array_unique(array_merge($this->getReplies(), $this->getGroupProfileIDs(), $this->getAttentionProfileIDs()));
1810 $profiles = Profile::multiGet('id', (array)$ids);
1812 return $profiles->fetchAll();
1816 * Send e-mail notifications to local @-reply targets.
1818 * Replies must already have been saved; this is expected to be run
1819 * from the distrib queue handler.
1821 function sendReplyNotifications()
1823 // Don't send reply notifications for repeats
1824 if ($this->isRepeat()) {
1828 $recipientIds = $this->getReplies();
1829 if (Event::handle('StartNotifyMentioned', array($this, &$recipientIds))) {
1830 require_once INSTALLDIR.'/lib/mail.php';
1832 foreach ($recipientIds as $recipientId) {
1834 $user = User::getByID($recipientId);
1835 mail_notify_attn($user, $this);
1836 } catch (NoResultException $e) {
1840 Event::handle('EndNotifyMentioned', array($this, $recipientIds));
1845 * Pull list of Profile IDs of groups this notice addresses.
1847 * @return array of Group _profile_ IDs
1850 function getGroupProfileIDs()
1854 foreach ($this->getGroups() as $group) {
1855 $ids[] = $group->profile_id;
1862 * Pull list of groups this notice needs to be delivered to,
1863 * as previously recorded by saveKnownGroups().
1865 * @return array of Group objects
1868 protected $_groups = array();
1870 function getGroups()
1872 // Don't save groups for repeats
1874 if (!empty($this->repeat_of)) {
1878 if (isset($this->_groups[$this->id])) {
1879 return $this->_groups[$this->id];
1882 $gis = Group_inbox::listGet('notice_id', array($this->id));
1886 foreach ($gis[$this->id] as $gi) {
1887 $ids[] = $gi->group_id;
1890 $groups = User_group::multiGet('id', $ids);
1891 $this->_groups[$this->id] = $groups->fetchAll();
1892 return $this->_groups[$this->id];
1895 function _setGroups($groups)
1897 $this->_groups[$this->id] = $groups;
1901 * Convert a notice into an activity for export.
1903 * @param Profile $scoped The currently logged in/scoped profile
1905 * @return Activity activity object representing this Notice.
1908 function asActivity(Profile $scoped=null)
1910 $act = self::cacheGet(Cache::codeKey('notice:as-activity:'.$this->id));
1912 if ($act instanceof Activity) {
1915 $act = new Activity();
1917 if (Event::handle('StartNoticeAsActivity', array($this, $act, $scoped))) {
1919 $act->id = $this->uri;
1920 $act->time = strtotime($this->created);
1922 $act->link = $this->getUrl();
1923 } catch (InvalidUrlException $e) {
1924 // The notice is probably a share or similar, which don't
1925 // have a representational URL of their own.
1927 $act->content = common_xml_safe_str($this->getRendered());
1929 $profile = $this->getProfile();
1931 $act->actor = $profile->asActivityObject();
1932 $act->actor->extra[] = $profile->profileInfo($scoped);
1934 $act->verb = $this->verb;
1936 if (!$this->repeat_of) {
1937 $act->objects[] = $this->asActivityObject();
1940 // XXX: should this be handled by default processing for object entry?
1944 $tags = $this->getTags();
1946 foreach ($tags as $tag) {
1947 $cat = new AtomCategory();
1950 $act->categories[] = $cat;
1954 // XXX: use Atom Media and/or File activity objects instead
1956 $attachments = $this->attachments();
1958 foreach ($attachments as $attachment) {
1959 // Include local attachments in Activity
1960 if (!empty($attachment->filename)) {
1961 $act->enclosures[] = $attachment->getEnclosure();
1965 $ctx = new ActivityContext();
1968 $reply = $this->getParent();
1969 $ctx->replyToID = $reply->getUri();
1970 $ctx->replyToUrl = $reply->getUrl(true); // true for fallback to local URL, less messy
1971 } catch (NoParentNoticeException $e) {
1972 // This is not a reply to something
1973 } catch (NoResultException $e) {
1974 // Parent notice was probably deleted
1978 $ctx->location = Notice_location::locFromStored($this);
1979 } catch (ServerException $e) {
1980 $ctx->location = null;
1985 if (!empty($this->conversation)) {
1986 $conv = Conversation::getKV('id', $this->conversation);
1987 if ($conv instanceof Conversation) {
1988 $ctx->conversation = $conv->uri;
1992 // This covers the legacy getReplies and getGroups too which get their data
1993 // from entries stored via Notice::saveNew (which we want to move away from)...
1994 foreach ($this->getAttentionProfiles() as $target) {
1995 // User and group profiles which get the attention of this notice
1996 $ctx->attention[$target->getUri()] = $target->getObjectType();
1999 switch ($this->scope) {
2000 case Notice::PUBLIC_SCOPE:
2001 $ctx->attention[ActivityContext::ATTN_PUBLIC] = ActivityObject::COLLECTION;
2003 case Notice::FOLLOWER_SCOPE:
2004 $surl = common_local_url("subscribers", array('nickname' => $profile->nickname));
2005 $ctx->attention[$surl] = ActivityObject::COLLECTION;
2009 $act->context = $ctx;
2011 $source = $this->getSource();
2013 if ($source instanceof Notice_source) {
2014 $act->generator = ActivityObject::fromNoticeSource($source);
2019 $atom_feed = $profile->getAtomFeed();
2021 if (!empty($atom_feed)) {
2023 $act->source = new ActivitySource();
2025 // XXX: we should store the actual feed ID
2027 $act->source->id = $atom_feed;
2029 // XXX: we should store the actual feed title
2031 $act->source->title = $profile->getBestName();
2033 $act->source->links['alternate'] = $profile->profileurl;
2034 $act->source->links['self'] = $atom_feed;
2036 $act->source->icon = $profile->avatarUrl(AVATAR_PROFILE_SIZE);
2038 $notice = $profile->getCurrentNotice();
2040 if ($notice instanceof Notice) {
2041 $act->source->updated = self::utcDate($notice->created);
2044 $user = User::getKV('id', $profile->id);
2046 if ($user instanceof User) {
2047 $act->source->links['license'] = common_config('license', 'url');
2051 if ($this->isLocal()) {
2052 $act->selfLink = common_local_url('ApiStatusesShow', array('id' => $this->id,
2053 'format' => 'atom'));
2054 $act->editLink = $act->selfLink;
2057 Event::handle('EndNoticeAsActivity', array($this, $act, $scoped));
2060 self::cacheSet(Cache::codeKey('notice:as-activity:'.$this->id), $act);
2065 // This has gotten way too long. Needs to be sliced up into functional bits
2066 // or ideally exported to a utility class.
2068 function asAtomEntry($namespace=false,
2071 Profile $scoped=null)
2073 $act = $this->asActivity($scoped);
2074 $act->extra[] = $this->noticeInfo($scoped);
2075 return $act->asString($namespace, $author, $source);
2079 * Extra notice info for atom entries
2081 * Clients use some extra notice info in the atom stream.
2082 * This gives it to them.
2084 * @param Profile $scoped The currently logged in/scoped profile
2086 * @return array representation of <statusnet:notice_info> element
2089 function noticeInfo(Profile $scoped=null)
2091 // local notice ID (useful to clients for ordering)
2093 $noticeInfoAttr = array('local_id' => $this->id);
2097 $ns = $this->getSource();
2099 if ($ns instanceof Notice_source) {
2100 $noticeInfoAttr['source'] = $ns->code;
2101 if (!empty($ns->url)) {
2102 $noticeInfoAttr['source_link'] = $ns->url;
2103 if (!empty($ns->name)) {
2104 $noticeInfoAttr['source'] = '<a href="'
2105 . htmlspecialchars($ns->url)
2106 . '" rel="nofollow">'
2107 . htmlspecialchars($ns->name)
2113 // favorite and repeated
2115 if ($scoped instanceof Profile) {
2116 $noticeInfoAttr['repeated'] = ($scoped->hasRepeated($this)) ? "true" : "false";
2119 if (!empty($this->repeat_of)) {
2120 $noticeInfoAttr['repeat_of'] = $this->repeat_of;
2123 Event::handle('StatusNetApiNoticeInfo', array($this, &$noticeInfoAttr, $scoped));
2125 return array('statusnet:notice_info', $noticeInfoAttr, null);
2129 * Returns an XML string fragment with a reference to a notice as an
2130 * Activity Streams noun object with the given element type.
2132 * Assumes that 'activity' namespace has been previously defined.
2134 * @param string $element one of 'subject', 'object', 'target'
2138 function asActivityNoun($element)
2140 $noun = $this->asActivityObject();
2141 return $noun->asString('activity:' . $element);
2144 public function asActivityObject()
2146 $object = new ActivityObject();
2148 if (Event::handle('StartActivityObjectFromNotice', array($this, &$object))) {
2149 $object->type = $this->object_type ?: ActivityObject::NOTE;
2150 $object->id = $this->getUri();
2151 //FIXME: = $object->title ?: sprintf(... because we might get a title from StartActivityObjectFromNotice
2152 $object->title = sprintf('New %1$s by %2$s', ActivityObject::canonicalType($object->type), $this->getProfile()->getNickname());
2153 $object->content = $this->getRendered();
2154 $object->link = $this->getUrl();
2156 $object->extra[] = array('status_net', array('notice_id' => $this->id));
2158 Event::handle('EndActivityObjectFromNotice', array($this, &$object));
2161 if (!$object instanceof ActivityObject) {
2162 common_log(LOG_ERR, 'Notice asActivityObject created something else for uri=='._ve($this->getUri()).': '._ve($object));
2163 throw new ServerException('Notice asActivityObject created something else.');
2170 * Determine which notice, if any, a new notice is in reply to.
2172 * For conversation tracking, we try to see where this notice fits
2173 * in the tree. Beware that this may very well give false positives
2174 * and add replies to wrong threads (if there have been newer posts
2175 * by the same user as we're replying to).
2177 * @param Profile $sender Author profile
2178 * @param string $content Final notice content
2180 * @return integer ID of replied-to notice, or null for not a reply.
2183 static function getInlineReplyTo(Profile $sender, $content)
2185 // Is there an initial @ or T?
2186 if (preg_match('/^T ([A-Z0-9]{1,64}) /', $content, $match)
2187 || preg_match('/^@([a-z0-9]{1,64})\s+/', $content, $match)) {
2188 $nickname = common_canonical_nickname($match[1]);
2193 // Figure out who that is.
2194 $recipient = common_relative_profile($sender, $nickname, common_sql_now());
2196 if ($recipient instanceof Profile) {
2197 // Get their last notice
2198 $last = $recipient->getCurrentNotice();
2199 if ($last instanceof Notice) {
2202 // Maybe in the future we want to handle something else below
2203 // so don't return getCurrentNotice() immediately.
2209 static function maxContent()
2211 $contentlimit = common_config('notice', 'contentlimit');
2212 // null => use global limit (distinct from 0!)
2213 if (is_null($contentlimit)) {
2214 $contentlimit = common_config('site', 'textlimit');
2216 return $contentlimit;
2219 static function contentTooLong($content)
2221 $contentlimit = self::maxContent();
2222 return ($contentlimit > 0 && !empty($content) && (mb_strlen($content) > $contentlimit));
2226 * Convenience function for posting a repeat of an existing message.
2228 * @param Profile $repeater Profile which is doing the repeat
2229 * @param string $source: posting source key, eg 'web', 'api', etc
2232 * @throws Exception on failure or permission problems
2234 function repeat(Profile $repeater, $source)
2236 $author = $this->getProfile();
2238 // TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
2239 // TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
2240 $content = sprintf(_('RT @%1$s %2$s'),
2241 $author->getNickname(),
2244 $maxlen = self::maxContent();
2245 if ($maxlen > 0 && mb_strlen($content) > $maxlen) {
2246 // Web interface and current Twitter API clients will
2247 // pull the original notice's text, but some older
2248 // clients and RSS/Atom feeds will see this trimmed text.
2250 // Unfortunately this is likely to lose tags or URLs
2251 // at the end of long notices.
2252 $content = mb_substr($content, 0, $maxlen - 4) . ' ...';
2256 // Scope is same as this one's
2257 return self::saveNew($repeater->id,
2260 array('repeat_of' => $this->id,
2261 'scope' => $this->scope));
2264 // These are supposed to be in chron order!
2266 function repeatStream($limit=100)
2268 $cache = Cache::instance();
2270 if (empty($cache)) {
2271 $ids = $this->_repeatStreamDirect($limit);
2273 $idstr = $cache->get(Cache::key('notice:repeats:'.$this->id));
2274 if ($idstr !== false) {
2275 if (empty($idstr)) {
2278 $ids = explode(',', $idstr);
2281 $ids = $this->_repeatStreamDirect(100);
2282 $cache->set(Cache::key('notice:repeats:'.$this->id), implode(',', $ids));
2285 // We do a max of 100, so slice down to limit
2286 $ids = array_slice($ids, 0, $limit);
2290 return NoticeStream::getStreamByIds($ids);
2293 function _repeatStreamDirect($limit)
2295 $notice = new Notice();
2297 $notice->selectAdd(); // clears it
2298 $notice->selectAdd('id');
2300 $notice->repeat_of = $this->id;
2302 $notice->orderBy('created, id'); // NB: asc!
2304 if (!is_null($limit)) {
2305 $notice->limit(0, $limit);
2308 return $notice->fetchAll('id');
2311 static function locationOptions($lat, $lon, $location_id, $location_ns, $profile = null)
2315 if (!empty($location_id) && !empty($location_ns)) {
2316 $options['location_id'] = $location_id;
2317 $options['location_ns'] = $location_ns;
2319 $location = Location::fromId($location_id, $location_ns);
2321 if ($location instanceof Location) {
2322 $options['lat'] = $location->lat;
2323 $options['lon'] = $location->lon;
2326 } else if (!empty($lat) && !empty($lon)) {
2327 $options['lat'] = $lat;
2328 $options['lon'] = $lon;
2330 $location = Location::fromLatLon($lat, $lon);
2332 if ($location instanceof Location) {
2333 $options['location_id'] = $location->location_id;
2334 $options['location_ns'] = $location->location_ns;
2336 } else if (!empty($profile)) {
2337 if (isset($profile->lat) && isset($profile->lon)) {
2338 $options['lat'] = $profile->lat;
2339 $options['lon'] = $profile->lon;
2342 if (isset($profile->location_id) && isset($profile->location_ns)) {
2343 $options['location_id'] = $profile->location_id;
2344 $options['location_ns'] = $profile->location_ns;
2351 function clearAttentions()
2353 $att = new Attention();
2354 $att->notice_id = $this->getID();
2357 while ($att->fetch()) {
2358 // Can't do delete() on the object directly since it won't remove all of it
2359 $other = clone($att);
2365 function clearReplies()
2367 $replyNotice = new Notice();
2368 $replyNotice->reply_to = $this->id;
2370 //Null any notices that are replies to this notice
2372 if ($replyNotice->find()) {
2373 while ($replyNotice->fetch()) {
2374 $orig = clone($replyNotice);
2375 $replyNotice->reply_to = null;
2376 $replyNotice->update($orig);
2382 $reply = new Reply();
2383 $reply->notice_id = $this->id;
2385 if ($reply->find()) {
2386 while($reply->fetch()) {
2387 self::blow('reply:stream:%d', $reply->profile_id);
2395 function clearLocation()
2397 $loc = new Notice_location();
2398 $loc->notice_id = $this->id;
2405 function clearFiles()
2407 $f2p = new File_to_post();
2409 $f2p->post_id = $this->id;
2412 while ($f2p->fetch()) {
2416 // FIXME: decide whether to delete File objects
2417 // ...and related (actual) files
2420 function clearRepeats()
2422 $repeatNotice = new Notice();
2423 $repeatNotice->repeat_of = $this->id;
2425 //Null any notices that are repeats of this notice
2427 if ($repeatNotice->find()) {
2428 while ($repeatNotice->fetch()) {
2429 $orig = clone($repeatNotice);
2430 $repeatNotice->repeat_of = null;
2431 $repeatNotice->update($orig);
2436 function clearTags()
2438 $tag = new Notice_tag();
2439 $tag->notice_id = $this->id;
2442 while ($tag->fetch()) {
2443 self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, Cache::keyize($tag->tag));
2444 self::blow('profile:notice_ids_tagged:%d:%s;last', $this->profile_id, Cache::keyize($tag->tag));
2445 self::blow('notice_tag:notice_ids:%s', Cache::keyize($tag->tag));
2446 self::blow('notice_tag:notice_ids:%s;last', Cache::keyize($tag->tag));
2454 function clearGroupInboxes()
2456 $gi = new Group_inbox();
2458 $gi->notice_id = $this->id;
2461 while ($gi->fetch()) {
2462 self::blow('user_group:notice_ids:%d', $gi->group_id);
2470 function distribute()
2472 // We always insert for the author so they don't
2474 Event::handle('StartNoticeDistribute', array($this));
2476 // If there's a failure, we want to _force_
2477 // distribution at this point.
2479 $json = json_encode((object)array('id' => $this->getID(),
2482 $qm = QueueManager::get();
2483 $qm->enqueue($json, 'distrib');
2484 } catch (Exception $e) {
2485 // If the exception isn't transient, this
2486 // may throw more exceptions as DQH does
2487 // its own enqueueing. So, we ignore them!
2489 $handler = new DistribQueueHandler();
2490 $handler->handle($this);
2491 } catch (Exception $e) {
2492 common_log(LOG_ERR, "emergency redistribution resulted in " . $e->getMessage());
2494 // Re-throw so somebody smarter can handle it.
2501 $result = parent::insert();
2503 if ($result === false) {
2504 common_log_db_error($this, 'INSERT', __FILE__);
2505 // TRANS: Server exception thrown when a stored object entry cannot be saved.
2506 throw new ServerException('Could not save Notice');
2509 // Profile::hasRepeated() abuses pkeyGet(), so we
2510 // have to clear manually
2511 if (!empty($this->repeat_of)) {
2512 $c = self::memcache();
2514 $ck = self::multicacheKey('Notice',
2515 array('profile_id' => $this->profile_id,
2516 'repeat_of' => $this->repeat_of));
2521 // Update possibly ID-dependent columns: URI, conversation
2522 // (now that INSERT has added the notice's local id)
2523 $orig = clone($this);
2526 // We can only get here if it's a local notice, since remote notices
2527 // should've bailed out earlier due to lacking a URI.
2528 if (empty($this->uri)) {
2529 $this->uri = sprintf('%s%s=%d:%s=%s',
2531 'noticeId', $this->id,
2532 'objectType', $this->getObjectType(true));
2536 if ($changed && $this->update($orig) === false) {
2537 common_log_db_error($notice, 'UPDATE', __FILE__);
2538 // TRANS: Server exception thrown when a notice cannot be updated.
2539 throw new ServerException(_('Problem saving notice.'));
2542 $this->blowOnInsert();
2548 * Get the source of the notice
2550 * @return Notice_source $ns A notice source object. 'code' is the only attribute
2551 * guaranteed to be populated.
2553 function getSource()
2555 if (empty($this->source)) {
2559 $ns = new Notice_source();
2560 switch ($this->source) {
2567 $ns->code = $this->source;
2570 $ns = Notice_source::getKV($this->source);
2572 $ns = new Notice_source();
2573 $ns->code = $this->source;
2574 $app = Oauth_application::getKV('name', $this->source);
2576 $ns->name = $app->name;
2577 $ns->url = $app->source_url;
2587 * Determine whether the notice was locally created
2589 * @return boolean locality
2592 public function isLocal()
2594 $is_local = intval($this->is_local);
2595 return ($is_local === self::LOCAL_PUBLIC || $is_local === self::LOCAL_NONPUBLIC);
2598 public function getScope()
2600 return intval($this->scope);
2603 public function isRepeat()
2605 return !empty($this->repeat_of);
2609 * Get the list of hash tags saved with this notice.
2611 * @return array of strings
2613 public function getTags()
2617 $keypart = sprintf('notice:tags:%d', $this->id);
2619 $tagstr = self::cacheGet($keypart);
2621 if ($tagstr !== false) {
2622 $tags = explode(',', $tagstr);
2624 $tag = new Notice_tag();
2625 $tag->notice_id = $this->id;
2627 while ($tag->fetch()) {
2628 $tags[] = $tag->tag;
2631 self::cacheSet($keypart, implode(',', $tags));
2637 static private function utcDate($dt)
2639 $dateStr = date('d F Y H:i:s', strtotime($dt));
2640 $d = new DateTime($dateStr, new DateTimeZone('UTC'));
2641 return $d->format(DATE_W3C);
2645 * Look up the creation timestamp for a given notice ID, even
2646 * if it's been deleted.
2649 * @return mixed string recorded creation timestamp, or false if can't be found
2651 public static function getAsTimestamp($id)
2654 throw new EmptyIdException('Notice');
2658 if (Event::handle('GetNoticeSqlTimestamp', array($id, &$timestamp))) {
2659 // getByID throws exception if $id isn't found
2660 $notice = Notice::getByID($id);
2661 $timestamp = $notice->created;
2664 if (empty($timestamp)) {
2665 throw new ServerException('No timestamp found for Notice with id=='._ve($id));
2671 * Build an SQL 'where' fragment for timestamp-based sorting from a since_id
2672 * parameter, matching notices posted after the given one (exclusive).
2674 * If the referenced notice can't be found, will return false.
2677 * @param string $idField
2678 * @param string $createdField
2679 * @return mixed string or false if no match
2681 public static function whereSinceId($id, $idField='id', $createdField='created')
2684 $since = Notice::getAsTimestamp($id);
2685 } catch (Exception $e) {
2688 return sprintf("($createdField = '%s' and $idField > %d) or ($createdField > '%s')", $since, $id, $since);
2692 * Build an SQL 'where' fragment for timestamp-based sorting from a since_id
2693 * parameter, matching notices posted after the given one (exclusive), and
2694 * if necessary add it to the data object's query.
2696 * @param DB_DataObject $obj
2698 * @param string $idField
2699 * @param string $createdField
2700 * @return mixed string or false if no match
2702 public static function addWhereSinceId(DB_DataObject $obj, $id, $idField='id', $createdField='created')
2704 $since = self::whereSinceId($id, $idField, $createdField);
2706 $obj->whereAdd($since);
2711 * Build an SQL 'where' fragment for timestamp-based sorting from a max_id
2712 * parameter, matching notices posted before the given one (inclusive).
2714 * If the referenced notice can't be found, will return false.
2717 * @param string $idField
2718 * @param string $createdField
2719 * @return mixed string or false if no match
2721 public static function whereMaxId($id, $idField='id', $createdField='created')
2724 $max = Notice::getAsTimestamp($id);
2725 } catch (Exception $e) {
2728 return sprintf("($createdField < '%s') or ($createdField = '%s' and $idField <= %d)", $max, $max, $id);
2732 * Build an SQL 'where' fragment for timestamp-based sorting from a max_id
2733 * parameter, matching notices posted before the given one (inclusive), and
2734 * if necessary add it to the data object's query.
2736 * @param DB_DataObject $obj
2738 * @param string $idField
2739 * @param string $createdField
2740 * @return mixed string or false if no match
2742 public static function addWhereMaxId(DB_DataObject $obj, $id, $idField='id', $createdField='created')
2744 $max = self::whereMaxId($id, $idField, $createdField);
2746 $obj->whereAdd($max);
2752 return (($this->is_local != Notice::LOCAL_NONPUBLIC) &&
2753 ($this->is_local != Notice::GATEWAY));
2757 * Check that the given profile is allowed to read, respond to, or otherwise
2758 * act on this notice.
2760 * The $scope member is a bitmask of scopes, representing a logical AND of the
2761 * scope requirement. So, 0x03 (Notice::ADDRESSEE_SCOPE | Notice::SITE_SCOPE) means
2762 * "only visible to people who are mentioned in the notice AND are users on this site."
2763 * Users on the site who are not mentioned in the notice will not be able to see the
2766 * @param Profile $profile The profile to check; pass null to check for public/unauthenticated users.
2768 * @return boolean whether the profile is in the notice's scope
2770 function inScope($profile)
2772 if (is_null($profile)) {
2773 $keypart = sprintf('notice:in-scope-for:%d:null', $this->id);
2775 $keypart = sprintf('notice:in-scope-for:%d:%d', $this->id, $profile->id);
2778 $result = self::cacheGet($keypart);
2780 if ($result === false) {
2782 if (Event::handle('StartNoticeInScope', array($this, $profile, &$bResult))) {
2783 $bResult = $this->_inScope($profile);
2784 Event::handle('EndNoticeInScope', array($this, $profile, &$bResult));
2786 $result = ($bResult) ? 1 : 0;
2787 self::cacheSet($keypart, $result, 0, 300);
2790 return ($result == 1) ? true : false;
2793 protected function _inScope($profile)
2795 $scope = is_null($this->scope) ? self::defaultScope() : $this->getScope();
2797 if ($scope === 0 && !$this->getProfile()->isPrivateStream()) { // Not scoping, so it is public.
2798 return !$this->isHiddenSpam($profile);
2801 // If there's scope, anon cannot be in scope
2802 if (empty($profile)) {
2806 // Author is always in scope
2807 if ($this->profile_id == $profile->id) {
2811 // Only for users on this site
2812 if (($scope & Notice::SITE_SCOPE) && !$profile->isLocal()) {
2816 // Only for users mentioned in the notice
2817 if ($scope & Notice::ADDRESSEE_SCOPE) {
2819 $reply = Reply::pkeyGet(array('notice_id' => $this->id,
2820 'profile_id' => $profile->id));
2822 if (!$reply instanceof Reply) {
2827 // Only for members of the given group
2828 if ($scope & Notice::GROUP_SCOPE) {
2830 // XXX: just query for the single membership
2832 $groups = $this->getGroups();
2836 foreach ($groups as $group) {
2837 if ($profile->isMember($group)) {
2848 if ($scope & Notice::FOLLOWER_SCOPE || $this->getProfile()->isPrivateStream()) {
2850 if (!Subscription::exists($profile, $this->getProfile())) {
2855 return !$this->isHiddenSpam($profile);
2858 function isHiddenSpam($profile) {
2860 // Hide posts by silenced users from everyone but moderators.
2862 if (common_config('notice', 'hidespam')) {
2865 $author = $this->getProfile();
2866 } catch(Exception $e) {
2867 // If we can't get an author, keep it hidden.
2868 // XXX: technically not spam, but, whatever.
2872 if ($author->hasRole(Profile_role::SILENCED)) {
2873 if (!$profile instanceof Profile || (($profile->id !== $author->id) && (!$profile->hasRight(Right::REVIEWSPAM)))) {
2882 public function hasParent()
2886 } catch (NoParentNoticeException $e) {
2892 public function getParent()
2894 $reply_to_id = null;
2896 if (empty($this->reply_to)) {
2897 throw new NoParentNoticeException($this);
2900 // The reply_to ID in the table Notice could exist with a number
2901 // however, the replied to notice might not exist in the database.
2902 // Thus we need to catch the exception and throw the NoParentNoticeException else
2903 // the timeline will not display correctly.
2905 $reply_to_id = self::getByID($this->reply_to);
2906 } catch(Exception $e){
2907 throw new NoParentNoticeException($this);
2910 return $reply_to_id;
2914 * Magic function called at serialize() time.
2916 * We use this to drop a couple process-specific references
2917 * from DB_DataObject which can cause trouble in future
2920 * @return array of variable names to include in serialization.
2925 $vars = parent::__sleep();
2926 $skip = array('_profile', '_groups', '_attachments', '_faves', '_replies', '_repeats');
2927 return array_diff($vars, $skip);
2930 static function defaultScope()
2932 $scope = common_config('notice', 'defaultscope');
2933 if (is_null($scope)) {
2934 if (common_config('site', 'private')) {
2943 static function fillProfiles($notices)
2945 $map = self::getProfiles($notices);
2946 foreach ($notices as $entry=>$notice) {
2948 if (array_key_exists($notice->profile_id, $map)) {
2949 $notice->_setProfile($map[$notice->profile_id]);
2951 } catch (NoProfileException $e) {
2952 common_log(LOG_WARNING, "Failed to fill profile in Notice with non-existing entry for profile_id: {$e->profile_id}");
2953 unset($notices[$entry]);
2957 return array_values($map);
2960 static function getProfiles(&$notices)
2963 foreach ($notices as $notice) {
2964 $ids[] = $notice->profile_id;
2966 $ids = array_unique($ids);
2967 return Profile::pivotGet('id', $ids);
2970 static function fillGroups(&$notices)
2972 $ids = self::_idsOf($notices);
2973 $gis = Group_inbox::listGet('notice_id', $ids);
2976 foreach ($gis as $id => $gi) {
2979 $gids[] = $g->group_id;
2983 $gids = array_unique($gids);
2984 $group = User_group::pivotGet('id', $gids);
2985 foreach ($notices as $notice)
2988 $gi = $gis[$notice->id];
2989 foreach ($gi as $g) {
2990 $grps[] = $group[$g->group_id];
2992 $notice->_setGroups($grps);
2996 static function _idsOf(array &$notices)
2999 foreach ($notices as $notice) {
3000 $ids[$notice->id] = true;
3002 return array_keys($ids);
3005 static function fillAttachments(&$notices)
3007 $ids = self::_idsOf($notices);
3008 $f2pMap = File_to_post::listGet('post_id', $ids);
3010 foreach ($f2pMap as $noticeId => $f2ps) {
3011 foreach ($f2ps as $f2p) {
3012 $fileIds[] = $f2p->file_id;
3016 $fileIds = array_unique($fileIds);
3017 $fileMap = File::pivotGet('id', $fileIds);
3018 foreach ($notices as $notice)
3021 $f2ps = $f2pMap[$notice->id];
3022 foreach ($f2ps as $f2p) {
3023 $files[] = $fileMap[$f2p->file_id];
3025 $notice->_setAttachments($files);
3029 static function fillReplies(&$notices)
3031 $ids = self::_idsOf($notices);
3032 $replyMap = Reply::listGet('notice_id', $ids);
3033 foreach ($notices as $notice) {
3034 $replies = $replyMap[$notice->id];
3036 foreach ($replies as $reply) {
3037 $ids[] = $reply->profile_id;
3039 $notice->_setReplies($ids);
3043 static public function beforeSchemaUpdate()
3045 $table = strtolower(get_called_class());
3046 $schema = Schema::get();
3047 $schemadef = $schema->getTableDef($table);
3049 // 2015-09-04 We move Notice location data to Notice_location
3050 // First we see if we have to do this at all
3051 if (!isset($schemadef['fields']['lat'])
3052 && !isset($schemadef['fields']['lon'])
3053 && !isset($schemadef['fields']['location_id'])
3054 && !isset($schemadef['fields']['location_ns'])) {
3055 // We have already removed the location fields, so no need to migrate.
3058 // Then we make sure the Notice_location table is created!
3059 $schema->ensureTable('notice_location', Notice_location::schemaDef());
3061 // Then we continue on our road to migration!
3062 echo "\nFound old $table table, moving location data to 'notice_location' table... (this will probably take a LONG time, but can be aborted and continued)";
3064 $notice = new Notice();
3065 $notice->query(sprintf('SELECT id, lat, lon, location_id, location_ns FROM %1$s ' .
3066 'WHERE lat IS NOT NULL ' .
3067 'OR lon IS NOT NULL ' .
3068 'OR location_id IS NOT NULL ' .
3069 'OR location_ns IS NOT NULL',
3070 $schema->quoteIdentifier($table)));
3071 print "\nFound {$notice->N} notices with location data, inserting";
3072 while ($notice->fetch()) {
3073 $notloc = Notice_location::getKV('notice_id', $notice->id);
3074 if ($notloc instanceof Notice_location) {
3078 $notloc = new Notice_location();
3079 $notloc->notice_id = $notice->id;
3080 $notloc->lat= $notice->lat;
3081 $notloc->lon= $notice->lon;
3082 $notloc->location_id= $notice->location_id;
3083 $notloc->location_ns= $notice->location_ns;