82 lines
1.6 KiB
PHP
82 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileContributor: Carl Schwan
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OC\Preview\Storage;
|
|
|
|
use OC\Preview\Db\Preview;
|
|
use OC\Preview\Db\PreviewMapper;
|
|
use OCP\Files\SimpleFS\ISimpleFile;
|
|
use Override;
|
|
|
|
class PreviewFile implements ISimpleFile {
|
|
public function __construct(
|
|
private readonly Preview $preview,
|
|
private readonly IPreviewStorage $storage,
|
|
private readonly PreviewMapper $previewMapper,
|
|
) {
|
|
}
|
|
|
|
#[Override]
|
|
public function getName(): string {
|
|
return $this->preview->getName();
|
|
}
|
|
|
|
#[Override]
|
|
public function getSize(): int|float {
|
|
return $this->preview->getSize();
|
|
}
|
|
|
|
#[Override]
|
|
public function getETag(): string {
|
|
return $this->preview->getEtag();
|
|
}
|
|
|
|
#[Override]
|
|
public function getMTime(): int {
|
|
return $this->preview->getMtime();
|
|
}
|
|
|
|
#[Override]
|
|
public function getContent(): string {
|
|
$stream = $this->storage->readPreview($this->preview);
|
|
return stream_get_contents($stream);
|
|
}
|
|
|
|
#[Override]
|
|
public function putContent($data): void {
|
|
}
|
|
|
|
#[Override]
|
|
public function delete(): void {
|
|
$this->storage->deletePreview($this->preview);
|
|
$this->previewMapper->delete($this->preview);
|
|
}
|
|
|
|
#[Override]
|
|
public function getMimeType(): string {
|
|
return $this->preview->getMimetype();
|
|
}
|
|
|
|
#[Override]
|
|
public function getExtension(): string {
|
|
return $this->preview->getExtension();
|
|
}
|
|
|
|
#[Override]
|
|
public function read() {
|
|
return $this->storage->readPreview($this->preview);
|
|
}
|
|
|
|
#[Override]
|
|
public function write() {
|
|
return false;
|
|
}
|
|
}
|