X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fshownotice.php;h=ff39080eeb0cacd4c2cd1185e94cf9c83b27ac17;hb=b0c4e8fc3d406b6d2dc8b54b1892b39e0bb796bc;hp=91b0901bf464a7548eec6f2ea55cd65645066034;hpb=26baad63f2e7d5cd0f783aacdb9eb2a65a638656;p=quix0rs-gnu-social.git diff --git a/actions/shownotice.php b/actions/shownotice.php index 91b0901bf4..ff39080eeb 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -22,18 +22,14 @@ * @category Personal * @package StatusNet * @author Evan Prodromou - * @copyright 2008-2009 StatusNet, Inc. + * @copyright 2008-2011 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ -if (!defined('STATUSNET') && !defined('LACONICA')) { - exit(1); -} +if (!defined('GNUSOCIAL')) { exit(1); } -require_once INSTALLDIR.'/lib/personalgroupnav.php'; require_once INSTALLDIR.'/lib/noticelist.php'; -require_once INSTALLDIR.'/lib/feedlist.php'; /** * Show a single notice @@ -44,25 +40,21 @@ require_once INSTALLDIR.'/lib/feedlist.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - -class ShownoticeAction extends OwnerDesignAction +class ShownoticeAction extends Action { /** * Notice object to show */ - var $notice = null; /** * Profile of the notice object */ - var $profile = null; /** * Avatar of the profile of the notice object */ - var $avatar = null; /** @@ -74,46 +66,75 @@ class ShownoticeAction extends OwnerDesignAction * * @return success flag */ - - function prepare($args) + protected function prepare(array $args=array()) { parent::prepare($args); + if ($this->boolean('ajax')) { + StatusNet::setApi(true); + } - $id = $this->arg('notice'); - - $this->notice = Notice::staticGet($id); + $this->notice = $this->getNotice(); - if (empty($this->notice)) { - // Did we used to have it, and it got deleted? - $deleted = Deleted_notice::staticGet($id); - if (!empty($deleted)) { - $this->clientError(_('Notice deleted.'), 410); - } else { - $this->clientError(_('No such notice.'), 404); - } - return false; + if (!$this->notice->inScope($this->scoped)) { + // TRANS: Client exception thrown when trying a view a notice the user has no access to. + throw new ClientException(_('Not available.'), 403); } $this->profile = $this->notice->getProfile(); - if (empty($this->profile)) { + if (!$this->profile instanceof Profile) { + // TRANS: Server error displayed trying to show a notice without a connected profile. $this->serverError(_('Notice has no profile.'), 500); - return false; } - $this->user = User::staticGet('id', $this->profile->id); + try { + $this->user = $this->profile->getUser(); + } catch (NoSuchUserException $e) { + // FIXME: deprecate $this->user stuff in extended classes + $this->user = null; + } - $this->avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE); + try { + $this->avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE); + } catch (Exception $e) { + $this->avatar = null; + } return true; } + /** + * Fetch the notice to show. This may be overridden by child classes to + * customize what we fetch without duplicating all of the prepare() method. + * + * @return Notice + */ + protected function getNotice() + { + $id = $this->arg('notice'); + + $notice = Notice::getKV('id', $id); + + if (!$notice instanceof Notice) { + // Did we used to have it, and it got deleted? + $deleted = Deleted_notice::getKV($id); + if ($deleted instanceof Deleted_notice) { + // TRANS: Client error displayed trying to show a deleted notice. + $this->clientError(_('Notice deleted.'), 410); + } else { + // TRANS: Client error displayed trying to show a non-existing notice. + $this->clientError(_('No such notice.'), 404); + } + return false; + } + return $notice; + } + /** * Is this action read-only? * * @return boolean true */ - function isReadOnly($args) { return true; @@ -127,7 +148,6 @@ class ShownoticeAction extends OwnerDesignAction * * @return int last-modified date as unix timestamp */ - function lastModified() { return max(strtotime($this->notice->modified), @@ -144,7 +164,6 @@ class ShownoticeAction extends OwnerDesignAction * * @return string etag */ - function etag() { $avtime = ($this->avatar) ? @@ -164,11 +183,12 @@ class ShownoticeAction extends OwnerDesignAction * * @return string title of the page */ - function title() { $base = $this->profile->getFancyName(); + // TRANS: Title of the page that shows a notice. + // TRANS: %1$s is a user name, %2$s is the notice creation date/time. return sprintf(_('%1$s\'s status on %2$s'), $base, common_exact_date($this->notice->created)); @@ -183,37 +203,15 @@ class ShownoticeAction extends OwnerDesignAction * * @return void */ - - function handle($args) + protected function handle() { - parent::handle($args); - - if ($this->notice->is_local == Notice::REMOTE_OMB) { - if (!empty($this->notice->url)) { - $target = $this->notice->url; - } else if (!empty($this->notice->uri) && preg_match('/^https?:/', $this->notice->uri)) { - // Old OMB posts saved the remote URL only into the URI field. - $target = $this->notice->uri; - } else { - // Shouldn't happen. - $target = false; - } - if ($target && $target != $this->selfUrl()) { - common_redirect($target, 301); - return false; - } - } - $this->showPage(); - } - - /** - * Don't show local navigation - * - * @return void - */ + parent::handle(); - function showLocalNavBlock() - { + if (StatusNet::isAjax()) { + $this->showAjax(); + } else { + $this->showPage(); + } } /** @@ -223,7 +221,6 @@ class ShownoticeAction extends OwnerDesignAction * * @return void */ - function showContent() { $this->elementStart('ol', array('class' => 'notices xoxo')); @@ -232,12 +229,25 @@ class ShownoticeAction extends OwnerDesignAction $this->elementEnd('ol'); } + function showAjax() + { + $this->startHTML('text/xml;charset=utf-8'); + $this->elementStart('head'); + // TRANS: Title for page that shows a notice. + $this->element('title', null, _m('TITLE','Notice')); + $this->elementEnd('head'); + $this->elementStart('body'); + $nli = new NoticeListItem($this->notice, $this); + $nli->show(); + $this->elementEnd('body'); + $this->endHTML(); + } + /** * Don't show page notice * * @return void */ - function showPageNoticeBlock() { } @@ -247,7 +257,6 @@ class ShownoticeAction extends OwnerDesignAction * * @return void */ - function showAside() { } @@ -258,10 +267,9 @@ class ShownoticeAction extends OwnerDesignAction * * @return void */ - function extraHead() { - $user = User::staticGet($this->profile->id); + $user = User::getKV($this->profile->id); if (!$user) { return; @@ -279,21 +287,18 @@ class ShownoticeAction extends OwnerDesignAction 'href'=>common_local_url( 'oembed', array(), - array('format'=>'json','url'=>$this->notice->uri)), + array('format'=>'json','url'=>$this->notice->getUrl())), 'title'=>'oEmbed'),null); $this->element('link',array('rel'=>'alternate', 'type'=>'text/xml+oembed', 'href'=>common_local_url( 'oembed', array(), - array('format'=>'xml','url'=>$this->notice->uri)), + array('format'=>'xml','url'=>$this->notice->getUrl())), 'title'=>'oEmbed'),null); // Extras to aid in sharing notices to Facebook - $avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE); - $avatarUrl = ($avatar) ? - $avatar->displayUrl() : - Avatar::defaultImage(AVATAR_PROFILE_SIZE); + $avatarUrl = $this->profile->avatarUrl(AVATAR_PROFILE_SIZE); $this->element('meta', array('property' => 'og:image', 'content' => $avatarUrl)); $this->element('meta', array('property' => 'og:description', @@ -301,62 +306,11 @@ class ShownoticeAction extends OwnerDesignAction } } +// @todo FIXME: Class documentation missing. class SingleNoticeItem extends DoFollowListItem { - /** - * recipe function for displaying a single notice. - * - * We overload to show attachments. - * - * @return void - */ - - function show() - { - $this->showStart(); - if (Event::handle('StartShowNoticeItem', array($this))) { - $this->showNotice(); - $this->showNoticeAttachments(); - $this->showNoticeInfo(); - $this->showNoticeOptions(); - Event::handle('EndShowNoticeItem', array($this)); - } - - $this->showEnd(); - } - - /** - * For our zoomed-in special case we'll use a fuller list - * for the attachment info. - */ - function showNoticeAttachments() { - $al = new AttachmentList($this->notice, $this->out); - $al->show(); - } - - /** - * show the avatar of the notice's author - * - * We use the larger size for single notice page. - * - * @return void - */ - - function showAvatar() + function avatarSize() { - $avatar_size = AVATAR_PROFILE_SIZE; - - $avatar = $this->profile->getAvatar($avatar_size); - - $this->out->element('img', array('src' => ($avatar) ? - $avatar->displayUrl() : - Avatar::defaultImage($avatar_size), - 'class' => 'avatar photo', - 'width' => $avatar_size, - 'height' => $avatar_size, - 'alt' => - ($this->profile->fullname) ? - $this->profile->fullname : - $this->profile->nickname)); + return AVATAR_STREAM_SIZE; } }