3 * StatusNet, the distributed open-source microblogging tool
5 * Miscellaneous settings
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.
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.
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/>.
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/
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
38 * Miscellaneous settings actions
40 * Currently this just manages URL shortening.
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/
50 class UrlsettingsAction extends SettingsAction
55 * @return string Title of the page
60 return _('URL settings');
64 * Instructions for use
66 * @return instructions for use
69 function getInstructions()
71 // TRANS: Instructions for tab "Other" in user profile settings.
72 return _('Manage various other options.');
75 function showScripts()
77 parent::showScripts();
78 $this->autofocus('urlshorteningservice');
82 * Content area of the page
84 * Shows a form for uploading an avatar.
89 function showContent()
91 $user = common_current_user();
93 $this->elementStart('form', array('method' => 'post',
94 'id' => 'form_settings_other',
95 'class' => 'form_settings',
97 common_local_url('urlsettings')));
98 $this->elementStart('fieldset');
99 $this->hidden('token', common_session_token());
100 $this->elementStart('ul', 'form_data');
102 $shorteners = array();
104 Event::handle('GetUrlShorteners', array(&$shorteners));
108 foreach ($shorteners as $name => $value)
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)');
119 // Include default values
121 $services['none'] = _('[none]');
122 $services['internal'] = _('[internal]');
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');
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');
160 * Saves the changes to url-shortening prefs and shows a success or failure
166 function handlePost()
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.'));
176 $urlshorteningservice = $this->trimmed('urlshorteningservice');
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).'));
184 $maxurllength = $this->trimmed('maxurllength');
186 if (!Validate::number($maxurllength, array('min' => 0))) {
187 throw new ClientException(_('Invalid number for max url length.'));
190 $maxnoticelength = $this->trimmed('maxnoticelength');
192 if (!Validate::number($maxnoticelength, array('min' => 0))) {
193 throw new ClientException(_('Invalid number for max notice length.'));
196 $user = common_current_user();
198 assert(!is_null($user)); // should already be checked
200 $user->query('BEGIN');
202 $original = clone($user);
204 $user->urlshorteningservice = $urlshorteningservice;
206 $result = $user->update($original);
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.'));
215 $prefs = User_urlshortener_prefs::getPrefs($user);
219 $prefs = new User_urlshortener_prefs();
221 $prefs->user_id = $user->id;
222 $prefs->created = common_sql_now();
224 $orig = clone($prefs);
227 $prefs->urlshorteningservice = $urlshorteningservice;
228 $prefs->maxurllength = $maxurllength;
229 $prefs->maxnoticelength = $maxnoticelength;
232 $result = $prefs->update($orig);
234 $result = $prefs->insert();
238 throw new ServerException(_('Error saving user URL shortening preferences.'));
241 $user->query('COMMIT');
243 // TRANS: Confirmation message after saving preferences.
244 $this->showForm(_('Preferences saved.'), true);