]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/urlsettings.php
Merge branch '1.0.x' into testing
[quix0rs-gnu-social.git] / actions / urlsettings.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Miscellaneous settings
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    Robin Millette <millette@status.net>
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2008-2009 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35
36
37 /**
38  * Miscellaneous settings actions
39  *
40  * Currently this just manages URL shortening.
41  *
42  * @category Settings
43  * @package  StatusNet
44  * @author   Robin Millette <millette@status.net>
45  * @author   Zach Copley <zach@status.net>
46  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
47  * @link     http://status.net/
48  */
49
50 class UrlsettingsAction extends SettingsAction
51 {
52     /**
53      * Title of the page
54      *
55      * @return string Title of the page
56      */
57
58     function title()
59     {
60         return _('URL settings');
61     }
62
63     /**
64      * Instructions for use
65      *
66      * @return instructions for use
67      */
68
69     function getInstructions()
70     {
71         // TRANS: Instructions for tab "Other" in user profile settings.
72         return _('Manage various other options.');
73     }
74
75     function showScripts()
76     {
77         parent::showScripts();
78         $this->autofocus('urlshorteningservice');
79     }
80
81     /**
82      * Content area of the page
83      *
84      * Shows a form for uploading an avatar.
85      *
86      * @return void
87      */
88
89     function showContent()
90     {
91         $user = common_current_user();
92
93         $this->elementStart('form', array('method' => 'post',
94                                           'id' => 'form_settings_other',
95                                           'class' => 'form_settings',
96                                           'action' =>
97                                           common_local_url('urlsettings')));
98         $this->elementStart('fieldset');
99         $this->hidden('token', common_session_token());
100         $this->elementStart('ul', 'form_data');
101
102         $shorteners = array();
103
104         Event::handle('GetUrlShorteners', array(&$shorteners));
105
106         $services = array();
107
108         foreach ($shorteners as $name => $value)
109         {
110             $services[$name] = $name;
111             if ($value['freeService']) {
112                 // TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
113                 // TRANS: user's profile settings. This message has one space at the beginning. Use your
114                 // TRANS: language's word separator here if it has one (most likely a single space).
115                 $services[$name] .= _(' (free service)');
116             }
117         }
118
119         // Include default values
120
121         $services['none']     = _('[none]');
122         $services['internal'] = _('[internal]');
123
124         if ($services) {
125
126             asort($services);
127
128             $this->elementStart('li');
129             // TRANS: Label for dropdown with URL shortener services.
130             $this->dropdown('urlshorteningservice', _('Shorten URLs with'),
131                             // TRANS: Tooltip for for dropdown with URL shortener services.
132                             $services, _('Automatic shortening service to use.'),
133                             false, $user->urlshorteningservice);
134             $this->elementEnd('li');
135         }
136         $this->elementStart('li');
137         $this->input('maxurllength',
138                      _('URL longer than'),
139                      (!is_null($this->arg('maxurllength'))) ?
140                      $this->arg('maxurllength') : User_urlshortener_prefs::maxUrlLength($user),
141                      _('URLs longer than this will be shortened, 0 means always shorten.'));
142         $this->elementEnd('li');
143         $this->elementStart('li');
144         $this->input('maxnoticelength',
145                      _('Text longer than'),
146                      (!is_null($this->arg('maxnoticelength'))) ?
147                      $this->arg('maxnoticelength') : User_urlshortener_prefs::maxNoticeLength($user),
148                      _('URLs in notices longer than this will be shortened, 0 means always shorten.'));
149         $this->elementEnd('li');
150         $this->elementEnd('ul');
151         // TRANS: Button text for saving "Other settings" in profile.
152         $this->submit('save', _m('BUTTON','Save'));
153         $this->elementEnd('fieldset');
154         $this->elementEnd('form');
155     }
156
157     /**
158      * Handle a post
159      *
160      * Saves the changes to url-shortening prefs and shows a success or failure
161      * message.
162      *
163      * @return void
164      */
165
166     function handlePost()
167     {
168         // CSRF protection
169         $token = $this->trimmed('token');
170         if (!$token || $token != common_session_token()) {
171             $this->showForm(_('There was a problem with your session token. '.
172                               'Try again, please.'));
173             return;
174         }
175
176         $urlshorteningservice = $this->trimmed('urlshorteningservice');
177
178         if (!is_null($urlshorteningservice) && strlen($urlshorteningservice) > 50) {
179             // TRANS: Form validation error for form "Other settings" in user profile.
180             $this->showForm(_('URL shortening service is too long (maximum 50 characters).'));
181             return;
182         }
183
184         $maxurllength = $this->trimmed('maxurllength');
185
186         if (!Validate::number($maxurllength, array('min' => 0))) {
187             throw new ClientException(_('Invalid number for max url length.'));
188         }
189
190         $maxnoticelength = $this->trimmed('maxnoticelength');
191
192         if (!Validate::number($maxnoticelength, array('min' => 0))) {
193             throw new ClientException(_('Invalid number for max notice length.'));
194         }
195
196         $user = common_current_user();
197
198         assert(!is_null($user)); // should already be checked
199
200         $user->query('BEGIN');
201
202         $original = clone($user);
203
204         $user->urlshorteningservice = $urlshorteningservice;
205
206         $result = $user->update($original);
207
208         if ($result === false) {
209             common_log_db_error($user, 'UPDATE', __FILE__);
210             // TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
211             $this->serverError(_('Could not update user.'));
212             return;
213         }
214
215         $prefs = User_urlshortener_prefs::getPrefs($user);
216         $orig  = null;
217
218         if (empty($prefs)) {
219             $prefs = new User_urlshortener_prefs();
220
221             $prefs->user_id = $user->id;
222             $prefs->created = common_sql_now();
223         } else {
224             $orig = clone($prefs);
225         }
226
227         $prefs->urlshorteningservice = $urlshorteningservice;
228         $prefs->maxurllength         = $maxurllength;
229         $prefs->maxnoticelength      = $maxnoticelength;
230
231         if (!empty($orig)) {
232             $result = $prefs->update($orig);
233         } else {
234             $result = $prefs->insert();
235         }
236
237         if (!$result) {
238             throw new ServerException(_('Error saving user URL shortening preferences.'));
239         }
240
241         $user->query('COMMIT');
242
243         // TRANS: Confirmation message after saving preferences.
244         $this->showForm(_('Preferences saved.'), true);
245     }
246 }