]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/applicationeditform.php
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing
[quix0rs-gnu-social.git] / lib / applicationeditform.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Form for editing an 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  Form
23  * @package   StatusNet
24  * @author    Zach Copley <zach@status.net>
25  * @copyright 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/form.php';
35
36 /**
37  * Form for editing an application
38  *
39  * @category Form
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
47 class ApplicationEditForm extends Form
48 {
49     /**
50      * group for user to join
51      */
52
53     var $application = null;
54
55     /**
56      * Constructor
57      *
58      * @param Action     $out   output channel
59      * @param User_group $group group to join
60      */
61
62     function __construct($out=null, $application=null)
63     {
64         parent::__construct($out);
65
66         $this->application = $application;
67     }
68
69     /**
70      * ID of the form
71      *
72      * @return string ID of the form
73      */
74
75     function id()
76     {
77         if ($this->application) {
78             return 'form_application_edit-' . $this->application->id;
79         } else {
80             return 'form_application_add';
81         }
82     }
83
84     /**
85      * HTTP method used to submit the form
86      *
87      * For image data we need to send multipart/form-data
88      * so we set that here too
89      *
90      * @return string the method to use for submitting
91      */
92
93     function method()
94     {
95         $this->enctype = 'multipart/form-data';
96         return 'post';
97     }
98
99     /**
100      * class of the form
101      *
102      * @return string of the form class
103      */
104
105     function formClass()
106     {
107         return 'form_settings';
108     }
109
110     /**
111      * Action of the form
112      *
113      * @return string URL of the action
114      */
115
116     function action()
117     {
118         $cur = common_current_user();
119
120         if (!empty($this->application)) {
121             return common_local_url('editapplication',
122                                     array('id' => $this->application->id));
123         } else {
124             return common_local_url('newapplication');
125         }
126     }
127
128     /**
129      * Name of the form
130      *
131      * @return void
132      */
133
134     function formLegend()
135     {
136         $this->out->element('legend', null, _('Edit application'));
137     }
138
139     /**
140      * Data elements of the form
141      *
142      * @return void
143      */
144
145     function formData()
146     {
147         if ($this->application) {
148             $id                = $this->application->id;
149             $icon              = $this->application->icon;
150             $name              = $this->application->name;
151             $description       = $this->application->description;
152             $source_url        = $this->application->source_url;
153             $organization      = $this->application->organization;
154             $homepage          = $this->application->homepage;
155             $callback_url      = $this->application->callback_url;
156             $this->type        = $this->application->type;
157             $this->access_type = $this->application->access_type;
158         } else {
159             $id                = '';
160             $icon              = '';
161             $name              = '';
162             $description       = '';
163             $source_url        = '';
164             $organization      = '';
165             $homepage          = '';
166             $callback_url      = '';
167             $this->type        = '';
168             $this->access_type = '';
169         }
170
171         $this->out->hidden('token', common_session_token());
172
173         $this->out->elementStart('ul', 'form_data');
174
175         $this->out->elementStart('li', array('id' => 'application_icon'));
176
177         if (!empty($icon)) {
178             $this->out->element('img', array('src' => $icon));
179         }
180
181         $this->out->element('label', array('for' => 'app_icon'),
182                             _('Icon'));
183         $this->out->element('input', array('name' => 'app_icon',
184                                            'type' => 'file',
185                                            'id' => 'app_icon'));
186         $this->out->element('p', 'form_guide', _('Icon for this application'));
187         $this->out->element('input', array('name' => 'MAX_FILE_SIZE',
188                                            'type' => 'hidden',
189                                            'id' => 'MAX_FILE_SIZE',
190                                            'value' => ImageFile::maxFileSizeInt()));
191         $this->out->elementEnd('li');
192
193         $this->out->elementStart('li');
194
195         $this->out->hidden('application_id', $id);
196
197         $this->out->input('name', _('Name'),
198                           ($this->out->arg('name')) ? $this->out->arg('name') : $name);
199
200         $this->out->elementEnd('li');
201
202         $this->out->elementStart('li');
203
204         $maxDesc = Oauth_application::maxDesc();
205         if ($maxDesc > 0) {
206             $descInstr = sprintf(_('Describe your application in %d chars'),
207                                  $maxDesc);
208         } else {
209             $descInstr = _('Describe your application');
210         }
211         $this->out->textarea('description', _('Description'),
212                         ($this->out->arg('description')) ? $this->out->arg('description') : $description,
213                              $descInstr);
214
215         $this->out->elementEnd('li');
216
217         $this->out->elementStart('li');
218         $this->out->input('source_url', _('Source URL'),
219                           ($this->out->arg('source_url')) ? $this->out->arg('source_url') : $source_url,
220                           _('URL of the homepage of this application'));
221         $this->out->elementEnd('li');
222
223         $this->out->elementStart('li');
224         $this->out->input('organization', _('Organization'),
225                           ($this->out->arg('organization')) ? $this->out->arg('organization') : $organization,
226                           _('Organization responsible for this application'));
227         $this->out->elementEnd('li');
228
229         $this->out->elementStart('li');
230         $this->out->input('homepage', _('Homepage'),
231                           ($this->out->arg('homepage')) ? $this->out->arg('homepage') : $homepage,
232                           _('URL for the homepage of the organization'));
233         $this->out->elementEnd('li');
234
235         $this->out->elementStart('li');
236         $this->out->input('callback_url', ('Callback URL'),
237                           ($this->out->arg('callback_url')) ? $this->out->arg('callback_url') : $callback_url,
238                           _('URL to redirect to after authentication'));
239         $this->out->elementEnd('li');
240
241         $this->out->elementStart('li', array('id' => 'application_types'));
242
243         $attrs = array('name' => 'app_type',
244                        'type' => 'radio',
245                        'id' => 'app_type-browser',
246                        'class' => 'radio',
247                        'value' => Oauth_application::$browser);
248
249         // Default to Browser
250
251         if ($this->application->type == Oauth_application::$browser
252             || empty($this->application->type)) {
253             $attrs['checked'] = 'checked';
254         }
255
256         $this->out->element('input', $attrs);
257
258         $this->out->element('label', array('for' => 'app_type-browser',
259                                            'class' => 'radio'),
260                             _('Browser'));
261
262         $attrs = array('name' => 'app_type',
263                        'type' => 'radio',
264                        'id' => 'app_type-dekstop',
265                        'class' => 'radio',
266                        'value' => Oauth_application::$desktop);
267
268         if ($this->application->type == Oauth_application::$desktop) {
269             $attrs['checked'] = 'checked';
270         }
271
272         $this->out->element('input', $attrs);
273
274         $this->out->element('label', array('for' => 'app_type-desktop',
275                                            'class' => 'radio'),
276                             _('Desktop'));
277         $this->out->element('p', 'form_guide', _('Type of application, browser or desktop'));
278         $this->out->elementEnd('li');
279
280         $this->out->elementStart('li', array('id' => 'default_access_types'));
281
282         $attrs = array('name' => 'default_access_type',
283                        'type' => 'radio',
284                        'id' => 'default_access_type-r',
285                        'class' => 'radio',
286                        'value' => 'r');
287
288         // default to read-only access
289
290         if ($this->application->access_type & Oauth_application::$readAccess
291             || empty($this->application->access_type)) {
292             $attrs['checked'] = 'checked';
293         }
294
295         $this->out->element('input', $attrs);
296
297         $this->out->element('label', array('for' => 'default_access_type-ro',
298                                            'class' => 'radio'),
299                             _('Read-only'));
300
301         $attrs = array('name' => 'default_access_type',
302                        'type' => 'radio',
303                        'id' => 'default_access_type-rw',
304                        'class' => 'radio',
305                        'value' => 'rw');
306
307         if ($this->application->access_type & Oauth_application::$readAccess
308             && $this->application->access_type & Oauth_application::$writeAccess
309             ) {
310             $attrs['checked'] = 'checked';
311         }
312
313         $this->out->element('input', $attrs);
314
315         $this->out->element('label', array('for' => 'default_access_type-rw',
316                                            'class' => 'radio'),
317                             _('Read-write'));
318         $this->out->element('p', 'form_guide', _('Default access for this application: read-only, or read-write'));
319
320         $this->out->elementEnd('li');
321
322         $this->out->elementEnd('ul');
323     }
324
325     /**
326      * Action elements
327      *
328      * @return void
329      */
330
331     function formActions()
332     {
333         $this->out->submit('cancel', _('Cancel'), 'submit form_action-primary',
334                            'cancel', _('Cancel'));
335         $this->out->submit('save', _('Save'), 'submit form_action-secondary',
336                            'save', _('Save'));
337     }
338 }