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-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
|
|
|
|
2013-01-06 12:32:21 +01:00
|
|
|
//OCP\Util::writeLog('contacts', OCP\Util::getRequestUri(), OCP\Util::DEBUG);
|
2012-10-24 21:35:51 +02: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-10-25 03:34:12 +02:00
|
|
|
$image = OCA\Contacts\App::cacheThumbnail($id);
|
2012-10-24 21:35:51 +02:00
|
|
|
if($image !== false) {
|
2012-10-25 03:34:12 +02:00
|
|
|
$modified = OCA\Contacts\App::lastModified($id);
|
2012-10-24 21:35:51 +02:00
|
|
|
// Force refresh if modified within the last minute.
|
|
|
|
if(!is_null($modified)) {
|
|
|
|
$caching = (time() - $modified->format('U') > 60) ? null : 0;
|
|
|
|
OCP\Response::setLastModifiedHeader($modified);
|
2011-12-17 20:38:52 +01:00
|
|
|
}
|
2012-10-24 21:35:51 +02:00
|
|
|
OCP\Response::enableCaching($caching);
|
|
|
|
header('Content-Type: image/png');
|
|
|
|
echo $image;
|
|
|
|
} else {
|
|
|
|
getStandardImage();
|
2011-12-17 20:38:52 +01:00
|
|
|
}
|