Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 10
0.00% covered (danger)
0.00%
0 / 6
CRAP
0.00% covered (danger)
0.00%
0 / 1
WebhookRdfRegistry
0.00% covered (danger)
0.00%
0 / 10
0.00% covered (danger)
0.00%
0 / 6
42
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getWebhookConfig
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getWebhookConfigIds
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
2
 addWebhook
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 getWebhooks
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getClassService
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2023 (original work) Open Assessment Technologies SA;
19 */
20
21declare(strict_types=1);
22
23namespace oat\tao\model\webhooks;
24
25use common_Exception;
26use common_exception_Error;
27use common_exception_InvalidArgumentType;
28use core_kernel_classes_Resource;
29use core_kernel_persistence_Exception;
30use oat\tao\model\webhooks\configEntity\WebhookInterface;
31
32class WebhookRdfRegistry implements WebhookRegistryInterface
33{
34    private WebHookClassService $webHookClassService;
35
36    public function __construct(WebHookClassService $webHookClassService)
37    {
38        $this->webHookClassService = $webHookClassService;
39    }
40
41    /**
42     * @throws core_kernel_persistence_Exception
43     * @throws common_Exception
44     */
45    public function getWebhookConfig($id): ?WebhookInterface
46    {
47        return $this->getClassService()->getWebhookByUri($id);
48    }
49
50    public function getWebhookConfigIds($eventName): array
51    {
52        $webHooks = $this->getClassService()->findWebhookByEventClass($eventName);
53
54        return array_map(static function (core_kernel_classes_Resource $webHook) {
55            return $webHook->getUri();
56        }, $webHooks);
57    }
58
59    /**
60     * @throws common_exception_Error
61     * @throws common_Exception
62     */
63    public function addWebhook(WebhookInterface $webhook, array $events = []): void
64    {
65        $this->getClassService()->saveWebhook($webhook, $events);
66    }
67
68    /**
69     * @throws core_kernel_persistence_Exception
70     * @throws common_exception_InvalidArgumentType
71     * @throws common_Exception
72     */
73    public function getWebhooks(): array
74    {
75        return $this->getClassService()->getWebhooks();
76    }
77
78    private function getClassService(): WebHookClassService
79    {
80        return $this->webHookClassService;
81    }
82}