mirror of
https://github.com/nextcloud/server.git
synced 2025-03-16 01:05:24 +00:00
55 lines
1.3 KiB
PHP
55 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\DAV\BackgroundJob;
|
|
|
|
use OCA\DAV\CalDAV\BirthdayService;
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
|
use OCP\BackgroundJob\QueuedJob;
|
|
use OCP\IConfig;
|
|
|
|
class GenerateBirthdayCalendarBackgroundJob extends QueuedJob {
|
|
|
|
/** @var BirthdayService */
|
|
private $birthdayService;
|
|
|
|
/** @var IConfig */
|
|
private $config;
|
|
|
|
public function __construct(ITimeFactory $time,
|
|
BirthdayService $birthdayService,
|
|
IConfig $config) {
|
|
parent::__construct($time);
|
|
|
|
$this->birthdayService = $birthdayService;
|
|
$this->config = $config;
|
|
}
|
|
|
|
public function run($argument) {
|
|
$userId = $argument['userId'];
|
|
$purgeBeforeGenerating = $argument['purgeBeforeGenerating'] ?? false;
|
|
|
|
// make sure admin didn't change his mind
|
|
$isGloballyEnabled = $this->config->getAppValue('dav', 'generateBirthdayCalendar', 'yes');
|
|
if ($isGloballyEnabled !== 'yes') {
|
|
return;
|
|
}
|
|
|
|
// did the user opt out?
|
|
$isUserEnabled = $this->config->getUserValue($userId, 'dav', 'generateBirthdayCalendar', 'yes');
|
|
if ($isUserEnabled !== 'yes') {
|
|
return;
|
|
}
|
|
|
|
if ($purgeBeforeGenerating) {
|
|
$this->birthdayService->resetForUser($userId);
|
|
}
|
|
|
|
$this->birthdayService->syncUser($userId);
|
|
}
|
|
}
|