-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathEndpointController.php
More file actions
71 lines (60 loc) · 1.8 KB
/
EndpointController.php
File metadata and controls
71 lines (60 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCA\Survey_Client\Controller;
use OCA\Survey_Client\BackgroundJobs\AdminNotification;
use OCA\Survey_Client\BackgroundJobs\MonthlyReport;
use OCA\Survey_Client\Collector;
use OCP\AppFramework\Http\DataResponse;
use OCP\AppFramework\OCSController;
use OCP\AppFramework\Services\IAppConfig;
use OCP\BackgroundJob\IJobList;
use OCP\IRequest;
use OCP\Notification\IManager;
class EndpointController extends OCSController {
public function __construct(
string $appName,
IRequest $request,
protected Collector $collector,
protected IJobList $jobList,
protected IManager $manager,
protected IAppConfig $appConfig,
) {
parent::__construct($appName, $request);
}
/**
* @return DataResponse
*/
public function enableMonthly(): DataResponse {
$this->jobList->add(MonthlyReport::class);
$this->appConfig->deleteAppValue('never_again');
$notification = $this->manager->createNotification();
$notification->setApp('survey_client');
$this->manager->markProcessed($notification);
return new DataResponse();
}
/**
* @return DataResponse
*/
public function disableMonthly(bool $never = false): DataResponse {
$this->jobList->remove(MonthlyReport::class);
if ($never) {
$this->jobList->remove(AdminNotification::class);
$this->appConfig->setAppValueBool('never_again', true);
}
$notification = $this->manager->createNotification();
$notification->setApp('survey_client');
$this->manager->markProcessed($notification);
return new DataResponse();
}
/**
* @return DataResponse
*/
public function sendReport(): DataResponse {
return $this->collector->sendReport();
}
}