]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/newapplication.php
Fix icon upload on new apps
[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('apps',
118                          array('nickname' => $cur->nickname)), 303);
119     } elseif ($this->arg('save')) {
120         $this->trySave();
121     } else {
122         $this->clientError(_('Unexpected form submission.'));
123     }
124     }
125
126     function showForm($msg=null)
127     {
128         $this->msg = $msg;
129         $this->showPage();
130     }
131
132     function showContent()
133     {
134         $form = new ApplicationEditForm($this);
135         $form->show();
136     }
137
138     function showPageNotice()
139     {
140         if ($this->msg) {
141             $this->element('p', 'error', $this->msg);
142         } else {
143             $this->element('p', 'instructions',
144                            _('Use this form to register a new application.'));
145         }
146     }
147
148     function trySave()
149     {
150     $name         = $this->trimmed('name');
151         $description  = $this->trimmed('description');
152         $source_url   = $this->trimmed('source_url');
153         $organization = $this->trimmed('organization');
154         $homepage     = $this->trimmed('homepage');
155         $callback_url = $this->trimmed('callback_url');
156         $type         = $this->arg('app_type');
157         $access_type  = $this->arg('default_access_type');
158
159         if (empty($name)) {
160              $this->showForm(_('Name is required.'));
161              return;
162         } elseif (mb_strlen($name) > 255) {
163             $this->showForm(_('Name is too long (max 255 chars).'));
164             return;
165         } elseif (empty($description)) {
166             $this->showForm(_('Description is required.'));
167             return;
168         } elseif (Oauth_application::descriptionTooLong($description)) {
169             $this->showForm(sprintf(
170                 _('Description is too long (max %d chars).'),
171                 Oauth_application::maxDescription()));
172             return;
173         } elseif (empty($source_url)) {
174             $this->showForm(_('Source URL is required.'));
175             return;
176         } elseif ((strlen($source_url) > 0)
177             && !Validate::uri(
178                 $source_url,
179                 array('allowed_schemes' => array('http', 'https'))
180                 )
181             )
182         {
183             $this->showForm(_('Source URL is not valid.'));
184             return;
185         } elseif (empty($organization)) {
186             $this->showForm(_('Organization is required.'));
187             return;
188         } elseif (mb_strlen($organization) > 255) {
189             $this->showForm(_('Organization is too long (max 255 chars).'));
190             return;
191         } elseif (empty($homepage)) {
192             $this->showForm(_('Organization homepage is required.'));
193             return;
194         } elseif ((strlen($homepage) > 0)
195             && !Validate::uri(
196                 $homepage,
197                 array('allowed_schemes' => array('http', 'https'))
198                 )
199             )
200         {
201             $this->showForm(_('Homepage is not a valid URL.'));
202             return;
203         } elseif (mb_strlen($callback_url) > 255) {
204             $this->showForm(_('Callback is too long.'));
205             return;
206         } elseif (strlen($callback_url) > 0
207             && !Validate::uri(
208                 $source_url,
209                 array('allowed_schemes' => array('http', 'https'))
210                 )
211             )
212         {
213             $this->showForm(_('Callback URL is not valid.'));
214             return;
215         }
216
217         $cur = common_current_user();
218
219         // Checked in prepare() above
220
221         assert(!is_null($cur));
222
223         $app = new Oauth_application();
224
225         $app->query('BEGIN');
226
227         $app->name         = $name;
228         $app->owner        = $cur->id;
229         $app->description  = $description;
230         $app->source_url   = $source_url;
231         $app->organization = $organization;
232         $app->homepage     = $homepage;
233         $app->callback_url = $callback_url;
234         $app->type         = $type;
235
236         // Yeah, I dunno why I chose bit flags. I guess so I could
237         // copy this value directly to Oauth_application_user
238         // access_type which I think does need bit flags -- Z
239
240         if ($access_type == 'r') {
241             $app->setAccessFlags(true, false);
242         } else {
243             $app->setAccessFlags(true, true);
244         }
245
246         $app->created = common_sql_now();
247
248         // generate consumer key and secret
249
250         $consumer = Consumer::generateNew();
251
252         $result = $consumer->insert();
253
254         if (!$result) {
255             common_log_db_error($consumer, 'INSERT', __FILE__);
256             $this->serverError(_('Could not create application.'));
257         }
258
259         $app->consumer_key = $consumer->consumer_key;
260
261         $this->app_id = $app->insert();
262
263         if (!$this->app_id) {
264             common_log_db_error($app, 'INSERT', __FILE__);
265             $this->serverError(_('Could not create application.'));
266             $app->query('ROLLBACK');
267         }
268
269         $app->uploadLogo();
270
271         $app->query('COMMIT');
272
273         common_redirect(common_local_url('apps',
274             array('nickname' => $cur->nickname)), 303);
275
276     }
277
278 }
279