-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMapper.php
More file actions
executable file
·1168 lines (1050 loc) · 29.9 KB
/
Mapper.php
File metadata and controls
executable file
·1168 lines (1050 loc) · 29.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
namespace Bdf\Prime\Mapper;
use Bdf\Prime\Behaviors\BehaviorInterface;
use Bdf\Prime\Cache\CacheInterface;
use Bdf\Prime\Entity\Criteria;
use Bdf\Prime\Entity\Hydrator\MapperHydrator;
use Bdf\Prime\Entity\Hydrator\MapperHydratorInterface;
use Bdf\Prime\Entity\ImportableInterface;
use Bdf\Prime\Exception\PrimeException;
use Bdf\Prime\IdGenerators\AutoIncrementGenerator;
use Bdf\Prime\IdGenerators\GeneratorInterface;
use Bdf\Prime\IdGenerators\NullGenerator;
use Bdf\Prime\IdGenerators\TableGenerator;
use Bdf\Prime\Mapper\Attribute\Filter;
use Bdf\Prime\Mapper\Attribute\MapperConfigurationInterface;
use Bdf\Prime\Mapper\Attribute\RepositoryMethod;
use Bdf\Prime\Mapper\Attribute\Scope;
use Bdf\Prime\Mapper\Builder\FieldBuilder;
use Bdf\Prime\Mapper\Builder\IndexBuilder;
use Bdf\Prime\Mapper\Info\MapperInfo;
use Bdf\Prime\Platform\PlatformInterface;
use Bdf\Prime\Relations\Builder\RelationBuilder;
use Bdf\Prime\Relations\Exceptions\RelationNotFoundException;
use Bdf\Prime\Repository\EntityRepository;
use Bdf\Prime\Repository\RepositoryEventsSubscriberInterface;
use Bdf\Prime\Repository\RepositoryInterface;
use Bdf\Prime\ServiceLocator;
use Bdf\Serializer\PropertyAccessor\PropertyAccessorInterface;
use Bdf\Serializer\PropertyAccessor\ReflectionAccessor;
use Closure;
use LogicException;
use ReflectionAttribute;
use ReflectionObject;
use stdClass;
use function class_exists;
use function is_string;
use function method_exists;
/**
* Mapper
*
* Contient les méta données de la table.
*
* @todo Convertir la donnée avec le type approprié sur les methodes setId, hydrateOne
*
* @template E as object
*
* @psalm-import-type FieldDefinition from FieldBuilder
* @psalm-import-type RelationDefinition from RelationBuilder
*/
abstract class Mapper
{
/**
* Enable/Disable query result cache on repository
* If null global cache will be set.
* Set it to false to deactivate cache on this repository
* Set the cache instance in configure method
*
* @var false|CacheInterface
*/
protected $resultCache;
/**
* @var Metadata|null
*/
private ?Metadata $metadata;
/**
* Id generator
*
* Could be defined as string (generator class name). It would be instantiated
* by mapper on generator() method
*
* @var GeneratorInterface|class-string<GeneratorInterface>|null
*/
protected $generator;
/**
* @var class-string
*/
private string $repositoryClass = EntityRepository::class;
/**
* The real name of entity class. Could be an none existing class
*
* @var class-string<E>
*/
private string $entityClass;
/**
* The property accessor class name to use by default
*
* @var class-string<PropertyAccessorInterface>
*/
private string $propertyAccessorClass = ReflectionAccessor::class;
/**
* Class of the criteria to use
* If null, the class will be resolved from the entity class with the suffix "Criteria" if exists
*
* @var class-string<Criteria>|null
*/
private ?string $criteriaClass = null;
/**
* Set repository read only.
*
* @var bool
*/
private bool $readOnly = false;
/**
* Use schema resolver
* Disable if schema has not to be manage by this app
*
* @var bool
*/
private bool $useSchemaManager = true;
/**
* Use quote identifier
* Allows query builder to use quote identifier
*
* @var bool
*/
private bool $useQuoteIdentifier = false;
/**
* Allow usage of unknown attribute
*
* If true, query with undeclared attributes on criteria will not throw an exception , and use it as is
* This is useful for example for the select compilation, where the attribute can be a DBAL expression,
* but can produce security issue if input is not properly checked
*
* For compatibility reason, this value is null by default, which will raise a deprecated notice, and enable the feature.
* In next major version, this value will be false by default, and should be manually enabled on Mapper.
*
* @var bool|null
*/
private ?bool $allowUnknownAttribute = null;
/**
* The relation builder
*
* @var RelationBuilder
*/
private ?RelationBuilder $relationBuilder = null;
/**
* The collection of behaviors
*
* @var BehaviorInterface<E>[]
*/
private ?array $behaviors = null;
/**
* The service locator
*
* @var ServiceLocator
*/
protected ServiceLocator $serviceLocator;
/**
* @var MapperHydratorInterface<E>|null
*/
protected ?MapperHydratorInterface $hydrator;
/**
* @var array<string, callable>|null
*/
private ?array $scopes = null;
/**
* @var array<string, callable>|null
*/
private ?array $filters = null;
/**
* @var array<string, callable(\Bdf\Prime\Repository\RepositoryInterface<E>,mixed...):mixed>|null
*/
private ?array $queries = null;
/**
* Mapper constructor
*
* @param ServiceLocator $serviceLocator
* @param class-string<E>|null $entityClass
* @param Metadata|null $metadata
* @param MapperHydratorInterface<E>|null $hydrator
* @param CacheInterface|null $resultCache
*/
public function __construct(ServiceLocator $serviceLocator, ?string $entityClass = null, ?Metadata $metadata = null, ?MapperHydratorInterface $hydrator = null, ?CacheInterface $resultCache = null)
{
$this->entityClass = $entityClass ?? stdClass::class;
$this->metadata = $metadata;
$this->serviceLocator = $serviceLocator;
$this->resultCache = $resultCache;
$this->hydrator = $hydrator;
}
/**
* Custom configuration
*/
public function configure(): void
{
// to overwrite
}
/**
* Get entity class
*
* @return class-string<E>
* @final
*/
public function getEntityClass(): string
{
return $this->entityClass;
}
/**
* Get metadata
*
* @return Metadata
* @final
*
* @psalm-suppress InvalidNullableReturnType
* @psalm-suppress NullableReturnStatement
*/
public function metadata(): Metadata
{
return $this->metadata;
}
/**
* Set property accessor class name
*
* @param class-string<PropertyAccessorInterface> $className
* @final
*/
public function setPropertyAccessorClass(string $className): void
{
$this->propertyAccessorClass = $className;
}
/**
* Get property accessor class name
*
* @return class-string<PropertyAccessorInterface>
* @final
*/
public function getPropertyAccessorClass(): string
{
return $this->propertyAccessorClass;
}
/**
* Set repository class name
*
* @param class-string $className
* @final
*/
public function setRepositoryClass(string $className): void
{
$this->repositoryClass = $className;
}
/**
* Get repository class name
*
* @return class-string
* @final
*/
public function getRepositoryClass(): string
{
return $this->repositoryClass;
}
/**
* Set the repository read only
*
* @param bool $flag
* @final
*/
public function setReadOnly(bool $flag): void
{
$this->readOnly = $flag;
}
/**
* Get repository read only state
*
* @return bool
* @final
*/
public function isReadOnly(): bool
{
return $this->readOnly;
}
/**
* Disable schema manager on repository
* @final
*/
public function disableSchemaManager(): void
{
$this->useSchemaManager = false;
}
/**
* Does repository have a schema manager
*
* @return bool
* @final
*/
public function hasSchemaManager(): bool
{
return $this->useSchemaManager;
}
/**
* Set the query builder quote identifier
*
* @param bool $flag
* @final
*/
public function setQuoteIdentifier(bool $flag): void
{
$this->useQuoteIdentifier = $flag;
}
/**
* Does query builder use quote identifier
*
* @return bool
* @final
*/
public function hasQuoteIdentifier(): bool
{
return $this->useQuoteIdentifier;
}
/**
* Allow usage of unknown attribute
*
* If true, query with undeclared attributes on criteria will not throw an exception , and use it as is
* This is useful for example for the select compilation, where the attribute can be a DBAL expression,
* but can produce security issue if input is not properly checked
*
* For compatibility reason, this value is null by default, which will raise a deprecated notice, and enable the feature.
* In next major version, this value will be false by default, and should be manually enabled on Mapper.
*
* @return bool|null
*/
final public function allowUnknownAttribute(): ?bool
{
return $this->allowUnknownAttribute;
}
/**
* Allow or not usage of unknown attribute on query
*
* If true, query with undeclared attributes on criteria will not throw an exception , and use it as is
* This is useful for example for the select compilation, where the attribute can be a DBAL expression,
* but can produce security issue if input is not properly checked
*
* By default, this value is null, which will raise a deprecated notice, and enable the feature.
* In next major version, this value will be false by default, and should be manually enabled.
*
* @param bool $allowUnknownAttribute
*/
final public function setAllowUnknownAttribute(bool $allowUnknownAttribute): void
{
$this->allowUnknownAttribute = $allowUnknownAttribute;
}
/**
* Set generator ID
*
* @param string|GeneratorInterface $generator
* @final
*/
public function setGenerator($generator): void
{
if (!is_string($generator) && !$generator instanceof GeneratorInterface) {
throw new LogicException('Trying to set an invalid generator in "' . get_class($this) . '"');
}
$this->generator = $generator;
}
/**
* Get generator ID
*
* @return GeneratorInterface
* @final
*/
public function generator(): GeneratorInterface
{
if ($this->generator === null) {
if ($this->metadata->isAutoIncrementPrimaryKey()) {
$this->generator = new AutoIncrementGenerator($this);
} elseif ($this->metadata->isSequencePrimaryKey()) {
$this->generator = new TableGenerator($this);
} else {
$this->generator = new NullGenerator();
}
} elseif (is_string($this->generator)) {
$className = $this->generator;
$this->generator = new $className($this);
}
return $this->generator;
}
/**
* @return MapperHydratorInterface<E>
* @final
*
* @psalm-suppress InvalidNullableReturnType
* @psalm-suppress NullableReturnStatement
*/
public function hydrator(): MapperHydratorInterface
{
return $this->hydrator;
}
/**
* @param MapperHydratorInterface<E> $hydrator
*
* @return $this
* @final
*/
public function setHydrator(MapperHydratorInterface $hydrator)
{
$this->hydrator = $hydrator;
$this->hydrator->setPrimeInstantiator($this->serviceLocator->instantiator());
if ($this->metadata !== null) {
$this->hydrator->setPrimeMetadata($this->metadata);
}
return $this;
}
/**
* Define the criteria class
* By default, it is the entity class with "Criteria" suffix if exists, else base Criteria class
*
* @param class-string<Criteria> $className
*/
final public function setCriteriaClass(string $className): void
{
$this->criteriaClass = $className;
}
/**
* Set ID value en entity
* Only sequenceable attribute is set (the first one)
*
* @param E $entity
* @param mixed $value
*
* @return void
* @final
*/
public function setId($entity, $value): void
{
$this->hydrateOne($entity, $this->metadata->primary['attributes'][0], $value);
}
/**
* Get ID value of an entity
* Only sequenceable attribute is get (the first one)
*
* @param E $entity
*
* @return mixed
* @final
*/
public function getId($entity)
{
return $this->extractOne($entity, $this->metadata->primary['attributes'][0]);
}
/**
* Get attribute value of an entity
*
* @param E $entity
* @param string $attribute
*
* @return mixed
* @final
*/
public function extractOne($entity, string $attribute)
{
return $this->hydrator->extractOne($entity, $attribute);
}
/**
* Hydrate on property value of an entity
*
* @param E $entity
* @param string $attribute
* @param mixed $value
*
* @return void
* @final
*/
public function hydrateOne($entity, string $attribute, $value): void
{
$this->hydrator->hydrateOne($entity, $attribute, $value);
}
/**
* Get primary key criteria
*
* @param E $entity
*
* @return array
* @final
*/
public function primaryCriteria($entity): array
{
return $this->hydrator->flatExtract($entity, array_flip($this->metadata->primary['attributes']));
}
/**
* Instanciate the related class entity
*
* @return E
* @final
*/
public function instantiate()
{
/** @var E */
return $this->serviceLocator->instantiator()
->instantiate($this->metadata->entityClass, $this->metadata->instantiatorHint);
}
/**
* User api to instantiate related entity
*
* @param array $data
*
* @return E
* @final
*/
public function entity(array $data)
{
$entity = $this->instantiate();
// Allows custom import from developpers.
if ($entity instanceof ImportableInterface) {
$entity->import($data);
} else {
$this->serviceLocator->hydrator($this->metadata->entityClass)
->hydrate($entity, $data);
}
return $entity;
}
/**
* Transform entity to db one dimension array
*
* @param E $entity Entity object
* @param array|null $attributes Attribute should be flipped as ['key' => true]
*
* @return array
* @final
*/
public function prepareToRepository($entity, ?array $attributes = null): array
{
return $this->hydrator->flatExtract($entity, $attributes);
}
/**
* Get valid array for entity
*
* Inject one dimension array (db field) into entity
* Map attribute and cast value
*
* $optimisation est un tableau donné par le query builder dans le but
* d'optimiser le chargement des relations et des tableaux associatifs. Il contient les entités regroupés par
* la valeur du champs demandé
*
* @param array $data Db data
* @param PlatformInterface $platform
*
* @return E
*/
public function prepareFromRepository(array $data, PlatformInterface $platform)
{
$entity = $this->instantiate();
$this->hydrator->flatHydrate($entity, $data, $platform->types());
return $entity;
}
/**
* Get the repository
*
* @return RepositoryInterface<E>
* @final
*/
public function repository(): RepositoryInterface
{
$className = $this->repositoryClass;
return new $className($this, $this->serviceLocator, $this->resultCache === false ? null : $this->resultCache);
}
/**
* Create a criteria object for this entity
*
* @param array<string, mixed> $filters
*
* @return Criteria
*/
public function criteria(array $filters = []): Criteria
{
$class = $this->criteriaClass;
if (!$class) {
$class = $this->entityClass . 'Criteria';
$this->criteriaClass = $class = class_exists($class) ? $class : Criteria::class;
}
return new $class($filters);
}
/**
* Get the mapper info
*
* @return MapperInfo
* @throws PrimeException
* @final
*/
public function info(): MapperInfo
{
$platform = $this->serviceLocator->connection($this->metadata()->connection)->platform();
return new MapperInfo($this, $platform->types());
}
/**
* Get defined relation
*
* Build object relation defined by user
*
* @param string $relationName
*
* @return array Metadata for relation definition
*
* @throws \RuntimeException If relation or type does not exist
*/
public function relation(string $relationName): array
{
$relations = $this->relations();
if (!isset($relations[$relationName])) {
throw new RelationNotFoundException('Relation "' . $relationName . '" is not set in ' . $this->metadata->entityName);
}
return $relations[$relationName];
}
//
//------------ API configuration du mapping
//
/**
* Definition du schema
*
* Definition
* - connection : The connection name declare in connection manager (mandatory).
* - database : The database name.
* - table : The table name (mandatory).
* - tableOptions : The table options (ex: engine => myisam).
*
* <code>
* return [
* 'connection' => (string),
* 'database' => (string),
* 'table' => (string),
* 'tableOptions' => (array),
* ];
* </code>
*
* @return array
*/
abstract public function schema(): array;
/**
* Gets repository fields builder
*
* @return iterable<string, FieldDefinition>
* @final
*
* @todo should be final
*/
public function fields(): iterable
{
$builder = new FieldBuilder();
$this->buildFields($builder);
foreach ($this->behaviors() as $behavior) {
$behavior->changeSchema($builder);
}
return $builder;
}
/**
* Build fields from this mapper.
*
* To overwrite.
*
* @param FieldBuilder $builder
*/
public function buildFields(FieldBuilder $builder): void
{
throw new LogicException('Fields must be defined in mapper '.__CLASS__);
}
/**
* Sequence definition.
*
* The metadata will build the sequence info using this method if the primary key is defined as sequence (Metadata::PK_SEQUENCE).
* Definition:
* - connection : The connection name declare in connection manager. The table connection will be used by default.
* - table : The table sequence name.
* The table name with suffix '_seq' will be used by default.
* - column : The sequence column name. Default 'id'.
* - tableOptions : The sequence table options (ex: engine => myisam).
*
* <code>
* return [
* 'connection' => (string),
* 'table' => (string),
* 'column' => (string),
* 'tableOptions' => (array),
* ];
* </code>
*
* @return array{
* connection?: string|null,
* table?: string|null,
* column?: string|null,
* tableOptions?: array,
* }
*/
public function sequence(): array
{
return [
'connection' => null,
'table' => null,
'column' => null,
'tableOptions' => [],
];
}
/**
* Gets custom filters
*
* Returns additional filters for query
* You can use PHP 8 attributes to mark methods as scopes using {@see Filter}
* instead of overriding this method
*
* Note: you cannot mix PHP 8 attributes and overriding this method
*
* <code>
* class MyMapper extends Mapper
* {
* // Legacy way
* public function filters(): array
* {
* return [
* 'customFilterName' => function(<Bdf\Prime\Query\QueryInterface> $query, <mixed> $value) {
* return <void>
* },
* ];
* }
*
* // PHP 8 way
* #[Filter]
* public function customFilterName(QueryInterface $query, $test): void
* {
* }
* }
*
* $repository->where('customFilterName', 'test');
* </code>
*
* @return array<string, callable>
*/
public function filters(): array
{
return $this->filters ??= $this->loadMethodsFromAttributes(Filter::class);
}
/**
* Array of index
*
* <code>
* return [
* ['attribute1', 'attribute2']
* ];
* </code>
*
* @return array
* @final
*
* @todo Make final
*/
public function indexes(): array
{
$builder = new IndexBuilder();
$this->buildIndexes($builder);
return $builder->build();
}
/**
* Build the table indexes
* Note: Indexes can be added on undeclared fields
*
* <code>
* public function buildIndexes(IndexBuilder $builder)
* {
* $builder
* ->add()->on('name')->unique()
* ->add()->on('reference', ['length' => 12])
* ->add()->on(['type', 'date'])
* }
* </code>
*
* @param IndexBuilder $builder
*/
public function buildIndexes(IndexBuilder $builder): void
{
}
/**
* Repository extension
*
* Returns additional methods in repository or query
* You can use PHP 8 attributes to mark methods as scopes using {@see Scope}
* instead of overriding this method
*
* Note: you cannot mix PHP 8 attributes and overriding this method
*
* <code>
* class MyMapper extends Mapper
* {
* // Legacy way
* public function scopes(): array
* {
* return [
* 'customMethod' => function($query, $test) {
*
* },
* ];
* }
*
* // PHP 8 way
* #[Scope]
* public function customMethod($query, $test) {
* }
* }
*
* $repository->customMethod('test');
* </code>
*
* @return array<string, callable>
*/
public function scopes(): array
{
$scopes = ($this->scopes ??= $this->loadMethodsFromAttributes(Scope::class));
if (!$scopes) {
throw new LogicException('No scopes have been defined in "' . get_class($this) . '"');
}
return $this->scopes = $scopes;
}
/**
* Get custom queries for repository
*
* A custom query works mostly like scopes, but with some differences :
* - Cannot be called using a query (i.e. $query->where(...)->myScope())
* - The function has responsibility of creating the query instance
* - The first argument is the repository
*
* You can use PHP 8 attributes to mark methods as scopes using {@see RepositoryMethod}
* instead of overriding this method
*
* Note: you cannot mix PHP 8 attributes and overriding this method
*
* <code>
* class MyMapper extends Mapper
* {
* // Legacy way
* public function queries(): array
* {
* return [
* 'findByCustom' => function (EntityRepository $repository, $search) {
* return $repository->make(MyCustomQuery::class)->where('first', $search)->first();
* }
* ];
* }
*
* // PHP 8 way
* #[RepositoryMethod]
* public function findByCustom(EntityRepository $repository, $search)
* {
* return $repository->make(MyCustomQuery::class)->where('first', $search)->first();
* }
* }
* </code>
*
* @return array<string, callable(\Bdf\Prime\Repository\RepositoryInterface<E>,mixed...):mixed>
*/
public function queries(): array
{
return $this->queries ??= $this->loadMethodsFromAttributes(RepositoryMethod::class);
}
/**
* Register event on notifier
*
* @param RepositoryEventsSubscriberInterface<E> $notifier
* @final
*/
public function events(RepositoryEventsSubscriberInterface $notifier): void
{
$this->customEvents($notifier);
foreach ($this->behaviors() as $behavior) {
$behavior->subscribe($notifier);
}
}
/**
* Register custom event on notifier
*
* To overwrite.
*
* @param RepositoryEventsSubscriberInterface<E> $notifier
*/
public function customEvents(RepositoryEventsSubscriberInterface $notifier): void
{
// To overwrite
}
/**
* Get all behaviors
*
* @return BehaviorInterface<E>[]
*/
final public function behaviors(): array
{
return $this->behaviors ??= $this->getDefinedBehaviors();
}
/**
* Custom definition of behaviors
*
* To overwrite.
*
* @return BehaviorInterface<E>[]
*/
public function getDefinedBehaviors(): array
{
return [];
}
/**
* Get all relations
*
* @return array<string, RelationDefinition>
* @final
*
* @todo should be final
*/
public function relations(): array
{
if ($this->relationBuilder === null) {
$this->relationBuilder = new RelationBuilder();
$this->buildRelations($this->relationBuilder);
}
return $this->relationBuilder->relations();