2011-12-17 23:38:52 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud - Addressbook
|
|
|
|
*
|
2012-01-03 01:34:52 +04:00
|
|
|
* @author Thomas Tanghus
|
|
|
|
* @copyright 2011-2012 Thomas Tanghus <thomas@tanghus.net>
|
2011-12-17 23:38:52 +04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2012-05-02 00:59:38 +04:00
|
|
|
//OCP\User::checkLoggedIn();
|
2012-05-02 21:08:37 +04:00
|
|
|
OCP\App::checkAppEnabled('contacts');
|
2011-12-17 23:38:52 +04:00
|
|
|
|
|
|
|
function getStandardImage(){
|
2012-06-06 03:04:59 +04:00
|
|
|
//OCP\Response::setExpiresHeader('P10D');
|
2012-05-03 12:46:27 +04:00
|
|
|
OCP\Response::enableCaching();
|
|
|
|
OCP\Response::redirect(OCP\Util::imagePath('contacts', 'person.png'));
|
2011-12-17 23:38:52 +04:00
|
|
|
}
|
|
|
|
|
2012-05-05 01:53:29 +04:00
|
|
|
if(!extension_loaded('gd') || !function_exists('gd_info')) {
|
2012-05-01 19:38:27 +04:00
|
|
|
OCP\Util::writeLog('contacts','thumbnail.php. GD module not installed',OCP\Util::DEBUG);
|
2012-01-19 21:28:17 +04:00
|
|
|
getStandardImage();
|
|
|
|
exit();
|
|
|
|
}
|
2011-12-17 23:38:52 +04:00
|
|
|
|
|
|
|
$id = $_GET['id'];
|
2012-04-22 22:38:17 +04:00
|
|
|
$caching = isset($_GET['refresh']) ? 0 : null;
|
2011-12-17 23:38:52 +04:00
|
|
|
|
2012-02-12 17:57:44 +04:00
|
|
|
$contact = OC_Contacts_App::getContactVCard($id);
|
2011-12-17 23:38:52 +04:00
|
|
|
|
|
|
|
// invalid vcard
|
2012-02-12 23:40:44 +04:00
|
|
|
if(is_null($contact)){
|
2012-05-01 19:38:27 +04:00
|
|
|
OCP\Util::writeLog('contacts','thumbnail.php. The VCard for ID '.$id.' is not RFC compatible',OCP\Util::ERROR);
|
2012-01-03 01:34:52 +04:00
|
|
|
getStandardImage();
|
2011-12-17 23:38:52 +04:00
|
|
|
exit();
|
|
|
|
}
|
2012-05-03 12:46:27 +04:00
|
|
|
OCP\Response::enableCaching($caching);
|
2012-02-12 23:40:44 +04:00
|
|
|
OC_Contacts_App::setLastModifiedHeader($contact);
|
2011-12-17 23:38:52 +04:00
|
|
|
|
2012-01-03 01:34:52 +04:00
|
|
|
$thumbnail_size = 23;
|
2011-12-17 23:38:52 +04:00
|
|
|
|
2012-01-19 21:28:17 +04:00
|
|
|
// Find the photo from VCard.
|
2012-02-12 17:57:44 +04:00
|
|
|
$image = new OC_Image();
|
|
|
|
$photo = $contact->getAsString('PHOTO');
|
2012-02-14 04:11:21 +04:00
|
|
|
if($photo) {
|
2012-05-03 12:46:27 +04:00
|
|
|
OCP\Response::setETagHeader(md5($photo));
|
2012-02-14 04:11:21 +04:00
|
|
|
if($image->loadFromBase64($photo)) {
|
|
|
|
if($image->centerCrop()) {
|
|
|
|
if($image->resize($thumbnail_size)) {
|
|
|
|
if($image->show()) {
|
|
|
|
exit();
|
|
|
|
} else {
|
2012-05-01 19:38:27 +04:00
|
|
|
OCP\Util::writeLog('contacts','thumbnail.php. Couldn\'t display thumbnail for ID '.$id,OCP\Util::ERROR);
|
2012-02-14 04:11:21 +04:00
|
|
|
}
|
2012-02-12 17:57:44 +04:00
|
|
|
} else {
|
2012-05-01 19:38:27 +04:00
|
|
|
OCP\Util::writeLog('contacts','thumbnail.php. Couldn\'t resize thumbnail for ID '.$id,OCP\Util::ERROR);
|
2011-12-17 23:38:52 +04:00
|
|
|
}
|
2012-02-14 04:11:21 +04:00
|
|
|
}else{
|
2012-05-01 19:38:27 +04:00
|
|
|
OCP\Util::writeLog('contacts','thumbnail.php. Couldn\'t crop thumbnail for ID '.$id,OCP\Util::ERROR);
|
2011-12-17 23:38:52 +04:00
|
|
|
}
|
2012-02-14 04:11:21 +04:00
|
|
|
} else {
|
2012-05-01 19:38:27 +04:00
|
|
|
OCP\Util::writeLog('contacts','thumbnail.php. Couldn\'t load image string for ID '.$id,OCP\Util::ERROR);
|
2011-12-17 23:38:52 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
getStandardImage();
|