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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-05-03 12:23:29 +02:00
|
|
|
OCP\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');
|
2012-06-24 22:21:21 +02:00
|
|
|
session_write_close();
|
2011-12-17 20:38:52 +01:00
|
|
|
|
2012-07-20 17:09:03 +02:00
|
|
|
function getStandardImage() {
|
2012-05-03 10:46:27 +02:00
|
|
|
OCP\Response::enableCaching();
|
|
|
|
OCP\Response::redirect(OCP\Util::imagePath('contacts', 'person.png'));
|
2011-12-17 20:38:52 +01:00
|
|
|
}
|
|
|
|
|
2012-05-04 23:53:29 +02:00
|
|
|
if(!extension_loaded('gd') || !function_exists('gd_info')) {
|
2012-08-09 16:31:04 +02:00
|
|
|
OCP\Util::writeLog('contacts',
|
2012-07-20 17:09:03 +02:00
|
|
|
'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-08-09 16:31:04 +02:00
|
|
|
$caching = 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-07-20 17:09:03 +02:00
|
|
|
if(is_null($contact)) {
|
2012-08-09 16:31:04 +02:00
|
|
|
OCP\Util::writeLog('contacts',
|
|
|
|
'thumbnail.php. The VCard for ID ' . $id . ' is not RFC compatible',
|
2012-07-20 17:09:03 +02:00
|
|
|
OCP\Util::ERROR);
|
2012-01-02 22:34:52 +01:00
|
|
|
getStandardImage();
|
2011-12-17 20:38:52 +01:00
|
|
|
exit();
|
|
|
|
}
|
2012-05-03 10:46:27 +02:00
|
|
|
OCP\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) {
|
|
|
|
if($image->loadFromBase64($photo)) {
|
|
|
|
if($image->centerCrop()) {
|
|
|
|
if($image->resize($thumbnail_size)) {
|
2012-08-09 16:31:04 +02:00
|
|
|
$modified = OC_Contacts_App::lastModified($contact);
|
|
|
|
// Force refresh if modified within the last minute.
|
|
|
|
if(!is_null($modified)) {
|
|
|
|
$caching = (time() - $modified->format('U') > 60) ? null : 0;
|
|
|
|
}
|
|
|
|
OCP\Response::enableCaching($caching);
|
|
|
|
if(!is_null($modified)) {
|
|
|
|
OCP\Response::setLastModifiedHeader($modified);
|
|
|
|
}
|
|
|
|
OCP\Response::setETagHeader(md5($photo));
|
2012-02-14 01:11:21 +01:00
|
|
|
if($image->show()) {
|
|
|
|
exit();
|
|
|
|
} else {
|
2012-08-09 16:31:04 +02:00
|
|
|
OCP\Util::writeLog('contacts',
|
|
|
|
'thumbnail.php. Couldn\'t display thumbnail for ID ' . $id,
|
2012-07-20 17:09:03 +02:00
|
|
|
OCP\Util::ERROR);
|
2012-02-14 01:11:21 +01:00
|
|
|
}
|
2012-02-12 14:57:44 +01:00
|
|
|
} else {
|
2012-08-09 16:31:04 +02:00
|
|
|
OCP\Util::writeLog('contacts',
|
|
|
|
'thumbnail.php. Couldn\'t resize thumbnail for ID ' . $id,
|
2012-07-20 17:09:03 +02:00
|
|
|
OCP\Util::ERROR);
|
2011-12-17 20:38:52 +01:00
|
|
|
}
|
2012-02-14 01:11:21 +01:00
|
|
|
}else{
|
2012-08-09 16:31:04 +02:00
|
|
|
OCP\Util::writeLog('contacts',
|
|
|
|
'thumbnail.php. Couldn\'t crop thumbnail for ID ' . $id,
|
2012-07-20 17:09:03 +02:00
|
|
|
OCP\Util::ERROR);
|
2011-12-17 20:38:52 +01:00
|
|
|
}
|
2012-02-14 01:11:21 +01:00
|
|
|
} else {
|
2012-08-09 16:31:04 +02:00
|
|
|
OCP\Util::writeLog('contacts',
|
|
|
|
'thumbnail.php. Couldn\'t load image string for ID ' . $id,
|
2012-07-20 17:09:03 +02:00
|
|
|
OCP\Util::ERROR);
|
2011-12-17 20:38:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
getStandardImage();
|