3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2010, StatusNet, Inc.
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU Affero General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Affero General Public License for more details.
20 * You should have received a copy of the GNU Affero General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 * @author Evan Prodromou <evan@status.net>
26 * @copyright 2010 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28 * @link http://status.net/
30 if (!defined('STATUSNET')) {
31 // This check helps protect against security problems;
32 // your code file can't be executed directly from the web.
41 * @author Evan Prodromou <evan@status.net>
42 * @copyright 2010 StatusNet, Inc.
43 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
44 * @link http://status.net/
47 class NewbookmarkAction extends Action
49 protected $user = null;
50 protected $error = null;
51 protected $complete = null;
52 protected $title = null;
53 protected $url = null;
54 protected $tags = null;
55 protected $description = null;
58 * Returns the title of the action
60 * @return string Action title
65 return _('New bookmark');
69 * For initializing members of the class.
71 * @param array $argarray misc. arguments
73 * @return boolean true
76 function prepare($argarray)
78 parent::prepare($argarray);
80 $this->user = common_current_user();
82 if (empty($this->user)) {
83 throw new ClientException(_("Must be logged in to post a bookmark."),
87 if ($this->isPost()) {
88 $this->checkSessionToken();
91 $this->title = $this->trimmed('title');
92 $this->url = $this->trimmed('url');
93 $this->tags = $this->trimmed('tags');
94 $this->description = $this->trimmed('description');
102 * @param array $argarray is ignored since it's now passed in in prepare()
107 function handle($argarray=null)
109 parent::handle($argarray);
111 if ($this->isPost()) {
112 $this->newBookmark();
126 function newBookmark()
129 if (empty($this->title)) {
130 throw new ClientException(_('Bookmark must have a title.'));
133 if (empty($this->url)) {
134 throw new ClientException(_('Bookmark must have an URL.'));
138 $saved = Bookmark::saveNew($this->user->getProfile(),
144 } catch (ClientException $ce) {
145 $this->error = $ce->getMessage();
150 common_redirect($saved->bestUrl(), 303);
154 * Show the bookmark form
159 function showContent()
161 if (!empty($this->error)) {
162 $this->element('p', 'error', $this->error);
165 $form = new BookmarkForm($this,
177 * Return true if read only.
181 * @param array $args other arguments
183 * @return boolean is read only action?
186 function isReadOnly($args)
188 if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
189 $_SERVER['REQUEST_METHOD'] == 'HEAD') {