]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/newapplication.php
Create new field in consumer table in 08to09.sql
[quix0rs-gnu-social.git] / actions / newapplication.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Register a new OAuth Application
6  *
7  * PHP version 5
8  *
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.
13  *
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.
18  *
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/>.
21  *
22  * @category  Applications
23  * @package   StatusNet
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/
28  */
29
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
31     exit(1);
32 }
33
34 /**
35  * Add a new application
36  *
37  * This is the form for adding a new application
38  *
39  * @category Application
40  * @package  StatusNet
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/
44  */
45
46 class NewApplicationAction extends OwnerDesignAction
47 {
48     var $msg;
49
50     function title()
51     {
52         return _('New Application');
53     }
54
55     /**
56      * Prepare to run
57      */
58
59     function prepare($args)
60     {
61         parent::prepare($args);
62
63         if (!common_logged_in()) {
64             $this->clientError(_('You must be logged in to register an application.'));
65             return false;
66         }
67
68         return true;
69     }
70
71     /**
72      * Handle the request
73      *
74      * On GET, show the form. On POST, try to save the app.
75      *
76      * @param array $args unused
77      *
78      * @return void
79      */
80
81     function handle($args)
82     {
83         parent::handle($args);
84
85         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
86         $this->handlePost($args);
87         } else {
88             $this->showForm();
89         }
90     }
91
92     function handlePost($args)
93     {
94     // Workaround for PHP returning empty $_POST and $_FILES when POST
95         // length > post_max_size in php.ini
96
97         if (empty($_FILES)
98             && empty($_POST)
99             && ($_SERVER['CONTENT_LENGTH'] > 0)
100         ) {
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']));
104             return;
105         }
106
107     // CSRF protection
108     $token = $this->trimmed('token');
109     if (!$token || $token != common_session_token()) {
110         $this->clientError(_('There was a problem with your session token.'));
111         return;
112     }
113
114     $cur = common_current_user();
115
116     if ($this->arg('cancel')) {
117         common_redirect(common_local_url('oauthappssettings'), 303);
118     } elseif ($this->arg('save')) {
119         $this->trySave();
120     } else {
121         $this->clientError(_('Unexpected form submission.'));
122     }
123     }
124
125     function showForm($msg=null)
126     {
127         $this->msg = $msg;
128         $this->showPage();
129     }
130
131     function showContent()
132     {
133         $form = new ApplicationEditForm($this);
134         $form->show();
135     }
136
137     function showPageNotice()
138     {
139         if ($this->msg) {
140             $this->element('p', 'error', $this->msg);
141         } else {
142             $this->element('p', 'instructions',
143                            _('Use this form to register a new application.'));
144         }
145     }
146
147     function trySave()
148     {
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');
157
158         if (empty($name)) {
159              $this->showForm(_('Name is required.'));
160              return;
161         } elseif (mb_strlen($name) > 255) {
162             $this->showForm(_('Name is too long (max 255 chars).'));
163             return;
164         } elseif (empty($description)) {
165             $this->showForm(_('Description is required.'));
166             return;
167         } elseif (Oauth_application::descriptionTooLong($description)) {
168             $this->showForm(sprintf(
169                 _('Description is too long (max %d chars).'),
170                 Oauth_application::maxDescription()));
171             return;
172         } elseif (empty($source_url)) {
173             $this->showForm(_('Source URL is required.'));
174             return;
175         } elseif ((strlen($source_url) > 0)
176             && !Validate::uri(
177                 $source_url,
178                 array('allowed_schemes' => array('http', 'https'))
179                 )
180             )
181         {
182             $this->showForm(_('Source URL is not valid.'));
183             return;
184         } elseif (empty($organization)) {
185             $this->showForm(_('Organization is required.'));
186             return;
187         } elseif (mb_strlen($organization) > 255) {
188             $this->showForm(_('Organization is too long (max 255 chars).'));
189             return;
190         } elseif (empty($homepage)) {
191             $this->showForm(_('Organization homepage is required.'));
192             return;
193         } elseif ((strlen($homepage) > 0)
194             && !Validate::uri(
195                 $homepage,
196                 array('allowed_schemes' => array('http', 'https'))
197                 )
198             )
199         {
200             $this->showForm(_('Homepage is not a valid URL.'));
201             return;
202         } elseif (mb_strlen($callback_url) > 255) {
203             $this->showForm(_('Callback is too long.'));
204             return;
205         } elseif (strlen($callback_url) > 0
206             && !Validate::uri(
207                 $source_url,
208                 array('allowed_schemes' => array('http', 'https'))
209                 )
210             )
211         {
212             $this->showForm(_('Callback URL is not valid.'));
213             return;
214         }
215
216         $cur = common_current_user();
217
218         // Checked in prepare() above
219
220         assert(!is_null($cur));
221
222         $app = new Oauth_application();
223
224         $app->query('BEGIN');
225
226         $app->name         = $name;
227         $app->owner        = $cur->id;
228         $app->description  = $description;
229         $app->source_url   = $source_url;
230         $app->organization = $organization;
231         $app->homepage     = $homepage;
232         $app->callback_url = $callback_url;
233         $app->type         = $type;
234
235         // Yeah, I dunno why I chose bit flags. I guess so I could
236         // copy this value directly to Oauth_application_user
237         // access_type which I think does need bit flags -- Z
238
239         if ($access_type == 'r') {
240             $app->setAccessFlags(true, false);
241         } else {
242             $app->setAccessFlags(true, true);
243         }
244
245         $app->created = common_sql_now();
246
247         // generate consumer key and secret
248
249         $consumer = Consumer::generateNew();
250
251         $result = $consumer->insert();
252
253         if (!$result) {
254             common_log_db_error($consumer, 'INSERT', __FILE__);
255             $this->serverError(_('Could not create application.'));
256         }
257
258         $app->consumer_key = $consumer->consumer_key;
259
260         $this->app_id = $app->insert();
261
262         if (!$this->app_id) {
263             common_log_db_error($app, 'INSERT', __FILE__);
264             $this->serverError(_('Could not create application.'));
265             $app->query('ROLLBACK');
266         }
267
268         $app->uploadLogo();
269
270         $app->query('COMMIT');
271
272         common_redirect(common_local_url('oauthappssettings'), 303);
273
274     }
275
276 }
277