]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Bookmark/BookmarkPlugin.php
Some special .js for the bookmark plugin, so we can control the form in the second...
[quix0rs-gnu-social.git] / plugins / Bookmark / BookmarkPlugin.php
index bc8985e907b8821d992252c1eb8890f45bb5e7b4..9d92fd61a3c0fb4d8c065431c18426d7286e3695 100644 (file)
@@ -43,7 +43,6 @@ if (!defined('STATUSNET')) {
  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
  * @link      http://status.net/
  */
-
 class BookmarkPlugin extends MicroAppPlugin
 {
     const VERSION         = '0.1';
@@ -60,7 +59,6 @@ class BookmarkPlugin extends MicroAppPlugin
      *
      * @return boolean hook value
      */
-
     function onUserRightsCheck($profile, $right, &$result)
     {
         if ($right == self::IMPORTDELICIOUS) {
@@ -78,7 +76,6 @@ class BookmarkPlugin extends MicroAppPlugin
      *
      * @return boolean hook value; true means continue processing, false means stop.
      */
-
     function onCheckSchema()
     {
         $schema = Schema::get();
@@ -127,13 +124,17 @@ class BookmarkPlugin extends MicroAppPlugin
      *
      * @return boolean hook value
      */
-
     function onEndShowStyles($action)
     {
         $action->cssLink($this->path('bookmark.css'));
         return true;
     }
 
+    function onEndShowScripts($action)
+    {
+        $action->script($this->path('js/bookmark.js'));
+        return true;
+    }
     /**
      * Load related modules when needed
      *
@@ -141,7 +142,6 @@ class BookmarkPlugin extends MicroAppPlugin
      *
      * @return boolean hook value; true means continue processing, false means stop.
      */
-
     function onAutoload($cls)
     {
         $dir = dirname(__FILE__);
@@ -152,6 +152,7 @@ class BookmarkPlugin extends MicroAppPlugin
         case 'NewbookmarkAction':
         case 'BookmarkpopupAction':
         case 'NoticebyurlAction':
+        case 'BookmarkforurlAction':
         case 'ImportdeliciousAction':
             include_once $dir . '/' . strtolower(mb_substr($cls, 0, -6)) . '.php';
             return false;
@@ -159,6 +160,7 @@ class BookmarkPlugin extends MicroAppPlugin
             include_once $dir.'/'.$cls.'.php';
             return false;
         case 'BookmarkForm':
+        case 'InitialBookmarkForm':
         case 'DeliciousBackupImporter':
         case 'DeliciousBookmarkImporter':
             include_once $dir.'/'.strtolower($cls).'.php';
@@ -175,7 +177,6 @@ class BookmarkPlugin extends MicroAppPlugin
      *
      * @return boolean hook value; true means continue processing, false means stop.
      */
-
     function onRouterInitialized($m)
     {
         $m->connect('main/bookmark/new',
@@ -188,6 +189,9 @@ class BookmarkPlugin extends MicroAppPlugin
         $m->connect('main/bookmark/import',
                     array('action' => 'importdelicious'));
 
+        $m->connect('main/bookmark/forurl',
+                    array('action' => 'bookmarkforurl'));
+
         $m->connect('bookmark/:id',
                     array('action' => 'showbookmark'),
                     array('id' => '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}'));
@@ -204,10 +208,9 @@ class BookmarkPlugin extends MicroAppPlugin
      * Add our two queue handlers to the queue manager
      *
      * @param QueueManager $qm current queue manager
-     * 
+     *
      * @return boolean hook value
      */
-
     function onEndInitializeQueueManager($qm)
     {
         $qm->connect('dlcsback', 'DeliciousBackupImporter');
@@ -219,17 +222,17 @@ class BookmarkPlugin extends MicroAppPlugin
      * Plugin version data
      *
      * @param array &$versions array of version data
-     * 
+     *
      * @return value
      */
-
     function onPluginVersion(&$versions)
     {
-        $versions[] = array('name' => 'Sample',
+        $versions[] = array('name' => 'Bookmark',
                             'version' => self::VERSION,
                             'author' => 'Evan Prodromou',
                             'homepage' => 'http://status.net/wiki/Plugin:Bookmark',
-                            'rawdescription' =>
+                            'description' =>
+                            // TRANS: Plugin description.
                             _m('Simple extension for supporting bookmarks.'));
         return true;
     }
@@ -242,7 +245,6 @@ class BookmarkPlugin extends MicroAppPlugin
      *
      * @return boolean hook value
      */
-
     function onStartLoadDoc(&$title, &$output)
     {
         if ($title == 'bookmarklet') {
@@ -256,8 +258,6 @@ class BookmarkPlugin extends MicroAppPlugin
         return true;
     }
 
-
-
     /**
      * Show a link to our delicious import page on profile settings form
      *
@@ -265,16 +265,16 @@ class BookmarkPlugin extends MicroAppPlugin
      *
      * @return boolean hook value
      */
-
     function onEndProfileSettingsActions($action)
     {
         $user = common_current_user();
-        
+
         if (!empty($user) && $user->hasRight(self::IMPORTDELICIOUS)) {
             $action->elementStart('li');
             $action->element('a',
                              array('href' => common_local_url('importdelicious')),
-                             _('Import del.icio.us bookmarks'));
+                             // TRANS: Link text in proile leading to import form.
+                             _m('Import del.icio.us bookmarks'));
             $action->elementEnd('li');
         }
 
@@ -294,7 +294,11 @@ class BookmarkPlugin extends MicroAppPlugin
         $nb = Bookmark::getByNotice($nli->notice);
         if (!empty($nb)) {
             $id = (empty($nli->repeat)) ? $nli->notice->id : $nli->repeat->id;
-            $nli->out->elementStart('li', array('class' => 'hentry notice bookmark',
+            $class = 'hentry notice bookmark';
+            if ($nli->notice->scope != 0 && $nli->notice->scope != 1) {
+                $class .= ' limited-scope';
+            }
+            $nli->out->elementStart('li', array('class' => $class,
                                                  'id' => 'notice-' . $id));
             Event::handle('EndOpenNoticeListItemElement', array($nli));
             return false;
@@ -310,7 +314,6 @@ class BookmarkPlugin extends MicroAppPlugin
      *
      * @return Notice resulting notice.
      */
-
     static private function _postRemoteBookmark(Ostatus_profile $author,
                                                 Activity $activity)
     {
@@ -320,7 +323,7 @@ class BookmarkPlugin extends MicroAppPlugin
                          'url' => $bookmark->link,
                          'is_local' => Notice::REMOTE_OMB,
                          'source' => 'ostatus');
-        
+
         return self::_postBookmark($author->localProfile(), $activity, $options);
     }
 
@@ -331,7 +334,6 @@ class BookmarkPlugin extends MicroAppPlugin
      *
      * @return true if it's a Post of a Bookmark, else false
      */
-
     static private function _isPostBookmark($activity)
     {
         return ($activity->verb == ActivityVerb::POST &&
@@ -347,10 +349,9 @@ class BookmarkPlugin extends MicroAppPlugin
      * When a notice is deleted, delete the related Bookmark
      *
      * @param Notice $notice Notice being deleted
-     * 
+     *
      * @return boolean hook value
      */
-
     function deleteRelated($notice)
     {
         $nb = Bookmark::getByNotice($notice);
@@ -371,7 +372,6 @@ class BookmarkPlugin extends MicroAppPlugin
      *
      * @return Notice resulting notice
      */
-
     function saveNoticeFromActivity($activity, $profile, $options=array())
     {
         $bookmark = $activity->objects[0];
@@ -379,7 +379,8 @@ class BookmarkPlugin extends MicroAppPlugin
         $relLinkEls = ActivityUtils::getLinks($bookmark->element, 'related');
 
         if (count($relLinkEls) < 1) {
-            throw new ClientException(_('Expected exactly 1 link '.
+            // TRANS: Client exception thrown when a bookmark is formatted incorrectly.
+            throw new ClientException(_m('Expected exactly 1 link '.
                                         'rel=related in a Bookmark.'));
         }
 
@@ -459,6 +460,7 @@ class BookmarkPlugin extends MicroAppPlugin
                    "Formatting notice {$notice->uri} as a bookmark.");
 
         $object = new ActivityObject();
+        $nb = Bookmark::getByNotice($notice);
 
         $object->id      = $notice->uri;
         $object->type    = ActivityObject::BOOKMARK;
@@ -471,7 +473,8 @@ class BookmarkPlugin extends MicroAppPlugin
         $attachments = $notice->attachments();
 
         if (count($attachments) != 1) {
-            throw new ServerException(_('Bookmark notice with the '.
+            // TRANS: Server exception thrown when a bookmark has multiple attachments.
+            throw new ServerException(_m('Bookmark notice with the '.
                                         'wrong number of attachments.'));
         }
 
@@ -485,7 +488,7 @@ class BookmarkPlugin extends MicroAppPlugin
         }
 
         $object->extra[] = array('link', $attrs, null);
-                                                   
+
         // Attributes of the thumbnail, if any
 
         $thumbnail = $target->getThumbnail();
@@ -525,7 +528,11 @@ class BookmarkPlugin extends MicroAppPlugin
 
         if (count($atts) < 1) {
             // Something wrong; let default code deal with it.
-            throw new Exception("That can't be right.");
+            // TRANS: Exception thrown when a bookmark has no attachments.
+            // TRANS: %1$s is a bookmark ID, %2$s is a notice ID (number).
+            throw new Exception(sprintf(_m('Bookmark %1$s (notice %2$d) has no attachments.'),
+                                        $nb->id,
+                                        $notice->id));
         }
 
         $att = $atts[0];
@@ -557,21 +564,23 @@ class BookmarkPlugin extends MicroAppPlugin
         if (!empty($replies) || !empty($tags)) {
 
             $out->elementStart('ul', array('class' => 'bookmark-tags'));
-            
+
             foreach ($replies as $reply) {
                 $other = Profile::staticGet('id', $reply);
-                $out->elementStart('li');
-                $out->element('a', array('rel' => 'tag',
-                                         'href' => $other->profileurl,
-                                         'title' => $other->getBestName()),
-                              sprintf('for:%s', $other->nickname));
-                $out->elementEnd('li');
-                $out->text(' ');
+                if (!empty($other)) {
+                    $out->elementStart('li');
+                    $out->element('a', array('rel' => 'tag',
+                                             'href' => $other->profileurl,
+                                             'title' => $other->getBestName()),
+                                  sprintf('for:%s', $other->nickname));
+                    $out->elementEnd('li');
+                    $out->text(' ');
+                }
             }
 
             foreach ($tags as $tag) {
                 $out->elementStart('li');
-                $out->element('a', 
+                $out->element('a',
                               array('rel' => 'tag',
                                     'href' => Notice_tag::url($tag)),
                               $tag);
@@ -607,7 +616,7 @@ class BookmarkPlugin extends MicroAppPlugin
 
         $avatar = $profile->getAvatar(AVATAR_MINI_SIZE);
 
-        $out->element('img', 
+        $out->element('img',
                       array('src' => ($avatar) ?
                             $avatar->displayUrl() :
                             Avatar::defaultImage(AVATAR_MINI_SIZE),
@@ -619,7 +628,7 @@ class BookmarkPlugin extends MicroAppPlugin
         $out->raw('&#160;'); // avoid &nbsp; for AJAX XML compatibility
 
         $out->elementStart('span', 'vcard author'); // hack for belongsOnTimeline; JS needs to be able to find the author
-        $out->element('a', 
+        $out->element('a',
                       array('class' => 'url',
                             'href' => $profile->profileurl,
                             'title' => $profile->getBestName()),
@@ -629,7 +638,7 @@ class BookmarkPlugin extends MicroAppPlugin
 
     function entryForm($out)
     {
-        return new BookmarkForm($out);
+        return new InitialBookmarkForm($out);
     }
 
     function tag()
@@ -639,6 +648,7 @@ class BookmarkPlugin extends MicroAppPlugin
 
     function appTitle()
     {
-        return _m('Bookmark');
+        // TRANS: Application title.
+        return _m('TITLE','Bookmark');
     }
 }