Skip to content

Commit

Permalink
Log failure on parsing
Browse files Browse the repository at this point in the history
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
  • Loading branch information
skjnldsv committed Dec 17, 2018
1 parent f46993e commit bc4168e
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 15 deletions.
5 changes: 4 additions & 1 deletion apps/dav/appinfo/v1/carddav.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@

$server->addPlugin(new \Sabre\DAV\Sync\Plugin());
$server->addPlugin(new \Sabre\CardDAV\VCFExportPlugin());
$server->addPlugin(new \OCA\DAV\CardDAV\ImageExportPlugin(new \OCA\DAV\CardDAV\PhotoCache(\OC::$server->getAppDataDir('dav-photocache'))));
$server->addPlugin(new \OCA\DAV\CardDAV\ImageExportPlugin(new \OCA\DAV\CardDAV\PhotoCache(
\OC::$server->getAppDataDir('dav-photocache'),
\OC::$server->getLogger()
)));
$server->addPlugin(new ExceptionLoggerPlugin('carddav', \OC::$server->getLogger()));

// And off we go!
Expand Down
3 changes: 2 additions & 1 deletion apps/dav/lib/AppInfo/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ public function __construct() {

$container->registerService(PhotoCache::class, function(SimpleContainer $s) use ($server) {
return new PhotoCache(
$server->getAppDataDir('dav-photocache')
$server->getAppDataDir('dav-photocache'),
$server->getLogger()
);
});

Expand Down
31 changes: 19 additions & 12 deletions apps/dav/lib/CardDAV/PhotoCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,32 @@
namespace OCA\DAV\CardDAV;

use OCP\Files\IAppData;
use OCP\ILogger;
use OCP\Files\NotFoundException;
use OCP\Files\NotPermittedException;
use OCP\Files\SimpleFS\ISimpleFile;
use OCP\Files\SimpleFS\ISimpleFolder;
use Sabre\CardDAV\Card;
use Sabre\VObject\Property\Binary;
use Sabre\VObject\Property\Uri;
use Sabre\VObject\Reader;

class PhotoCache {

/** @var IAppData $appData */
/** @var IAppData */
protected $appData;

/** @var ILogger */
protected $logger;

/**
* PhotoCache constructor.
*
* @param IAppData $appData
* @param ILogger $logger
*/
public function __construct(IAppData $appData) {
public function __construct(IAppData $appData, ILogger $logger) {
$this->appData = $appData;
$this->logger = $logger;
}

/**
Expand Down Expand Up @@ -135,13 +140,14 @@ private function getFile(ISimpleFolder $folder, $size) {

$ratio = $photo->width() / $photo->height();
if ($ratio < 1) {
$ratio = 1/$ratio;
$ratio = 1 / $ratio;
}
$size = (int)($size * $ratio);

$size = (int) ($size * $ratio);
if ($size !== -1) {
$photo->resize($size);
}

try {
$file = $folder->newFile($path);
$file->putContent($photo->data());
Expand All @@ -153,7 +159,6 @@ private function getFile(ISimpleFolder $folder, $size) {
return $file;
}


/**
* @param int $addressBookId
* @param string $cardUri
Expand Down Expand Up @@ -194,7 +199,6 @@ private function getPhoto(Card $node) {
}

$photo = $vObject->PHOTO;
$val = $photo->getValue();

// handle data URI. e.g PHOTO;VALUE=URI:data:image/jpeg;base64,/9j/4AAQSkZJRgABAQE
if ($photo->getValueType() === 'URI') {
Expand All @@ -205,12 +209,13 @@ private function getPhoto(Card $node) {
return false;
}
if (substr_count($parsed['path'], ';') === 1) {
list($type,) = explode(';', $parsed['path']);
list($type) = explode(';', $parsed['path']);
}
$val = file_get_contents($val);
} else {
// get type if binary data
$type = $this->getBinaryType($photo);
$val = $photo->getValue();
}

$allowedContentTypes = [
Expand All @@ -219,16 +224,18 @@ private function getPhoto(Card $node) {
'image/gif',
];

if(!in_array($type, $allowedContentTypes, true)) {
if (!in_array($type, $allowedContentTypes, true)) {
$type = 'application/octet-stream';
}

return [
'Content-Type' => $type,
'body' => $val
'body' => $val
];
} catch(\Exception $ex) {

} catch (\Exception $e) {
$this->logger->logException($ex, [
'message' => 'Exception during vcard photo parsing'
]);
}
return false;
}
Expand Down
5 changes: 4 additions & 1 deletion apps/dav/lib/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,10 @@ public function __construct(IRequest $request, $baseUri) {
$this->server->addPlugin(new \OCA\DAV\CardDAV\Plugin());
$this->server->addPlugin(new VCFExportPlugin());
$this->server->addPlugin(new MultiGetExportPlugin());
$this->server->addPlugin(new ImageExportPlugin(new PhotoCache(\OC::$server->getAppDataDir('dav-photocache'))));
$this->server->addPlugin(new ImageExportPlugin(new PhotoCache(
\OC::$server->getAppDataDir('dav-photocache'),
\OC::$server->getLogger())
));
}

// system tags plugins
Expand Down

0 comments on commit bc4168e

Please sign in to comment.