2011-12-17 20:38:52 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud - Addressbook
|
|
|
|
*
|
2012-01-02 22:34:52 +01:00
|
|
|
* @author Thomas Tanghus
|
|
|
|
* @copyright 2011-2012 Thomas Tanghus <thomas@tanghus.net>
|
2011-12-17 20:38:52 +01: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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Init owncloud
|
2012-04-17 19:31:29 +02:00
|
|
|
|
2012-01-19 19:47:09 +01:00
|
|
|
OC_JSON::checkLoggedIn();
|
2012-05-01 22:59:38 +02:00
|
|
|
//OCP\User::checkLoggedIn();
|
2012-05-02 19:08:37 +02:00
|
|
|
OCP\App::checkAppEnabled('contacts');
|
2011-12-17 20:38:52 +01:00
|
|
|
|
|
|
|
function getStandardImage(){
|
2012-02-12 20:38:28 +01:00
|
|
|
OC_Response::setExpiresHeader('P10D');
|
2012-02-12 20:38:06 +01:00
|
|
|
OC_Response::enableCaching();
|
2012-05-02 00:20:45 +02:00
|
|
|
OC_Response::redirect(OCP\Util::imagePath('contacts', 'person.png'));
|
2011-12-17 20:38:52 +01:00
|
|
|
}
|
|
|
|
|
2012-01-19 18:28:17 +01:00
|
|
|
if(!function_exists('imagecreatefromjpeg')) {
|
2012-05-01 17:38:27 +02:00
|
|
|
OCP\Util::writeLog('contacts','thumbnail.php. GD module not installed',OCP\Util::DEBUG);
|
2012-01-19 18:28:17 +01:00
|
|
|
getStandardImage();
|
|
|
|
exit();
|
|
|
|
}
|
2011-12-17 20:38:52 +01:00
|
|
|
|
|
|
|
$id = $_GET['id'];
|
2012-04-22 20:38:17 +02:00
|
|
|
$caching = isset($_GET['refresh']) ? 0 : null;
|
2011-12-17 20:38:52 +01:00
|
|
|
|
2012-02-12 14:57:44 +01:00
|
|
|
$contact = OC_Contacts_App::getContactVCard($id);
|
2011-12-17 20:38:52 +01:00
|
|
|
|
|
|
|
// invalid vcard
|
2012-02-12 20:40:44 +01:00
|
|
|
if(is_null($contact)){
|
2012-05-01 17:38:27 +02:00
|
|
|
OCP\Util::writeLog('contacts','thumbnail.php. The VCard for ID '.$id.' is not RFC compatible',OCP\Util::ERROR);
|
2012-01-02 22:34:52 +01:00
|
|
|
getStandardImage();
|
2011-12-17 20:38:52 +01:00
|
|
|
exit();
|
|
|
|
}
|
2012-04-22 20:38:17 +02:00
|
|
|
OC_Response::enableCaching($caching);
|
2012-02-12 20:40:44 +01:00
|
|
|
OC_Contacts_App::setLastModifiedHeader($contact);
|
2011-12-17 20:38:52 +01:00
|
|
|
|
2012-01-02 22:34:52 +01:00
|
|
|
$thumbnail_size = 23;
|
2011-12-17 20:38:52 +01:00
|
|
|
|
2012-01-19 18:28:17 +01:00
|
|
|
// Find the photo from VCard.
|
2012-02-12 14:57:44 +01:00
|
|
|
$image = new OC_Image();
|
|
|
|
$photo = $contact->getAsString('PHOTO');
|
2012-02-14 01:11:21 +01:00
|
|
|
if($photo) {
|
|
|
|
OC_Response::setETagHeader(md5($photo));
|
2012-02-12 14:57:44 +01:00
|
|
|
|
2012-02-14 01:11:21 +01:00
|
|
|
if($image->loadFromBase64($photo)) {
|
|
|
|
if($image->centerCrop()) {
|
|
|
|
if($image->resize($thumbnail_size)) {
|
|
|
|
if($image->show()) {
|
|
|
|
// done
|
|
|
|
exit();
|
|
|
|
} else {
|
2012-05-01 17:38:27 +02:00
|
|
|
OCP\Util::writeLog('contacts','thumbnail.php. Couldn\'t display thumbnail for ID '.$id,OCP\Util::ERROR);
|
2012-02-14 01:11:21 +01:00
|
|
|
}
|
2012-02-12 14:57:44 +01:00
|
|
|
} else {
|
2012-05-01 17:38:27 +02:00
|
|
|
OCP\Util::writeLog('contacts','thumbnail.php. Couldn\'t resize thumbnail for ID '.$id,OCP\Util::ERROR);
|
2011-12-17 20:38:52 +01:00
|
|
|
}
|
2012-02-14 01:11:21 +01:00
|
|
|
}else{
|
2012-05-01 17:38:27 +02:00
|
|
|
OCP\Util::writeLog('contacts','thumbnail.php. Couldn\'t crop thumbnail for ID '.$id,OCP\Util::ERROR);
|
2011-12-17 20:38:52 +01:00
|
|
|
}
|
2012-02-14 01:11:21 +01:00
|
|
|
} else {
|
2012-05-01 17:38:27 +02:00
|
|
|
OCP\Util::writeLog('contacts','thumbnail.php. Couldn\'t load image string for ID '.$id,OCP\Util::ERROR);
|
2011-12-17 20:38:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
getStandardImage();
|