]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/oauthconnectionssettings.php
Rework application registration workflow to be more private
[quix0rs-gnu-social.git] / actions / oauthconnectionssettings.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * List a user's OAuth connected applications
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  Settings
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 require_once INSTALLDIR . '/lib/connectsettingsaction.php';
35 require_once INSTALLDIR . '/lib/applicationlist.php';
36
37 /**
38  * Show connected OAuth applications
39  *
40  * @category Settings
41  * @package  StatusNet
42  * @author   Zach Copley <zach@status.net>
43  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
44  * @link     http://status.net/
45  *
46  * @see      SettingsAction
47  */
48
49 class OauthconnectionssettingsAction extends ConnectSettingsAction
50 {
51
52     var $page = null;
53
54     function prepare($args)
55     {
56         parent::prepare($args);
57         $this->page = ($this->arg('page')) ? ($this->arg('page') + 0) : 1;
58         return true;
59     }
60
61     /**
62      * Title of the page
63      *
64      * @return string Title of the page
65      */
66
67     function title()
68     {
69         return _('Connected Applications');
70     }
71
72     function isReadOnly($args)
73     {
74         return true;
75     }
76
77     /**
78      * Instructions for use
79      *
80      * @return instructions for use
81      */
82
83     function getInstructions()
84     {
85         return _('You have allowed the following applications to access you account.');
86     }
87
88     /**
89      * Content area of the page
90      *
91      * @return void
92      */
93
94     function showContent()
95     {
96         $user    = common_current_user();
97         $profile = $user->getProfile();
98
99         $offset = ($this->page - 1) * APPS_PER_PAGE;
100         $limit  =  APPS_PER_PAGE + 1;
101
102         $application = $profile->getApplications($offset, $limit);
103
104         $cnt == 0;
105
106         if (!empty($application)) {
107             $al = new ApplicationList($application, $user, $this, true);
108             $cnt = $al->show();
109         }
110
111         if ($cnt == 0) {
112             $this->showEmptyListMessage();
113         }
114
115         $this->pagination($this->page > 1, $cnt > APPS_PER_PAGE,
116                           $this->page, 'connectionssettings',
117                           array('nickname' => $this->user->nickname));
118     }
119
120     /**
121      * Handle posts to this form
122      *
123      * Based on the button that was pressed, muxes out to other functions
124      * to do the actual task requested.
125      *
126      * All sub-functions reload the form with a message -- success or failure.
127      *
128      * @return void
129      */
130
131     function handlePost()
132     {
133         // CSRF protection
134
135         $token = $this->trimmed('token');
136         if (!$token || $token != common_session_token()) {
137             $this->showForm(_('There was a problem with your session token. '.
138                               'Try again, please.'));
139             return;
140         }
141
142     }
143
144     function showEmptyListMessage()
145     {
146         $message = sprintf(_('You have not authorized any applications to use your account.'));
147
148         $this->elementStart('div', 'guide');
149         $this->raw(common_markup_to_html($message));
150         $this->elementEnd('div');
151     }
152
153     function showSections()
154     {
155        $cur = common_current_user();
156
157        $this->element('h2', null, 'Developers');
158        $this->elementStart('p');
159        $this->raw(_('Developers can edit the registration settings for their applications '));
160        $this->element('a',
161            array('href' => common_local_url('oauthappssettings')),
162                'here.');
163        $this->elementEnd('p');
164     }
165
166 }