]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Bookmark/newbookmark.php
079babccd42c42db2a4cf0f2c5b8b177005b1983
[quix0rs-gnu-social.git] / plugins / Bookmark / newbookmark.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2010, StatusNet, Inc.
5  *
6  * Add a new bookmark
7  * 
8  * PHP version 5
9  *
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.
14  *
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.
19  *
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/>.
22  *
23  * @category  Bookmark
24  * @package   StatusNet
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/
29  */
30
31 if (!defined('STATUSNET')) {
32     // This check helps protect against security problems;
33     // your code file can't be executed directly from the web.
34     exit(1);
35 }
36
37 /**
38  * Add a new bookmark
39  *
40  * @category  Bookmark
41  * @package   StatusNet
42  * @author    Evan Prodromou <evan@status.net>
43  * @copyright 2010 StatusNet, Inc.
44  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
45  * @link      http://status.net/
46  */
47
48 class NewbookmarkAction extends Action
49 {
50         private $_user        = null;
51         private $_error       = null;
52         private $_complete    = null;
53         private $_title       = null;
54         private $_url         = null;
55         private $_tags        = null;
56         private $_description = null;
57
58         function title()
59         {
60                 return _('New bookmark');
61         }
62
63     /**
64      * For initializing members of the class.
65      *
66      * @param array $argarray misc. arguments
67      *
68      * @return boolean true
69      */
70
71     function prepare($argarray)
72     {
73         parent::prepare($argarray);
74
75                 $this->_user = common_current_user();
76
77                 if (empty($this->_user)) {
78                         throw new ClientException(_("Must be logged in to post a bookmark."), 403);
79                 }
80
81                 if ($this->isPost()) {
82                         $this->checkSessionToken();
83                 }
84
85                 $this->_title       = $this->trimmed('title');
86                 $this->_url         = $this->trimmed('url');
87                 $this->_tags        = $this->trimmed('tags');
88                 $this->_description = $this->trimmed('description');
89
90         return true;
91     }
92
93     /**
94      * Handler method
95      *
96      * @param array $argarray is ignored since it's now passed in in prepare()
97      *
98      * @return void
99      */
100
101     function handle($argarray=null)
102     {
103                 parent::handle($argarray);
104
105                 if ($this->isPost()) {
106                         $this->newBookmark();
107                 } else {
108                         $this->showPage();
109                 }
110
111         return;
112     }
113
114     /**
115      * Add a new bookmark
116      *
117      * @return void
118      */
119
120     function newBookmark()
121     {
122                 try {
123                         if (empty($this->_title)) {
124                                 throw new ClientException(_('Bookmark must have a title.'));
125                         }
126
127                         if (empty($this->_url)) {
128                                 throw new ClientException(_('Bookmark must have an URL.'));
129                         }
130
131
132                         $saved = Notice_bookmark::saveNew($this->_user,
133                                                                                           $this->_title,
134                                                                                           $this->_url,
135                                                                                           $this->_tags,
136                                                                                           $this->_description);
137
138                 } catch (ClientException $ce) {
139                         $this->_error = $ce->getMessage();
140                         $this->showPage();
141                         return;
142                 }
143
144                 common_redirect($saved->bestUrl(), 303);
145     }
146
147     /**
148      * Show the bookmark form
149      *
150      * @return void
151      */
152
153     function showContent()
154     {
155                 if (!empty($this->_error)) {
156                         $this->element('p', 'error', $this->_error);
157                 }
158
159                 $form = new BookmarkForm($this,
160                                                                  $this->_title,
161                                                                  $this->_url,
162                                                                  $this->_tags,
163                                                                  $this->_description);
164
165                 $form->show();
166
167         return;
168     }
169
170     /**
171      * Return true if read only.
172      *
173      * MAY override
174      *
175      * @param array $args other arguments
176      *
177      * @return boolean is read only action?
178      */
179
180     function isReadOnly($args)
181     {
182         if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
183             $_SERVER['REQUEST_METHOD'] == 'HEAD') {
184             return true;
185         } else {
186             return false;
187         }
188     }
189 }