2020-08-12 11:02:33 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2020 Julius Härtl <jus@bitgrid.net>
|
|
|
|
*
|
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
|
|
namespace OCA\Dashboard\Service;
|
|
|
|
|
2020-11-18 11:03:56 +03:00
|
|
|
use InvalidArgumentException;
|
|
|
|
use OC\User\NoUserException;
|
|
|
|
use OCP\Files\File;
|
2020-08-12 11:02:33 +03:00
|
|
|
use OCP\Files\IAppData;
|
|
|
|
use OCP\Files\IRootFolder;
|
|
|
|
use OCP\Files\NotFoundException;
|
2020-11-18 11:03:56 +03:00
|
|
|
use OCP\Files\NotPermittedException;
|
2020-08-12 11:02:33 +03:00
|
|
|
use OCP\Files\SimpleFS\ISimpleFile;
|
2020-11-18 11:03:56 +03:00
|
|
|
use OCP\Files\SimpleFS\ISimpleFolder;
|
2020-08-14 17:22:22 +03:00
|
|
|
use OCP\IConfig;
|
2020-11-18 11:03:56 +03:00
|
|
|
use OCP\Lock\LockedException;
|
|
|
|
use OCP\PreConditionNotMetException;
|
2020-08-12 11:02:33 +03:00
|
|
|
|
|
|
|
class BackgroundService {
|
2020-08-18 21:31:03 +03:00
|
|
|
public const THEMING_MODE_DARK = 'dark';
|
2020-08-17 22:38:33 +03:00
|
|
|
|
2020-08-18 21:31:03 +03:00
|
|
|
public const SHIPPED_BACKGROUNDS = [
|
2020-08-17 22:38:33 +03:00
|
|
|
'anatoly-mikhaltsov-butterfly-wing-scale.jpg' => [
|
2020-08-19 14:45:57 +03:00
|
|
|
'attribution' => 'Butterfly wing scale (Anatoly Mikhaltsov, CC BY-SA)',
|
|
|
|
'attribution_url' => 'https://commons.wikimedia.org/wiki/File:%D0%A7%D0%B5%D1%88%D1%83%D0%B9%D0%BA%D0%B8_%D0%BA%D1%80%D1%8B%D0%BB%D0%B0_%D0%B1%D0%B0%D0%B1%D0%BE%D1%87%D0%BA%D0%B8.jpg',
|
2020-08-17 22:38:33 +03:00
|
|
|
],
|
|
|
|
'bernie-cetonia-aurata-take-off-composition.jpg' => [
|
2020-08-19 14:45:57 +03:00
|
|
|
'attribution' => 'Cetonia aurata take off composition (Bernie, Public Domain)',
|
|
|
|
'attribution_url' => 'https://commons.wikimedia.org/wiki/File:Cetonia_aurata_take_off_composition_05172009.jpg',
|
2020-08-18 15:11:02 +03:00
|
|
|
'theming' => self::THEMING_MODE_DARK,
|
2020-08-17 22:38:33 +03:00
|
|
|
],
|
|
|
|
'dejan-krsmanovic-ribbed-red-metal.jpg' => [
|
2020-08-19 14:45:57 +03:00
|
|
|
'attribution' => 'Ribbed red metal (Dejan Krsmanovic, CC BY)',
|
|
|
|
'attribution_url' => 'https://www.flickr.com/photos/dejankrsmanovic/42971456774/',
|
2020-08-17 22:38:33 +03:00
|
|
|
],
|
|
|
|
'eduardo-neves-pedra-azul.jpg' => [
|
2020-08-19 14:45:57 +03:00
|
|
|
'attribution' => 'Pedra azul milky way (Eduardo Neves, CC BY-SA)',
|
|
|
|
'attribution_url' => 'https://commons.wikimedia.org/wiki/File:Pedra_Azul_Milky_Way.jpg',
|
2020-08-17 22:38:33 +03:00
|
|
|
],
|
|
|
|
'european-space-agency-barents-bloom.jpg' => [
|
2020-08-19 14:45:57 +03:00
|
|
|
'attribution' => 'Barents bloom (European Space Agency, CC BY-SA)',
|
|
|
|
'attribution_url' => 'https://www.esa.int/ESA_Multimedia/Images/2016/08/Barents_bloom',
|
2020-08-17 22:38:33 +03:00
|
|
|
],
|
|
|
|
'hannes-fritz-flippity-floppity.jpg' => [
|
2020-08-19 14:45:57 +03:00
|
|
|
'attribution' => 'Flippity floppity (Hannes Fritz, CC BY-SA)',
|
|
|
|
'attribution_url' => 'http://hannes.photos/flippity-floppity',
|
2020-08-17 22:38:33 +03:00
|
|
|
],
|
|
|
|
'hannes-fritz-roulette.jpg' => [
|
2020-08-19 14:45:57 +03:00
|
|
|
'attribution' => 'Roulette (Hannes Fritz, CC BY-SA)',
|
|
|
|
'attribution_url' => 'http://hannes.photos/roulette',
|
2020-08-17 22:38:33 +03:00
|
|
|
],
|
|
|
|
'hannes-fritz-sea-spray.jpg' => [
|
2020-08-19 14:45:57 +03:00
|
|
|
'attribution' => 'Sea spray (Hannes Fritz, CC BY-SA)',
|
|
|
|
'attribution_url' => 'http://hannes.photos/sea-spray',
|
2020-08-17 22:38:33 +03:00
|
|
|
],
|
|
|
|
'kamil-porembinski-clouds.jpg' => [
|
2020-08-19 14:45:57 +03:00
|
|
|
'attribution' => 'Clouds (Kamil Porembiński, CC BY-SA)',
|
|
|
|
'attribution_url' => 'https://www.flickr.com/photos/paszczak000/8715851521/',
|
|
|
|
],
|
|
|
|
'bernard-spragg-new-zealand-fern.jpg' => [
|
|
|
|
'attribution' => 'New zealand fern (Bernard Spragg, CC0)',
|
|
|
|
'attribution_url' => 'https://commons.wikimedia.org/wiki/File:NZ_Fern.(Blechnum_chambersii)_(11263534936).jpg',
|
|
|
|
],
|
|
|
|
'rawpixel-pink-tapioca-bubbles.jpg' => [
|
|
|
|
'attribution' => 'Pink tapioca bubbles (Rawpixel, CC BY)',
|
|
|
|
'attribution_url' => 'https://www.flickr.com/photos/byrawpixel/27665140298/in/photostream/',
|
|
|
|
'theming' => self::THEMING_MODE_DARK,
|
|
|
|
],
|
|
|
|
'nasa-waxing-crescent-moon.jpg' => [
|
|
|
|
'attribution' => 'Waxing crescent moon (NASA, Public Domain)',
|
|
|
|
'attribution_url' => 'https://www.nasa.gov/image-feature/a-waxing-crescent-moon',
|
|
|
|
],
|
|
|
|
'tommy-chau-already.jpg' => [
|
|
|
|
'attribution' => 'Cityscape (Tommy Chau, CC BY)',
|
|
|
|
'attribution_url' => 'https://www.flickr.com/photos/90975693@N05/16910999368',
|
|
|
|
],
|
|
|
|
'tommy-chau-lion-rock-hill.jpg' => [
|
|
|
|
'attribution' => 'Lion rock hill (Tommy Chau, CC BY)',
|
|
|
|
'attribution_url' => 'https://www.flickr.com/photos/90975693@N05/17136440246',
|
|
|
|
'theming' => self::THEMING_MODE_DARK,
|
|
|
|
],
|
|
|
|
'lali-masriera-yellow-bricks.jpg' => [
|
|
|
|
'attribution' => 'Yellow bricks (Lali Masriera, CC BY)',
|
|
|
|
'attribution_url' => 'https://www.flickr.com/photos/visualpanic/3982464447',
|
|
|
|
'theming' => self::THEMING_MODE_DARK,
|
2020-08-17 22:38:33 +03:00
|
|
|
]
|
2020-08-12 11:02:33 +03:00
|
|
|
];
|
2020-08-18 21:40:19 +03:00
|
|
|
/**
|
2020-11-18 11:03:56 +03:00
|
|
|
* @var IRootFolder
|
2020-08-18 21:40:19 +03:00
|
|
|
*/
|
2020-11-18 11:03:56 +03:00
|
|
|
private $rootFolder;
|
2020-08-18 21:40:19 +03:00
|
|
|
/**
|
2020-11-18 11:03:56 +03:00
|
|
|
* @var IAppData
|
2020-08-18 21:40:19 +03:00
|
|
|
*/
|
2020-11-18 11:03:56 +03:00
|
|
|
private $appData;
|
2020-08-18 21:40:19 +03:00
|
|
|
/**
|
|
|
|
* @var IConfig
|
|
|
|
*/
|
|
|
|
private $config;
|
|
|
|
private $userId;
|
2020-08-12 11:02:33 +03:00
|
|
|
|
2020-08-14 17:22:22 +03:00
|
|
|
public function __construct(IRootFolder $rootFolder, IAppData $appData, IConfig $config, $userId) {
|
2020-08-14 16:25:55 +03:00
|
|
|
if ($userId === null) {
|
|
|
|
return;
|
|
|
|
}
|
2020-11-18 11:03:56 +03:00
|
|
|
$this->rootFolder = $rootFolder;
|
|
|
|
$this->appData = $appData;
|
2020-08-14 17:22:22 +03:00
|
|
|
$this->config = $config;
|
|
|
|
$this->userId = $userId;
|
|
|
|
}
|
|
|
|
|
2020-08-18 21:40:19 +03:00
|
|
|
public function setDefaultBackground(): void {
|
2020-08-14 17:22:22 +03:00
|
|
|
$this->config->deleteUserValue($this->userId, 'dashboard', 'background');
|
2020-08-12 11:02:33 +03:00
|
|
|
}
|
|
|
|
|
2020-08-18 21:40:19 +03:00
|
|
|
/**
|
|
|
|
* @param $path
|
|
|
|
* @throws NotFoundException
|
2020-11-18 11:03:56 +03:00
|
|
|
* @throws NotPermittedException
|
|
|
|
* @throws LockedException
|
|
|
|
* @throws PreConditionNotMetException
|
|
|
|
* @throws NoUserException
|
2020-08-18 21:40:19 +03:00
|
|
|
*/
|
|
|
|
public function setFileBackground($path): void {
|
2020-08-14 17:22:22 +03:00
|
|
|
$this->config->setUserValue($this->userId, 'dashboard', 'background', 'custom');
|
2020-11-18 11:03:56 +03:00
|
|
|
$userFolder = $this->rootFolder->getUserFolder($this->userId);
|
|
|
|
/** @var File $file */
|
|
|
|
$file = $userFolder->get($path);
|
|
|
|
$this->getAppDataFolder()->newFile('background.jpg', $file->fopen('r'));
|
2020-08-12 11:02:33 +03:00
|
|
|
}
|
|
|
|
|
2020-08-18 21:40:19 +03:00
|
|
|
public function setShippedBackground($fileName): void {
|
2020-08-18 12:57:01 +03:00
|
|
|
if (!array_key_exists($fileName, self::SHIPPED_BACKGROUNDS)) {
|
2020-11-18 11:03:56 +03:00
|
|
|
throw new InvalidArgumentException('The given file name is invalid');
|
2020-08-17 22:29:29 +03:00
|
|
|
}
|
2020-08-14 17:22:22 +03:00
|
|
|
$this->config->setUserValue($this->userId, 'dashboard', 'background', $fileName);
|
|
|
|
}
|
|
|
|
|
2020-08-18 21:40:19 +03:00
|
|
|
public function setColorBackground(string $color): void {
|
2020-11-18 11:03:56 +03:00
|
|
|
if (!preg_match('/^#([0-9a-f]{3}|[0-9a-f]{6})$/i', $color)) {
|
|
|
|
throw new InvalidArgumentException('The given color is invalid');
|
2020-08-12 11:02:33 +03:00
|
|
|
}
|
2020-08-17 22:29:29 +03:00
|
|
|
$this->config->setUserValue($this->userId, 'dashboard', 'background', $color);
|
2020-08-12 11:02:33 +03:00
|
|
|
}
|
|
|
|
|
2020-08-18 21:40:19 +03:00
|
|
|
public function getBackground(): ?ISimpleFile {
|
2020-08-14 17:22:22 +03:00
|
|
|
$background = $this->config->getUserValue($this->userId, 'dashboard', 'background', 'default');
|
|
|
|
if ($background === 'custom') {
|
|
|
|
try {
|
2020-11-18 11:03:56 +03:00
|
|
|
return $this->getAppDataFolder()->getFile('background.jpg');
|
|
|
|
} catch (NotFoundException | NotPermittedException $e) {
|
2020-08-14 17:22:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
2020-08-12 11:02:33 +03:00
|
|
|
}
|
2020-11-18 11:03:56 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return ISimpleFolder
|
|
|
|
* @throws NotPermittedException
|
|
|
|
*/
|
|
|
|
private function getAppDataFolder(): ISimpleFolder {
|
|
|
|
try {
|
|
|
|
return $this->appData->getFolder($this->userId);
|
|
|
|
} catch (NotFoundException $e) {
|
|
|
|
return $this->appData->newFolder($this->userId);
|
|
|
|
}
|
|
|
|
}
|
2020-08-12 11:02:33 +03:00
|
|
|
}
|