3 * StatusNet, the distributed open-source microblogging tool
5 * Register a new OAuth Application
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 * @category Applications
24 * @author Zach Copley <zach@status.net>
25 * @copyright 2008-2009 StatusNet, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://status.net/
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
35 * Add a new application
37 * This is the form for adding a new application
39 * @category Application
41 * @author Zach Copley <zach@status.net>
42 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
43 * @link http://status.net/
46 class NewApplicationAction extends OwnerDesignAction
52 return _('New Application');
59 function prepare($args)
61 parent::prepare($args);
63 if (!common_logged_in()) {
64 $this->clientError(_('You must be logged in to register an application.'));
74 * On GET, show the form. On POST, try to save the app.
76 * @param array $args unused
81 function handle($args)
83 parent::handle($args);
85 if ($_SERVER['REQUEST_METHOD'] == 'POST') {
86 $this->handlePost($args);
92 function handlePost($args)
94 // Workaround for PHP returning empty $_POST and $_FILES when POST
95 // length > post_max_size in php.ini
99 && ($_SERVER['CONTENT_LENGTH'] > 0)
101 $msg = _('The server was unable to handle that much POST ' .
102 'data (%s bytes) due to its current configuration.');
103 $this->clientException(sprintf($msg, $_SERVER['CONTENT_LENGTH']));
108 $token = $this->trimmed('token');
109 if (!$token || $token != common_session_token()) {
110 $this->clientError(_('There was a problem with your session token.'));
114 $cur = common_current_user();
116 if ($this->arg('cancel')) {
117 common_redirect(common_local_url('oauthappssettings'), 303);
118 } elseif ($this->arg('save')) {
121 $this->clientError(_('Unexpected form submission.'));
125 function showForm($msg=null)
131 function showContent()
133 $form = new ApplicationEditForm($this);
137 function showPageNotice()
140 $this->element('p', 'error', $this->msg);
142 $this->element('p', 'instructions',
143 _('Use this form to register a new application.'));
149 $name = $this->trimmed('name');
150 $description = $this->trimmed('description');
151 $source_url = $this->trimmed('source_url');
152 $organization = $this->trimmed('organization');
153 $homepage = $this->trimmed('homepage');
154 $callback_url = $this->trimmed('callback_url');
155 $type = $this->arg('app_type');
156 $access_type = $this->arg('default_access_type');
159 $this->showForm(_('Name is required.'));
161 } else if ($this->nameExists($name)) {
162 $this->showForm(_('Name already in use. Try another one.'));
164 } elseif (mb_strlen($name) > 255) {
165 $this->showForm(_('Name is too long (max 255 chars).'));
167 } elseif (empty($description)) {
168 $this->showForm(_('Description is required.'));
170 } elseif (Oauth_application::descriptionTooLong($description)) {
171 $this->showForm(sprintf(
172 _('Description is too long (max %d chars).'),
173 Oauth_application::maxDescription()));
175 } elseif (empty($source_url)) {
176 $this->showForm(_('Source URL is required.'));
178 } elseif ((strlen($source_url) > 0)
181 array('allowed_schemes' => array('http', 'https'))
185 $this->showForm(_('Source URL is not valid.'));
187 } elseif (empty($organization)) {
188 $this->showForm(_('Organization is required.'));
190 } elseif (mb_strlen($organization) > 255) {
191 $this->showForm(_('Organization is too long (max 255 chars).'));
193 } elseif (empty($homepage)) {
194 $this->showForm(_('Organization homepage is required.'));
196 } elseif ((strlen($homepage) > 0)
199 array('allowed_schemes' => array('http', 'https'))
203 $this->showForm(_('Homepage is not a valid URL.'));
205 } elseif (mb_strlen($callback_url) > 255) {
206 $this->showForm(_('Callback is too long.'));
208 } elseif (strlen($callback_url) > 0
211 array('allowed_schemes' => array('http', 'https'))
215 $this->showForm(_('Callback URL is not valid.'));
219 $cur = common_current_user();
221 // Checked in prepare() above
223 assert(!is_null($cur));
225 $app = new Oauth_application();
227 $app->query('BEGIN');
230 $app->owner = $cur->id;
231 $app->description = $description;
232 $app->source_url = $source_url;
233 $app->organization = $organization;
234 $app->homepage = $homepage;
235 $app->callback_url = $callback_url;
238 // Yeah, I dunno why I chose bit flags. I guess so I could
239 // copy this value directly to Oauth_application_user
240 // access_type which I think does need bit flags -- Z
242 if ($access_type == 'r') {
243 $app->setAccessFlags(true, false);
245 $app->setAccessFlags(true, true);
248 $app->created = common_sql_now();
250 // generate consumer key and secret
252 $consumer = Consumer::generateNew();
254 $result = $consumer->insert();
257 common_log_db_error($consumer, 'INSERT', __FILE__);
258 $this->serverError(_('Could not create application.'));
261 $app->consumer_key = $consumer->consumer_key;
263 $this->app_id = $app->insert();
265 if (!$this->app_id) {
266 common_log_db_error($app, 'INSERT', __FILE__);
267 $this->serverError(_('Could not create application.'));
268 $app->query('ROLLBACK');
273 $app->query('COMMIT');
275 common_redirect(common_local_url('oauthappssettings'), 303);
280 * Does the app name already exist?
282 * Checks the DB to see someone has already registered an app
283 * with the same name.
285 * @param string $name app name to check
287 * @return boolean true if the name already exists
290 function nameExists($name)
292 $app = Oauth_application::staticGet('name', $name);