Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 38 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
NewSqlWebhookLogRepository | |
0.00% |
0 / 38 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 1 |
storeLog | |
0.00% |
0 / 18 |
|
0.00% |
0 / 1 |
2 | |||
provideSchema | |
0.00% |
0 / 20 |
|
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) 2020 (original work) Open Assessment Technologies SA; |
19 | */ |
20 | |
21 | namespace oat\tao\model\webhooks\log; |
22 | |
23 | use Doctrine\DBAL\Types\Types; |
24 | use oat\generis\Helper\UuidPrimaryKeyTrait; |
25 | use oat\generis\persistence\sql\SchemaCollection; |
26 | use oat\tao\model\metadata\exception\InconsistencyConfigException; |
27 | |
28 | class NewSqlWebhookLogRepository extends AbstractWebhookLogRepository |
29 | { |
30 | use UuidPrimaryKeyTrait; |
31 | |
32 | /** |
33 | * @throws InconsistencyConfigException |
34 | */ |
35 | public function storeLog(WebhookEventLogRecord $webhookEventLog): void |
36 | { |
37 | $this->getPersistence()->insert( |
38 | self::TABLE_NAME, |
39 | [ |
40 | self::COLUMN_ID => $this->getUniquePrimaryKey(), |
41 | self::COLUMN_EVENT_ID => $webhookEventLog->getEventId(), |
42 | self::COLUMN_TASK_ID => $webhookEventLog->getTaskId(), |
43 | self::COLUMN_WEBHOOK_ID => $webhookEventLog->getWebhookId(), |
44 | self::COLUMN_HTTP_METHOD => $webhookEventLog->getHttpMethod(), |
45 | self::COLUMN_ENDPOINT_URL => $webhookEventLog->getEndpointUrl(), |
46 | self::COLUMN_EVENT_NAME => $webhookEventLog->getEventName(), |
47 | self::COLUMN_HTTP_STATUS_CODE => $webhookEventLog->getHttpStatusCode(), |
48 | self::COLUMN_RESPONSE_BODY => $webhookEventLog->getResponseBody(), |
49 | self::COLUMN_ACKNOWLEDGEMENT_STATUS => $webhookEventLog->getAcknowledgementStatus(), |
50 | self::COLUMN_CREATED_AT => $webhookEventLog->getCreatedAt(), |
51 | self::COLUMN_RESULT => $webhookEventLog->getResult(), |
52 | self::COLUMN_RESULT_MESSAGE => $webhookEventLog->getResultMessage(), |
53 | ] |
54 | ); |
55 | } |
56 | |
57 | public function provideSchema(SchemaCollection $schemaCollection) |
58 | { |
59 | $schema = $schemaCollection->getSchema($this->getOption(self::OPTION_PERSISTENCE)); |
60 | |
61 | $logTable = $schema->createTable(self::TABLE_NAME); |
62 | $logTable->addOption('engine', 'InnoDB'); |
63 | |
64 | $logTable->addColumn(self::COLUMN_ID, Types::STRING, ['notnull' => true, 'length' => 36]); |
65 | $logTable->addColumn(self::COLUMN_EVENT_ID, Types::STRING, ['notnull' => false, 'length' => 255]); |
66 | $logTable->addColumn(self::COLUMN_TASK_ID, Types::STRING, ['notnull' => false, 'length' => 255]); |
67 | $logTable->addColumn(self::COLUMN_WEBHOOK_ID, Types::STRING, ['notnull' => false, 'length' => 255]); |
68 | $logTable->addColumn(self::COLUMN_HTTP_METHOD, Types::STRING, ['notnull' => false, 'length' => 255]); |
69 | $logTable->addColumn(self::COLUMN_ENDPOINT_URL, Types::STRING, ['notnull' => false, 'length' => 255]); |
70 | $logTable->addColumn(self::COLUMN_EVENT_NAME, Types::STRING, ['notnull' => false, 'length' => 255]); |
71 | $logTable->addColumn(self::COLUMN_HTTP_STATUS_CODE, Types::SMALLINT, ['notnull' => false]); |
72 | $logTable->addColumn(self::COLUMN_RESPONSE_BODY, Types::TEXT, ['notnull' => false]); |
73 | $logTable->addColumn(self::COLUMN_ACKNOWLEDGEMENT_STATUS, Types::STRING, ['notnull' => false, 'length' => 255]); |
74 | $logTable->addColumn(self::COLUMN_CREATED_AT, Types::INTEGER, ['notnull' => true]); |
75 | $logTable->addColumn(self::COLUMN_RESULT, Types::STRING, ['notnull' => true, 'length' => 255]); |
76 | $logTable->addColumn(self::COLUMN_RESULT_MESSAGE, Types::TEXT, ['notnull' => false]); |
77 | |
78 | $logTable->setPrimaryKey([self::COLUMN_ID]); |
79 | |
80 | $logTable->addIndex([self::COLUMN_EVENT_ID], 'IDX_' . self::TABLE_NAME . '_event_id'); |
81 | |
82 | $logTable->addIndex([self::COLUMN_WEBHOOK_ID], 'IDX_' . self::TABLE_NAME . '_webhook_id'); |
83 | |
84 | $logTable->addIndex([self::COLUMN_CREATED_AT], 'IDX_' . self::TABLE_NAME . '_created_at'); |
85 | } |
86 | } |