mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
File reference: use the file type icon as fallback when no preview provider for this type
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
This commit is contained in:
parent
4a31d56c7a
commit
3c86afcce4
1 changed files with 14 additions and 2 deletions
|
|
@ -28,6 +28,7 @@ use OC\User\NoUserException;
|
|||
use OCP\Collaboration\Reference\IReference;
|
||||
use OCP\Collaboration\Reference\IReferenceProvider;
|
||||
use OCP\Collaboration\Reference\Reference;
|
||||
use OCP\Files\IMimeTypeDetector;
|
||||
use OCP\Files\InvalidPathException;
|
||||
use OCP\Files\IRootFolder;
|
||||
use OCP\Files\Node;
|
||||
|
|
@ -42,12 +43,18 @@ class FileReferenceProvider implements IReferenceProvider {
|
|||
private IRootFolder $rootFolder;
|
||||
private ?string $userId;
|
||||
private IPreview $previewManager;
|
||||
private IMimeTypeDetector $mimeTypeDetector;
|
||||
|
||||
public function __construct(IURLGenerator $urlGenerator, IRootFolder $rootFolder, IUserSession $userSession, IPreview $previewManager) {
|
||||
public function __construct(IURLGenerator $urlGenerator,
|
||||
IRootFolder $rootFolder,
|
||||
IUserSession $userSession,
|
||||
IMimeTypeDetector $mimeTypeDetector,
|
||||
IPreview $previewManager) {
|
||||
$this->urlGenerator = $urlGenerator;
|
||||
$this->rootFolder = $rootFolder;
|
||||
$this->userId = $userSession->getUser() ? $userSession->getUser()->getUID() : null;
|
||||
$this->previewManager = $previewManager;
|
||||
$this->mimeTypeDetector = $mimeTypeDetector;
|
||||
}
|
||||
|
||||
public function matchReference(string $referenceText): bool {
|
||||
|
|
@ -127,7 +134,12 @@ class FileReferenceProvider implements IReferenceProvider {
|
|||
$reference->setTitle($file->getName());
|
||||
$reference->setDescription($file->getMimetype());
|
||||
$reference->setUrl($this->urlGenerator->getAbsoluteURL('/index.php/f/' . $fileId));
|
||||
$reference->setImageUrl($this->urlGenerator->linkToRouteAbsolute('core.Preview.getPreviewByFileId', ['x' => 1600, 'y' => 630, 'fileId' => $fileId]));
|
||||
if ($this->previewManager->isMimeSupported($file->getMimeType())) {
|
||||
$reference->setImageUrl($this->urlGenerator->linkToRouteAbsolute('core.Preview.getPreviewByFileId', ['x' => 1600, 'y' => 630, 'fileId' => $fileId]));
|
||||
} else {
|
||||
$fileTypeIconUrl = $this->mimeTypeDetector->mimeTypeIcon($file->getMimeType());
|
||||
$reference->setImageUrl($fileTypeIconUrl);
|
||||
}
|
||||
|
||||
$reference->setRichObject('file', [
|
||||
'id' => $file->getId(),
|
||||
|
|
|
|||
Loading…
Reference in a new issue