diff options
| author | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-11-26 08:17:21 +0000 | 
|---|---|---|
| committer | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-11-26 08:17:21 +0000 | 
| commit | a8e9aa4d0dc87852a53fbd456371d59e6f32e184 (patch) | |
| tree | 92bb67fd5906695b82c9644c8cff2c40b7ec08a4 /src/SemanticScuttle | |
| parent | 84a453562ffa39770ac23b99890daf4c7a2ee133 (diff) | |
| download | semanticscuttle-a8e9aa4d0dc87852a53fbd456371d59e6f32e184.tar.gz semanticscuttle-a8e9aa4d0dc87852a53fbd456371d59e6f32e184.tar.bz2 | |
add documentation for _getbookmark() and dependent methods
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@573 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'src/SemanticScuttle')
| -rw-r--r-- | src/SemanticScuttle/Service/Bookmark.php | 81 | 
1 files changed, 70 insertions, 11 deletions
| diff --git a/src/SemanticScuttle/Service/Bookmark.php b/src/SemanticScuttle/Service/Bookmark.php index 7fdcd2e..0d89db8 100644 --- a/src/SemanticScuttle/Service/Bookmark.php +++ b/src/SemanticScuttle/Service/Bookmark.php @@ -52,26 +52,46 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_DbService -    function _getbookmark($fieldname, $value, $all = false) +    /** +     * Retrieves the first bookmark whose $fieldname equals +     * the given $value. +     * +     * @param string  $fieldname Name of database field +     * @param mixed   $value     Desired value of $fieldname +     * @param boolean $all       Retrieve from all users (true) +     *                           or only bookmarks owned by the current +     *                           user (false) +     * +     * @return mixed Database row array when found, boolean false +     *               when no bookmark matched. +     */ +    protected function _getbookmark($fieldname, $value, $all = false)      {          if (!$all) { -            $userservice = SemanticScuttle_Service_Factory :: get('User'); -            $sId = $userservice->getCurrentUserId(); -            $range = ' AND uId = '. $sId; +            $userservice = SemanticScuttle_Service_Factory::get('User'); +            $uId   = $userservice->getCurrentUserId(); +            $range = ' AND uId = '. $uId;          } else {              $range = '';          } -        $query = 'SELECT * FROM '. $this->getTableName() .' WHERE '. $fieldname .' = "'. $this->db->sql_escape($value) .'"'. $range; +        $query = 'SELECT * FROM '. $this->getTableName() +            . ' WHERE ' . $fieldname . ' =' +            . ' "' . $this->db->sql_escape($value) .'"' +            . $range;          if (!($dbresult = & $this->db->sql_query_limit($query, 1, 0))) { -            message_die(GENERAL_ERROR, 'Could not get bookmark', '', __LINE__, __FILE__, $query, $this->db); +            message_die( +                GENERAL_ERROR, +                'Could not get bookmark', '', __LINE__, __FILE__, +                $query, $this->db +            );          } -        if ($row =& $this->db->sql_fetchrow($dbresult)) { +        if ($row = $this->db->sql_fetchrow($dbresult)) {              $output = $row;          } else { -            $output =  false; +            $output = false;          }          $this->db->sql_freeresult($dbresult);          return $output; @@ -125,7 +145,9 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_DbService          if ($row = $this->db->sql_fetchrow($dbresult)) {              if ($include_tags) { -                $b2tservice = SemanticScuttle_Service_Factory::get('Bookmark2Tag'); +                $b2tservice = SemanticScuttle_Service_Factory::get( +                    'Bookmark2Tag' +                );                  $row['tags'] = $b2tservice->getTagsForBookmark($bid);              }              $output = $row; @@ -138,7 +160,19 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_DbService -    function getBookmarkByAddress($address) +    /** +     * Retrieves a bookmark with the given URL. +     * DOES NOT RESPECT PRIVACY SETTINGS! +     * +     * @param string $hash URL +     * +     * @return mixed Array with bookmark data or false in case +     *               of an error (i.e. not found). +     * +     * @uses getBookmarkByHash() +     * @see  getBookmarkByShortname() +     */ +    public function getBookmarkByAddress($address)      {          $hash = md5($address);          return $this->getBookmarkByHash($hash); @@ -146,7 +180,16 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_DbService -    function getBookmarkByHash($hash) +    /** +     * Retrieves a bookmark with the given hash. +     * DOES NOT RESPECT PRIVACY SETTINGS! +     * +     * @param string $hash URL hash (MD5) +     * +     * @return mixed Array with bookmark data or false in case +     *               of an error (i.e. not found). +     */ +    public function getBookmarkByHash($hash)      {          return $this->_getbookmark('bHash', $hash, true);      } @@ -154,6 +197,22 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_DbService      /** +     * Retrieves a bookmark that has a given short +     * name. +     * +     * @param string $short Short URL name +     * +     * @return mixed Array with bookmark data or false in case +     *               of an error (i.e. not found). +     */ +    public function getBookmarkByShortname($short) +    { +        return $this->_getbookmark('bShort', $short, true); +    } + + + +    /**       * Counts bookmarks for a user.       *       * @param integer $uId   User ID | 
