Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 7 |
|
0.00% |
0 / 4 |
CRAP | |
0.00% |
0 / 1 |
AbstractLog | |
0.00% |
0 / 7 |
|
0.00% |
0 / 4 |
20 | |
0.00% |
0 / 1 |
log | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | |||||
search | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
delete | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
count | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
getStorage | |
0.00% |
0 / 2 |
|
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) 2017 (original work) Open Assessment Technologies SA; |
19 | * |
20 | */ |
21 | |
22 | namespace oat\taoEventLog\model; |
23 | |
24 | use oat\oatbox\event\Event; |
25 | use oat\oatbox\service\ConfigurableService; |
26 | |
27 | /** |
28 | * Class AbstractLog |
29 | * @package oat\taoEventLog\model |
30 | * @author Aleh Hutnikau, <hutnikau@1pt.com> |
31 | */ |
32 | abstract class AbstractLog extends ConfigurableService |
33 | { |
34 | public const OPTION_STORAGE = 'storage'; |
35 | |
36 | /** |
37 | * @param Event $event |
38 | */ |
39 | abstract public function log(Event $event); |
40 | |
41 | /** |
42 | * @param array $filters |
43 | * @param array $options |
44 | * @return array |
45 | */ |
46 | public function search(array $filters = [], array $options = []) |
47 | { |
48 | return $this->getStorage()->search($filters, $options); |
49 | } |
50 | |
51 | public function delete(array $filters) |
52 | { |
53 | return $this->getStorage()->delete($filters); |
54 | } |
55 | |
56 | /** |
57 | * Count records in log which are meet the search criteria |
58 | * @param array $filters |
59 | * @param array $options |
60 | * @return integer |
61 | */ |
62 | public function count(array $filters = [], array $options = []) |
63 | { |
64 | return $this->getStorage()->count($filters, $options); |
65 | } |
66 | |
67 | /** |
68 | * @return StorageInterface |
69 | */ |
70 | protected function getStorage() |
71 | { |
72 | $storage = $this->getOption(self::OPTION_STORAGE); |
73 | return $storage; |
74 | } |
75 | } |