Merge pull request #32675 from nextcloud/fix/validate-dashboard-background

pull/32797/head
Pytal 2 years ago committed by GitHub
commit 0523626b98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      apps/dashboard/lib/Service/BackgroundService.php

@ -150,6 +150,10 @@ class BackgroundService {
$userFolder = $this->rootFolder->getUserFolder($this->userId);
/** @var File $file */
$file = $userFolder->get($path);
$image = new \OCP\Image();
if ($image->loadFromFileHandle($file->fopen('r')) === false) {
throw new InvalidArgumentException('Invalid image file');
}
$this->getAppDataFolder()->newFile('background.jpg', $file->fopen('r'));
}

Loading…
Cancel
Save