3 * StatusNet, the distributed open-source microblogging tool
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 Evan Prodromou <evan@status.net>
25 * @author Zach Copley <zach@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')) {
35 require_once INSTALLDIR.'/lib/accountsettingsaction.php';
37 define('MAX_ORIGINAL', 480);
42 * We use jCrop plugin for jQuery to crop the image after upload.
46 * @author Evan Prodromou <evan@status.net>
47 * @author Zach Copley <zach@status.net>
48 * @author Sarven Capadisli <csarven@status.net>
49 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
50 * @link http://status.net/
53 class AvatarsettingsAction extends AccountSettingsAction
56 var $imagefile = null;
62 * @return string Title of the page
71 * Instructions for use
73 * @return instructions for use
76 function getInstructions()
78 return sprintf(_('You can upload your personal avatar. The maximum file size is %s.'), ImageFile::maxFileSize());
82 * Content area of the page
84 * Shows a form for uploading an avatar.
89 function showContent()
91 if ($this->mode == 'crop') {
92 $this->showCropForm();
94 $this->showUploadForm();
98 function showUploadForm()
100 $user = common_current_user();
102 $profile = $user->getProfile();
105 common_log_db_error($user, 'SELECT', __FILE__);
106 $this->serverError(_('User without matching profile'));
110 $original = $profile->getOriginalAvatar();
112 $this->elementStart('form', array('enctype' => 'multipart/form-data',
114 'id' => 'form_settings_avatar',
115 'class' => 'form_settings',
117 common_local_url('avatarsettings')));
118 $this->elementStart('fieldset');
119 $this->element('legend', null, _('Avatar settings'));
120 $this->hidden('token', common_session_token());
122 $this->elementStart('ul', 'form_data');
124 $this->elementStart('li', array('id' => 'avatar_original',
125 'class' => 'avatar_view'));
126 $this->element('h2', null, _("Original"));
127 $this->elementStart('div', array('id'=>'avatar_original_view'));
128 $this->element('img', array('src' => $original->url,
129 'width' => $original->width,
130 'height' => $original->height,
131 'alt' => $user->nickname));
132 $this->elementEnd('div');
133 $this->elementEnd('li');
136 $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
139 $this->elementStart('li', array('id' => 'avatar_preview',
140 'class' => 'avatar_view'));
141 $this->element('h2', null, _("Preview"));
142 $this->elementStart('div', array('id'=>'avatar_preview_view'));
143 $this->element('img', array('src' => $original->url,
144 'width' => AVATAR_PROFILE_SIZE,
145 'height' => AVATAR_PROFILE_SIZE,
146 'alt' => $user->nickname));
147 $this->elementEnd('div');
148 $this->submit('delete', _('Delete'));
149 $this->elementEnd('li');
152 $this->elementStart('li', array ('id' => 'settings_attach'));
153 $this->element('input', array('name' => 'avatarfile',
155 'id' => 'avatarfile'));
156 $this->element('input', array('name' => 'MAX_FILE_SIZE',
158 'id' => 'MAX_FILE_SIZE',
159 'value' => ImageFile::maxFileSizeInt()));
160 $this->elementEnd('li');
161 $this->elementEnd('ul');
163 $this->elementStart('ul', 'form_actions');
164 $this->elementStart('li');
165 $this->submit('upload', _('Upload'));
166 $this->elementEnd('li');
167 $this->elementEnd('ul');
169 $this->elementEnd('fieldset');
170 $this->elementEnd('form');
174 function showCropForm()
176 $user = common_current_user();
178 $profile = $user->getProfile();
181 common_log_db_error($user, 'SELECT', __FILE__);
182 $this->serverError(_('User without matching profile'));
186 $original = $profile->getOriginalAvatar();
188 $this->elementStart('form', array('method' => 'post',
189 'id' => 'form_settings_avatar',
190 'class' => 'form_settings',
192 common_local_url('avatarsettings')));
193 $this->elementStart('fieldset');
194 $this->element('legend', null, _('Avatar settings'));
195 $this->hidden('token', common_session_token());
197 $this->elementStart('ul', 'form_data');
199 $this->elementStart('li',
200 array('id' => 'avatar_original',
201 'class' => 'avatar_view'));
202 $this->element('h2', null, _("Original"));
203 $this->elementStart('div', array('id'=>'avatar_original_view'));
204 $this->element('img', array('src' => Avatar::url($this->filedata['filename']),
205 'width' => $this->filedata['width'],
206 'height' => $this->filedata['height'],
207 'alt' => $user->nickname));
208 $this->elementEnd('div');
209 $this->elementEnd('li');
211 $this->elementStart('li',
212 array('id' => 'avatar_preview',
213 'class' => 'avatar_view'));
214 $this->element('h2', null, _("Preview"));
215 $this->elementStart('div', array('id'=>'avatar_preview_view'));
216 $this->element('img', array('src' => Avatar::url($this->filedata['filename']),
217 'width' => AVATAR_PROFILE_SIZE,
218 'height' => AVATAR_PROFILE_SIZE,
219 'alt' => $user->nickname));
220 $this->elementEnd('div');
222 foreach (array('avatar_crop_x', 'avatar_crop_y',
223 'avatar_crop_w', 'avatar_crop_h') as $crop_info) {
224 $this->element('input', array('name' => $crop_info,
226 'id' => $crop_info));
228 $this->submit('crop', _('Crop'));
230 $this->elementEnd('li');
231 $this->elementEnd('ul');
232 $this->elementEnd('fieldset');
233 $this->elementEnd('form');
240 * We mux on the button name to figure out what the user actually wanted.
245 function handlePost()
247 // Workaround for PHP returning empty $_POST and $_FILES when POST
248 // length > post_max_size in php.ini
252 && ($_SERVER['CONTENT_LENGTH'] > 0)
254 $msg = _('The server was unable to handle that much POST ' .
255 'data (%s bytes) due to its current configuration.');
257 $this->showForm(sprintf($msg, $_SERVER['CONTENT_LENGTH']));
263 $token = $this->trimmed('token');
264 if (!$token || $token != common_session_token()) {
265 $this->showForm(_('There was a problem with your session token. '.
266 'Try again, please.'));
270 if ($this->arg('upload')) {
271 $this->uploadAvatar();
272 } else if ($this->arg('crop')) {
274 } else if ($this->arg('delete')) {
275 $this->deleteAvatar();
277 $this->showForm(_('Unexpected form submission.'));
282 * Handle an image upload
284 * Does all the magic for handling an image upload, and crops the
290 function uploadAvatar()
293 $imagefile = ImageFile::fromUpload('avatarfile');
294 } catch (Exception $e) {
295 $this->showForm($e->getMessage());
299 $cur = common_current_user();
301 $filename = Avatar::filename($cur->id,
302 image_type_to_extension($imagefile->type),
304 'tmp'.common_timestamp());
306 $filepath = Avatar::path($filename);
308 move_uploaded_file($imagefile->filepath, $filepath);
310 $filedata = array('filename' => $filename,
311 'filepath' => $filepath,
312 'width' => $imagefile->width,
313 'height' => $imagefile->height,
314 'type' => $imagefile->type);
316 $_SESSION['FILEDATA'] = $filedata;
318 $this->filedata = $filedata;
320 $this->mode = 'crop';
322 $this->showForm(_('Pick a square area of the image to be your avatar'),
327 * Handle the results of jcrop.
332 function cropAvatar()
334 $filedata = $_SESSION['FILEDATA'];
337 $this->serverError(_('Lost our file data.'));
341 $file_d = ($filedata['width'] > $filedata['height'])
342 ? $filedata['height'] : $filedata['width'];
344 $dest_x = $this->arg('avatar_crop_x') ? $this->arg('avatar_crop_x'):0;
345 $dest_y = $this->arg('avatar_crop_y') ? $this->arg('avatar_crop_y'):0;
346 $dest_w = $this->arg('avatar_crop_w') ? $this->arg('avatar_crop_w'):$file_d;
347 $dest_h = $this->arg('avatar_crop_h') ? $this->arg('avatar_crop_h'):$file_d;
348 $size = min($dest_w, $dest_h, MAX_ORIGINAL);
350 $user = common_current_user();
351 $profile = $user->getProfile();
353 $imagefile = new ImageFile($user->id, $filedata['filepath']);
354 $filename = $imagefile->resize($size, $dest_x, $dest_y, $dest_w, $dest_h);
356 if ($profile->setOriginal($filename)) {
357 @unlink($filedata['filepath']);
358 unset($_SESSION['FILEDATA']);
359 $this->mode = 'upload';
360 $this->showForm(_('Avatar updated.'), true);
361 common_broadcast_profile($profile);
363 $this->showForm(_('Failed updating avatar.'));
368 * Get rid of the current avatar.
373 function deleteAvatar()
375 $user = common_current_user();
376 $profile = $user->getProfile();
378 $avatar = $profile->getOriginalAvatar();
379 if($avatar) $avatar->delete();
380 $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
381 if($avatar) $avatar->delete();
382 $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
383 if($avatar) $avatar->delete();
384 $avatar = $profile->getAvatar(AVATAR_MINI_SIZE);
385 if($avatar) $avatar->delete();
387 $this->showForm(_('Avatar deleted.'), true);
391 * Add the jCrop stylesheet
396 function showStylesheets()
398 parent::showStylesheets();
399 $this->cssLink('css/jquery.Jcrop.css','base','screen, projection, tv');
403 * Add the jCrop scripts
408 function showScripts()
410 parent::showScripts();
412 if ($this->mode == 'crop') {
413 $this->script('js/jcrop/jquery.Jcrop.min.js');
414 $this->script('js/jcrop/jquery.Jcrop.go.js');
417 $this->autofocus('avatarfile');