]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/shownotice.php
ShowprofiletagAction now extends ShowstreamAction
[quix0rs-gnu-social.git] / actions / shownotice.php
index 5e2be9f9d2b2ff48c685026779178a76e3b6e157..23386868ddbc1b042b3151b29340b952c86cf35c 100644 (file)
@@ -40,7 +40,7 @@ require_once INSTALLDIR.'/lib/noticelist.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 Action
+class ShownoticeAction extends ManagedAction
 {
     /**
      * Notice object to show
@@ -70,14 +70,14 @@ class ShownoticeAction extends Action
     {
         parent::prepare($args);
         if ($this->boolean('ajax')) {
-            StatusNet::setApi(true);
+            GNUsocial::setApi(true);
         }
 
         $this->notice = $this->getNotice();
 
         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);
+            throw new ClientException(_('Access restricted.'), 403);
         }
 
         $this->profile = $this->notice->getProfile();
@@ -184,33 +184,7 @@ class ShownoticeAction extends Action
      */
     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));
-    }
-
-    /**
-     * Handle input
-     *
-     * Only handles get, so just show the page.
-     *
-     * @param array $args $_REQUEST data (unused)
-     *
-     * @return void
-     */
-    protected function handle()
-    {
-        parent::handle();
-
-        if (StatusNet::isAjax()) {
-            $this->showAjax();
-        } else {
-            $this->showPage();
-        }
+        return $this->notice->getTitle();
     }
 
     /**
@@ -223,23 +197,9 @@ class ShownoticeAction extends Action
     function showContent()
     {
         $this->elementStart('ol', array('class' => 'notices xoxo'));
-        $nli = new SingleNoticeItem($this->notice, $this);
-        $nli->show();
-        $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();
+        $this->elementEnd('ol');
     }
 
     /**
@@ -262,25 +222,12 @@ class ShownoticeAction extends Action
     /**
      * Extra <head> content
      *
-     * We show the microid(s) for the author, if any.
+     * Facebook OpenGraph metadata.
      *
      * @return void
      */
     function extraHead()
     {
-        $user = User::getKV($this->profile->id);
-
-        if (!$user) {
-            return;
-        }
-
-        if ($user->emailmicroid && $user->email && $this->notice->uri) {
-            $id = new Microid('mailto:'. $user->email,
-                              $this->notice->uri);
-            $this->element('meta', array('name' => 'microid',
-                                         'content' => $id->toString()));
-        }
-
         // Extras to aid in sharing notices to Facebook
         $avatarUrl = $this->profile->avatarUrl(AVATAR_PROFILE_SIZE);
         $this->element('meta', array('property' => 'og:image',
@@ -289,12 +236,3 @@ class ShownoticeAction extends Action
                                      'content' => $this->notice->content));
     }
 }
-
-// @todo FIXME: Class documentation missing.
-class SingleNoticeItem extends DoFollowListItem
-{
-    function avatarSize()
-    {
-        return AVATAR_STREAM_SIZE;
-    }
-}