Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 4
CRAP
0.00% covered (danger)
0.00%
0 / 1
DeliveryExecutionCounterService
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 4
20
0.00% covered (danger)
0.00%
0 / 1
 count
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
2
 executionStateChanged
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 executionCreated
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 refresh
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) 2018 (original work) Open Assessment Technologies SA;
19 *
20 */
21
22namespace oat\taoProctoring\model\execution\Counter;
23
24use oat\oatbox\service\ConfigurableService;
25use oat\taoDelivery\model\execution\Counter\DeliveryExecutionCounterInterface;
26use oat\taoProctoring\model\monitorCache\DeliveryMonitoringService;
27use oat\taoDelivery\models\classes\execution\event\DeliveryExecutionState;
28use oat\taoDelivery\models\classes\execution\event\DeliveryExecutionCreated;
29
30/**
31 * Class DeliveryExecutionCounterService
32 * @author Aleh Hutnikau, <hutnikau@1pt.com>
33 */
34class DeliveryExecutionCounterService extends ConfigurableService implements DeliveryExecutionCounterInterface
35{
36    /**
37     * @param $statusUri
38     * @return int
39     * @throws \oat\oatbox\service\exception\InvalidServiceManagerException
40     */
41    public function count($statusUri)
42    {
43        /** @var DeliveryMonitoringService $deliveryMonitoring */
44        $deliveryMonitoring = $this->getServiceManager()->get(DeliveryMonitoringService::SERVICE_ID);
45        return $deliveryMonitoring->count([
46            [DeliveryMonitoringService::STATUS => $statusUri],
47        ]);
48    }
49
50    /**
51     * @param DeliveryExecutionState $event
52     * @return mixed
53     */
54    public function executionStateChanged(DeliveryExecutionState $event)
55    {
56    }
57
58    /**
59     * @param DeliveryExecutionCreated $event
60     * @return mixed
61     */
62    public function executionCreated(DeliveryExecutionCreated $event)
63    {
64    }
65
66    /**
67     * @param $statusUri
68     */
69    public function refresh($statusUri)
70    {
71    }
72}