]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/showapplication.php
Merge branch 'limitdist' into limitdist2
[quix0rs-gnu-social.git] / actions / showapplication.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Show an 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  Application
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  * Show an OAuth application
36  *
37  * @category Application
38  * @package  StatusNet
39  * @author   Zach Copley <zach@status.net>
40  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
41  * @link     http://status.net/
42  */
43 class ShowApplicationAction extends OwnerDesignAction
44 {
45     /**
46      * Application to show
47      */
48     var $application = null;
49
50     /**
51      * User who owns the app
52      */
53     var $owner = null;
54
55     var $msg = null;
56
57     var $success = null;
58
59     /**
60      * Load attributes based on database arguments
61      *
62      * Loads all the DB stuff
63      *
64      * @param array $args $_REQUEST array
65      *
66      * @return success flag
67      */
68     function prepare($args)
69     {
70         parent::prepare($args);
71
72         $id = (int)$this->arg('id');
73
74         $this->application  = Oauth_application::staticGet($id);
75         $this->owner        = User::staticGet($this->application->owner);
76
77         if (!common_logged_in()) {
78             // TRANS: Client error displayed trying to display an OAuth application while not logged in.
79             $this->clientError(_('You must be logged in to view an application.'));
80             return false;
81         }
82
83         if (empty($this->application)) {
84             // TRANS: Client error displayed trying to display a non-existing OAuth application.
85             $this->clientError(_('No such application.'), 404);
86             return false;
87         }
88
89         $cur = common_current_user();
90
91         if ($cur->id != $this->owner->id) {
92             // TRANS: Client error displayed trying to display an OAuth application for which the logged in user is not the owner.
93             $this->clientError(_('You are not the owner of this application.'), 401);
94             return false;
95         }
96
97         return true;
98     }
99
100     /**
101      * Handle the request
102      *
103      * Shows info about the app
104      *
105      * @return void
106      */
107     function handle($args)
108     {
109         parent::handle($args);
110
111         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
112
113             // CSRF protection
114             $token = $this->trimmed('token');
115             if (!$token || $token != common_session_token()) {
116                 $this->clientError(_('There was a problem with your session token.'));
117                 return;
118             }
119
120             if ($this->arg('reset')) {
121                 $this->resetKey();
122             }
123         } else {
124             $this->showPage();
125         }
126     }
127
128     /**
129      * Title of the page
130      *
131      * @return string title of the page
132      */
133     function title()
134     {
135         if (!empty($this->application->name)) {
136             return 'Application: ' . $this->application->name;
137         }
138     }
139
140     function showPageNotice()
141     {
142         if (!empty($this->msg)) {
143             $this->element('div', ($this->success) ? 'success' : 'error', $this->msg);
144         }
145     }
146
147     function showContent()
148     {
149         $cur = common_current_user();
150
151         $consumer = $this->application->getConsumer();
152
153         $this->elementStart('div', 'entity_profile vcard');
154         // TRANS: Header on the OAuth application page.
155         $this->element('h2', null, _('Application profile'));
156         if (!empty($this->application->icon)) {
157             $this->element('img', array('src' => $this->application->icon,
158                                         'class' => 'photo logo entity_depiction'));
159         }
160
161         $this->element('a', array('href' =>  $this->application->source_url,
162                                   'class' => 'url fn entity_fn'),
163                             $this->application->name);
164
165         $this->element('a', array('href' =>  $this->application->homepage,
166                                   'class' => 'url entity_org'),
167                             $this->application->organization);
168
169         $this->element('div',
170                        'note entity_note',
171                        $this->application->description);
172
173         $this->elementStart('div', 'entity_statistics');
174         $defaultAccess = ($this->application->access_type & Oauth_application::$writeAccess)
175             ? 'read-write' : 'read-only';
176         $profile = Profile::staticGet($this->application->owner);
177
178         $appUsers = new Oauth_application_user();
179         $appUsers->application_id = $this->application->id;
180         $userCnt = $appUsers->count();
181
182         $this->raw(sprintf(
183             // TRANS: Information output on an OAuth application page.
184             // TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write",
185             // TRANS: %3$d is the number of users using the OAuth application.
186             _m('Created by %1$s - %2$s access by default - %3$d user',
187                'Created by %1$s - %2$s access by default - %3$d users',
188                $userCnt),
189               $profile->getBestName(),
190               $defaultAccess,
191               $userCnt
192             ));
193         $this->elementEnd('div');
194
195         $this->elementEnd('div');
196
197         $this->elementStart('div', 'entity_actions');
198         // TRANS: Header on the OAuth application page.
199         $this->element('h2', null, _('Application actions'));
200         $this->elementStart('ul');
201         $this->elementStart('li', 'entity_edit');
202         $this->element('a',
203                        array('href' => common_local_url('editapplication',
204                                                         array('id' => $this->application->id))),
205                        // TRANS: Link text to edit application on the OAuth application page.
206                        _m('EDITAPP','Edit'));
207         $this->elementEnd('li');
208
209         $this->elementStart('li', 'entity_reset_keysecret');
210         $this->elementStart('form', array(
211             'id' => 'form_reset_key',
212             'class' => 'form_reset_key',
213             'method' => 'POST',
214             'action' => common_local_url('showapplication',
215                                          array('id' => $this->application->id))));
216         $this->elementStart('fieldset');
217         $this->hidden('token', common_session_token());
218
219         $this->element('input', array('type' => 'submit',
220                                       'id' => 'reset',
221                                       'name' => 'reset',
222                                       'class' => 'submit',
223                                       // TRANS: Button text on the OAuth application page.
224                                       // TRANS: Resets the OAuth consumer key and secret.
225                                       'value' => _('Reset key & secret'),
226                                       'onClick' => 'return confirmReset()'));
227         $this->elementEnd('fieldset');
228         $this->elementEnd('form');
229         $this->elementEnd('li');
230
231         $this->elementStart('li', 'entity_delete');
232         $this->elementStart('form', array(
233                                           'id' => 'form_delete_application',
234                                           'class' => 'form_delete_application',
235                                           'method' => 'POST',
236                                           'action' => common_local_url('deleteapplication',
237                                                                        array('id' => $this->application->id))));
238
239         $this->elementStart('fieldset');
240         $this->hidden('token', common_session_token());
241         // TRANS: Submit button text the OAuth application page to delete an application.
242         $this->submit('delete', _m('BUTTON','Delete'));
243         $this->elementEnd('fieldset');
244         $this->elementEnd('form');
245         $this->elementEnd('li');
246
247         $this->elementEnd('ul');
248         $this->elementEnd('div');
249
250         $this->elementStart('div', 'entity_data');
251         // TRANS: Header on the OAuth application page.
252         $this->element('h2', null, _('Application info'));
253         $this->element('div',
254                        'entity_consumer_key',
255                        $consumer->consumer_key);
256
257         $this->element('div',
258                        'entity_consumer_secret',
259                        $consumer->consumer_secret);
260
261         $this->element('div',
262                        'entity_request_token_url',
263                        common_local_url('ApiOauthRequestToken'));
264
265         $this->element('div', 'entity_access_token_url', common_local_url('ApiOauthAccessToken'));
266
267         $this->element('div', 'entity_authorize_url', common_local_url('ApiOauthAuthorize'));
268
269         $this->element('p', 'note',
270             // TRANS: Note on the OAuth application page about signature support.
271             _('Note: HMAC-SHA1 signatures are supported. The plaintext signature method is not supported.'));
272         $this->elementEnd('div');
273
274         $this->elementStart('p', array('id' => 'application_action'));
275         $this->element('a',
276             array('href' => common_local_url('oauthappssettings'),
277                   'class' => 'more'),
278                   'View your applications');
279         $this->elementEnd('p');
280     }
281
282     /**
283      * Add a confirm script for Consumer key/secret reset
284      *
285      * @return void
286      */
287     function showScripts()
288     {
289         parent::showScripts();
290
291         // TRANS: Text in confirmation dialog to reset consumer key and secret for an OAuth application.
292         $msg = _('Are you sure you want to reset your consumer key and secret?');
293
294         $js  = 'function confirmReset() { ';
295         $js .= '    var agree = confirm("' . $msg . '"); ';
296         $js .= '    return agree;';
297         $js .= '}';
298
299         $this->inlineScript($js);
300     }
301
302     /**
303      * Reset an application's Consumer key and secret
304      *
305      * XXX: Should this be moved to its own page with a confirm?
306      *
307      */
308     function resetKey()
309     {
310         $this->application->query('BEGIN');
311
312         $oauser = new Oauth_application_user();
313         $oauser->application_id = $this->application->id;
314         $result = $oauser->delete();
315
316         if ($result === false) {
317             common_log_db_error($oauser, 'DELETE', __FILE__);
318             $this->success = false;
319             $this->msg = ('Unable to reset consumer key and secret.');
320             $this->showPage();
321             return;
322         }
323
324         $consumer = $this->application->getConsumer();
325         $result = $consumer->delete();
326
327         if ($result === false) {
328             common_log_db_error($consumer, 'DELETE', __FILE__);
329             $this->success = false;
330             $this->msg = ('Unable to reset consumer key and secret.');
331             $this->showPage();
332             return;
333         }
334
335         $consumer = Consumer::generateNew();
336
337         $result = $consumer->insert();
338
339         if (empty($result)) {
340             common_log_db_error($consumer, 'INSERT', __FILE__);
341             $this->application->query('ROLLBACK');
342             $this->success = false;
343             $this->msg = ('Unable to reset consumer key and secret.');
344             $this->showPage();
345             return;
346         }
347
348         $orig = clone($this->application);
349         $this->application->consumer_key = $consumer->consumer_key;
350         $result = $this->application->update($orig);
351
352         if ($result === false) {
353             common_log_db_error($application, 'UPDATE', __FILE__);
354             $this->application->query('ROLLBACK');
355             $this->success = false;
356             $this->msg = ('Unable to reset consumer key and secret.');
357             $this->showPage();
358             return;
359         }
360
361         $this->application->query('COMMIT');
362
363         $this->success = true;
364         $this->msg = ('Consumer key and secret reset.');
365         $this->showPage();
366     }
367 }