2011-08-07 00:32:06 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud - Addressbook
|
|
|
|
*
|
|
|
|
* @author Jakob Sack
|
|
|
|
* @copyright 2011 Jakob Sack mail@jakobsack.de
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
require_once('../../lib/base.php');
|
2011-10-01 01:10:08 +04:00
|
|
|
OC_Util::checkLoggedIn();
|
2011-10-01 01:05:10 +04:00
|
|
|
OC_Util::checkAppEnabled('contacts');
|
2011-08-07 00:32:06 +04:00
|
|
|
|
|
|
|
$id = $_GET['id'];
|
2012-01-19 19:04:39 +04:00
|
|
|
if(isset($GET['refresh'])) {
|
|
|
|
header("Cache-Control: no-cache, no-store, must-revalidate");
|
|
|
|
}
|
2011-08-07 00:32:06 +04:00
|
|
|
$l10n = new OC_L10N('contacts');
|
|
|
|
|
2012-02-12 00:48:45 +04:00
|
|
|
$content = OC_Contacts_App::getContactVCard($id);
|
2012-01-19 19:04:39 +04:00
|
|
|
$image = new OC_Image();
|
2011-09-17 02:26:57 +04:00
|
|
|
// invalid vcard
|
|
|
|
if( is_null($content)){
|
2012-01-19 19:04:39 +04:00
|
|
|
$image->loadFromFile('img/person_large.png');
|
|
|
|
header('Content-Type: '.$image->mimeType());
|
|
|
|
$image();
|
|
|
|
//echo $l10n->t('This card is not RFC compatible.');
|
2011-09-17 02:26:57 +04:00
|
|
|
exit();
|
2012-01-19 19:04:39 +04:00
|
|
|
} else {
|
|
|
|
// Photo :-)
|
|
|
|
foreach($content->children as $child){
|
|
|
|
if($child->name == 'PHOTO'){
|
|
|
|
$mime = 'image/jpeg';
|
|
|
|
foreach($child->parameters as $parameter){
|
|
|
|
if( $parameter->name == 'TYPE' ){
|
|
|
|
$mime = $parameter->value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if($image->loadFromBase64($child->value)) {
|
2012-01-28 00:34:56 +04:00
|
|
|
if($image->width() > 200 || $image->height() > 200) {
|
|
|
|
$image->resize(200);
|
|
|
|
}
|
2012-01-19 19:04:39 +04:00
|
|
|
header('Content-Type: '.$mime);
|
|
|
|
$image();
|
|
|
|
exit();
|
|
|
|
} else {
|
|
|
|
$image->loadFromFile('img/person_large.png');
|
|
|
|
header('Content-Type: '.$image->mimeType());
|
|
|
|
$image();
|
2011-08-07 00:32:06 +04:00
|
|
|
}
|
2012-01-19 19:04:39 +04:00
|
|
|
//$photo = base64_decode($child->value);
|
|
|
|
//header('Content-Type: '.$mime);
|
|
|
|
//header('Content-Length: ' . strlen($photo));
|
|
|
|
//echo $photo;
|
|
|
|
//exit();
|
2011-08-07 00:32:06 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-01-19 19:04:39 +04:00
|
|
|
$image->loadFromFile('img/person_large.png');
|
|
|
|
header('Content-Type: '.$image->mimeType());
|
|
|
|
$image();
|
|
|
|
/*
|
2011-08-07 00:32:06 +04:00
|
|
|
// Logo :-/
|
|
|
|
foreach($content->children as $child){
|
|
|
|
if($child->name == 'PHOTO'){
|
|
|
|
$mime = 'image/jpeg';
|
|
|
|
foreach($child->parameters as $parameter){
|
|
|
|
if($parameter->name == 'TYPE'){
|
|
|
|
$mime = $parameter->value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$photo = base64_decode($child->value());
|
|
|
|
header('Content-Type: '.$mime);
|
|
|
|
header('Content-Length: ' . strlen($photo));
|
|
|
|
echo $photo;
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
2012-01-19 19:04:39 +04:00
|
|
|
*/
|
2011-08-07 00:32:06 +04:00
|
|
|
// Not found :-(
|
2012-01-19 19:04:39 +04:00
|
|
|
//echo $l10n->t('This card does not contain a photo.');
|