From 770efece839493178e8c3b2446452c0ffc517ced Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 20 Dec 2010 13:38:24 -0500 Subject: [PATCH] don't reinsert existing bookmark --- plugins/Bookmark/Notice_bookmark.php | 29 ++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/plugins/Bookmark/Notice_bookmark.php b/plugins/Bookmark/Notice_bookmark.php index 679064dbe9..e816c45596 100644 --- a/plugins/Bookmark/Notice_bookmark.php +++ b/plugins/Bookmark/Notice_bookmark.php @@ -116,8 +116,37 @@ class Notice_bookmark extends Memcached_DataObject return array(false, false, false); } + static function getByURL($user, $url) + { + $file = File::staticGet('url', $url); + if (!empty($file)) { + $f2p = new File_to_post(); + $f2p->file_id = $file->id; + if ($f2p->find()) { + while ($f2p->fetch()) { + $n = Notice::staticGet('id', $f2p->post_id); + if (!empty($n)) { + if ($n->profile_id == $user->id) { + $nb = Notice_bookmark::staticGet('notice_id', $n->id); + if (!empty($nb)) { + return $nb; + } + } + } + } + } + } + return null; + } + static function saveNew($user, $title, $url, $rawtags, $description, $options=null) { + $nb = self::getByURL($user, $url); + + if (!empty($nb)) { + throw new ClientException(_('Bookmark already exists.')); + } + if (empty($options)) { $options = array(); }