6
6
7
7
use DH \Auditor \Provider \ConfigurationInterface ;
8
8
use DH \Auditor \Provider \Doctrine \Persistence \Helper \DoctrineHelper ;
9
+ use DH \Auditor \Provider \Doctrine \Persistence \Helper \SchemaHelper ;
9
10
use DH \Auditor \Provider \Doctrine \Persistence \Schema \SchemaManager ;
10
11
use DH \Auditor \Provider \Doctrine \Service \AuditingService ;
11
12
use Symfony \Component \OptionsResolver \OptionsResolver ;
@@ -21,13 +22,14 @@ final class Configuration implements ConfigurationInterface
21
22
22
23
private string $ tableSuffix ;
23
24
24
- /**
25
- * @var array<string>
26
- */
27
- private array $ ignoredColumns = [];
25
+ private array $ ignoredColumns ;
28
26
29
27
private ?array $ entities = null ;
30
28
29
+ private array $ extraFields = [];
30
+
31
+ private array $ extraIndices = [];
32
+
31
33
private array $ storageServices = [];
32
34
33
35
private array $ auditingServices = [];
@@ -60,6 +62,20 @@ public function __construct(array $options)
60
62
}
61
63
}
62
64
65
+ if (isset ($ config ['extra_fields ' ]) && !empty ($ config ['extra_fields ' ])) {
66
+ // use field names as array keys for easier lookup
67
+ foreach ($ config ['extra_fields ' ] as $ fieldName => $ fieldOptions ) {
68
+ $ this ->extraFields [$ fieldName ] = $ fieldOptions ;
69
+ }
70
+ }
71
+
72
+ if (isset ($ config ['extra_indices ' ]) && !empty ($ config ['extra_indices ' ])) {
73
+ // use index names as array keys for easier lookup
74
+ foreach ($ config ['extra_indices ' ] as $ indexName => $ indexOptions ) {
75
+ $ this ->extraIndices [$ indexName ] = $ indexOptions ;
76
+ }
77
+ }
78
+
63
79
$ this ->storageServices = $ config ['storage_services ' ];
64
80
$ this ->auditingServices = $ config ['auditing_services ' ];
65
81
$ this ->isViewerEnabled = $ config ['viewer ' ];
@@ -191,6 +207,65 @@ public function getEntities(): array
191
207
return $ this ->entities ?? [];
192
208
}
193
209
210
+ public function getExtraFields (): array
211
+ {
212
+ return $ this ->extraFields ;
213
+ }
214
+
215
+ public function getAllFields (): array
216
+ {
217
+ return array_merge (
218
+ SchemaHelper::getAuditTableColumns (),
219
+ $ this ->extraFields
220
+ );
221
+ }
222
+
223
+ /**
224
+ * @param array<string, mixed> $extraFields
225
+ */
226
+ public function setExtraFields (array $ extraFields ): self
227
+ {
228
+ $ this ->extraFields = $ extraFields ;
229
+
230
+ return $ this ;
231
+ }
232
+
233
+ public function getExtraIndices (): array
234
+ {
235
+ return $ this ->extraIndices ;
236
+ }
237
+
238
+ public function prepareExtraIndices (string $ tablename ): array
239
+ {
240
+ $ indices = [];
241
+ foreach ($ this ->extraIndices as $ extraIndexField => $ extraIndexOptions ) {
242
+ $ indices [$ extraIndexField ] = [
243
+ 'type ' => $ extraIndexOptions ['type ' ] ?? 'index ' ,
244
+ 'name ' => sprintf ('%s_%s_idx ' , $ extraIndexOptions ['name_prefix ' ] ?? $ extraIndexField , md5 ($ tablename )),
245
+ ];
246
+ }
247
+
248
+ return $ indices ;
249
+ }
250
+
251
+ public function getAllIndices (string $ tablename ): array
252
+ {
253
+ return array_merge (
254
+ SchemaHelper::getAuditTableIndices ($ tablename ),
255
+ $ this ->prepareExtraIndices ($ tablename )
256
+ );
257
+ }
258
+
259
+ /**
260
+ * @param array<string, mixed> $extraIndices
261
+ */
262
+ public function setExtraIndices (array $ extraIndices ): self
263
+ {
264
+ $ this ->extraIndices = $ extraIndices ;
265
+
266
+ return $ this ;
267
+ }
268
+
194
269
/**
195
270
* Enables auditing for a specific entity.
196
271
*
@@ -258,6 +333,8 @@ private function configureOptions(OptionsResolver $resolver): void
258
333
'table_suffix ' => '_audit ' ,
259
334
'ignored_columns ' => [],
260
335
'entities ' => [],
336
+ 'extra_fields ' => [],
337
+ 'extra_indices ' => [],
261
338
'storage_services ' => [],
262
339
'auditing_services ' => [],
263
340
'viewer ' => true ,
@@ -267,6 +344,8 @@ private function configureOptions(OptionsResolver $resolver): void
267
344
->setAllowedTypes ('table_suffix ' , 'string ' )
268
345
->setAllowedTypes ('ignored_columns ' , 'array ' )
269
346
->setAllowedTypes ('entities ' , 'array ' )
347
+ ->setAllowedTypes ('extra_fields ' , 'array ' )
348
+ ->setAllowedTypes ('extra_indices ' , 'array ' )
270
349
->setAllowedTypes ('storage_services ' , 'array ' )
271
350
->setAllowedTypes ('auditing_services ' , 'array ' )
272
351
->setAllowedTypes ('viewer ' , 'bool ' )
0 commit comments