'png', 'image/jpeg' => 'jpg', 'image/gif' => 'gif', 'image/vnd.microsoft.icon' => 'ico', 'image/webp' => 'webp', ]; /** * PhotoCache constructor. */ public function __construct( protected IAppData $appData, protected LoggerInterface $logger, ) { } /** * @throws NotFoundException */ public function get(int $addressBookId, string $cardUri, int $size, Card $card): ISimpleFile { $folder = $this->getFolder($addressBookId, $cardUri); if ($this->isEmpty($folder)) { $this->init($folder, $card); } if (!$this->hasPhoto($folder)) { throw new NotFoundException(); } if ($size !== -1) { $size = 2 ** ceil(log($size) / log(2)); } return $this->getFile($folder, $size); } private function isEmpty(ISimpleFolder $folder): bool { return $folder->getDirectoryListing() === []; } /** * @throws NotPermittedException */ private function init(ISimpleFolder $folder, Card $card): void { $data = $this->getPhoto($card); if ($data === false || !isset($data['Content-Type'])) { $folder->newFile('nophoto', ''); return; } $contentType = $data['Content-Type']; $extension = self::ALLOWED_CONTENT_TYPES[$contentType] ?? null; if ($extension === null) { $folder->newFile('nophoto', ''); return; } $file = $folder->newFile('photo.' . $extension); $file->putContent($data['body']); } private function hasPhoto(ISimpleFolder $folder): bool { return !$folder->fileExists('nophoto'); } /** * @param float|-1 $size */ private function getFile(ISimpleFolder $folder, $size): ISimpleFile { $ext = $this->getExtension($folder); if ($size === -1) { $path = 'photo.' . $ext; } else { $path = 'photo.' . $size . '.' . $ext; } try { $file = $folder->getFile($path); } catch (NotFoundException $e) { if ($size <= 0) { throw new NotFoundException; } $photo = new Image(); /** @var ISimpleFile $file */ $file = $folder->getFile('photo.' . $ext); $photo->loadFromData($file->getContent()); $ratio = $photo->width() / $photo->height(); if ($ratio < 1) { $ratio = 1 / $ratio; } $size = (int)($size * $ratio); if ($size !== -1) { $photo->resize($size); } try { $file = $folder->newFile($path); $file->putContent($photo->data()); } catch (NotPermittedException $e) { } } return $file; } /** * @throws NotFoundException * @throws NotPermittedException */ private function getFolder(int $addressBookId, string $cardUri, bool $createIfNotExists = true): ISimpleFolder { $hash = md5($addressBookId . ' ' . $cardUri); try { return $this->appData->getFolder($hash); } catch (NotFoundException $e) { if ($createIfNotExists) { return $this->appData->newFolder($hash); } else { throw $e; } } } /** * Get the extension of the avatar. If there is no avatar throw Exception * * @throws NotFoundException */ private function getExtension(ISimpleFolder $folder): string { foreach (self::ALLOWED_CONTENT_TYPES as $extension) { if ($folder->fileExists('photo.' . $extension)) { return $extension; } } throw new NotFoundException('Avatar not found'); } /** * @param Card $node * @return false|array{body: string, Content-Type: string} */ private function getPhoto(Card $node) { try { $vObject = $this->readCard($node->get()); return $this->getPhotoFromVObject($vObject); } catch (\Exception $e) { $this->logger->error('Exception during vcard photo parsing', [ 'exception' => $e ]); } return false; } /** * @return false|array{body: string, Content-Type: string} */ public function getPhotoFromVObject(Document $vObject) { try { if (!$vObject->PHOTO) { return false; } $photo = $vObject->PHOTO; $val = $photo->getValue(); // handle data URI. e.g PHOTO;VALUE=URI:data:image/jpeg;base64,/9j/4AAQSkZJRgABAQE if ($photo->getValueType() === 'URI') { $parsed = \Sabre\URI\parse($val); // only allow data:// if ($parsed['scheme'] !== 'data') { return false; } if (substr_count($parsed['path'], ';') === 1) { [$type] = explode(';', $parsed['path']); } $val = file_get_contents($val); } else { // get type if binary data $type = $this->getBinaryType($photo); } if (empty($type) || !isset(self::ALLOWED_CONTENT_TYPES[$type])) { $type = 'application/octet-stream'; } return [ 'Content-Type' => $type, 'body' => $val ]; } catch (\Exception $e) { $this->logger->error('Exception during vcard photo parsing', [ 'exception' => $e ]); } return false; } private function readCard(string $cardData): Document { return Reader::read($cardData); } /** * @param Binary $photo * @return string */ private function getBinaryType(Binary $photo) { $params = $photo->parameters(); if (isset($params['TYPE']) || isset($params['MEDIATYPE'])) { /** @var Parameter $typeParam */ $typeParam = isset($params['TYPE']) ? $params['TYPE'] : $params['MEDIATYPE']; $type = (string)$typeParam->getValue(); if (str_starts_with($type, 'image/')) { return $type; } else { return 'image/' . strtolower($type); } } return ''; } /** * @param int $addressBookId * @param string $cardUri * @throws NotPermittedException */ public function delete($addressBookId, $cardUri) { try { $folder = $this->getFolder($addressBookId, $cardUri, false); $folder->delete(); } catch (NotFoundException $e) { // that's OK, nothing to do } } }