]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Stricter typing for Bookmark plugin
authorMikael Nordfeldth <mmn@hethane.se>
Sat, 10 Oct 2015 21:15:51 +0000 (23:15 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Sat, 10 Oct 2015 21:15:51 +0000 (23:15 +0200)
plugins/Bookmark/actions/newbookmark.php
plugins/Bookmark/classes/Bookmark.php
plugins/Bookmark/lib/deliciousbackupimporter.php

index 7551994b7ce02015beebc74affd9ef1552392799..823b7cfbb6e6dc61a5a41e17d7fab2f90ea09f66 100644 (file)
@@ -93,7 +93,7 @@ class NewbookmarkAction extends Action
 
         $this->title       = $this->trimmed('title');
         $this->url         = $this->trimmed('url');
-        $this->tags        = $this->trimmed('tags');
+        $this->tags        = preg_split('/[\s,]+/', $this->trimmed('tags'), null,  PREG_SPLIT_NO_EMPTY);
         $this->description = $this->trimmed('description');
 
         return true;
index cdbdf526cae733953ccef6e7e835787c8ea262bf..a3a608ce5e4ece02b4a2c9445bac7a6202b284aa 100644 (file)
@@ -112,11 +112,11 @@ class Bookmark extends Managed_DataObject
         $nb->profile_id = $profile->id;
         $nb->url        = $url;
 
-        if ($nb->find(true)) {
-            return $nb;
-        } else {
-            return null;
+        if (!$nb->find(true)) {
+            throw new NoResultException($nb);
         }
+
+        return $nb;
     }
 
     /**
@@ -125,28 +125,24 @@ class Bookmark extends Managed_DataObject
      * @param Profile $profile     To save the bookmark for
      * @param string  $title       Title of the bookmark
      * @param string  $url         URL of the bookmark
-     * @param mixed   $rawtags     array of tags or string
+     * @param array   $rawtags     array of tags
      * @param string  $description Description of the bookmark
      * @param array   $options     Options for the Notice::saveNew()
      *
      * @return Notice saved notice
      */
-    static function saveNew($profile, $title, $url, $rawtags, $description,
-                            $options=null)
+    static function saveNew(Profile $profile, $title, $url, $rawtags, $description,
+                            array $options=array())
     {
         if (!common_valid_http_url($url)) {
             throw new ClientException(_m('Only web bookmarks can be posted (HTTP or HTTPS).'));
         }
 
-        $nb = self::getByURL($profile, $url);
-
-        if (!empty($nb)) {
-            // TRANS: Client exception thrown when trying to save a new bookmark that already exists.
-            throw new ClientException(_m('Bookmark already exists.'));
-        }
-
-        if (empty($options)) {
-            $options = array();
+        try {
+            $object = self::getByURL($profile, $url);
+            return $object;
+        } catch (NoResultException $e) {
+            // Alright, so then we have to create it.
         }
 
         if (array_key_exists('uri', $options)) {
@@ -157,14 +153,6 @@ class Bookmark extends Managed_DataObject
             }
         }
 
-        if (is_string($rawtags)) {
-            if (empty($rawtags)) {
-                $rawtags = array();
-            } else {
-                $rawtags = preg_split('/[\s,]+/', $rawtags);
-            }
-        }
-
         $nb = new Bookmark();
 
         $nb->id          = UUID::gen();
index 0ceba61d89a1619b009cf771bf4e20b82b335a1a..c8caef689af36d37342fb56d8ed3bf45f6489206 100644 (file)
@@ -202,7 +202,7 @@ class DeliciousBackupImporter extends QueueHandler
             'title' => $a->nodeValue,
             'description' => $description,
             'url' => $a->getAttribute('href'),
-            'tags' => $a->getAttribute('tags'),
+            'tags' => preg_split('/[\s,]+/', $a->getAttribute('tags'), null,  PREG_SPLIT_NO_EMPTY),
             'created' => common_sql_date(intval($addDate))
         );