. */ declare(strict_types=1); namespace Fisharebest\Webtrees; use Fisharebest\Webtrees\Contracts\CacheFactoryInterface; use Fisharebest\Webtrees\Contracts\FamilyFactoryInterface; use Fisharebest\Webtrees\Contracts\FilesystemFactoryInterface; use Fisharebest\Webtrees\Contracts\ElementFactoryInterface; use Fisharebest\Webtrees\Contracts\GedcomRecordFactoryInterface; use Fisharebest\Webtrees\Contracts\HeaderFactoryInterface; use Fisharebest\Webtrees\Contracts\ImageFactoryInterface; use Fisharebest\Webtrees\Contracts\IndividualFactoryInterface; use Fisharebest\Webtrees\Contracts\LocationFactoryInterface; use Fisharebest\Webtrees\Contracts\MarkdownFactoryInterface; use Fisharebest\Webtrees\Contracts\MediaFactoryInterface; use Fisharebest\Webtrees\Contracts\NoteFactoryInterface; use Fisharebest\Webtrees\Contracts\RepositoryFactoryInterface; use Fisharebest\Webtrees\Contracts\SlugFactoryInterface; use Fisharebest\Webtrees\Contracts\SourceFactoryInterface; use Fisharebest\Webtrees\Contracts\SubmissionFactoryInterface; use Fisharebest\Webtrees\Contracts\SubmitterFactoryInterface; use Fisharebest\Webtrees\Contracts\XrefFactoryInterface; /** * Provide access to factory objects and those that represent external entities (filesystems, caches) */ class Registry { private static CacheFactoryInterface $cache_factory; private static ElementFactoryInterface $element_factory; private static FamilyFactoryInterface $family_factory; private static FilesystemFactoryInterface $filesystem_factory; private static GedcomRecordFactoryInterface $gedcom_record_factory; private static HeaderFactoryInterface $header_factory; private static ImageFactoryInterface $image_factory; private static IndividualFactoryInterface $individual_factory; private static LocationFactoryInterface $location_factory; private static MarkdownFactoryInterface $markdown_factory; private static MediaFactoryInterface $media_factory; private static NoteFactoryInterface $note_factory; private static RepositoryFactoryInterface $repository_factory; private static SlugFactoryInterface $slug_factory; private static SourceFactoryInterface $source_factory; private static SubmissionFactoryInterface $submission_factory; private static SubmitterFactoryInterface $submitter_factory; private static XrefFactoryInterface $xref_factory; /** * Store or retrieve a factory object. * * @param CacheFactoryInterface|null $factory * * @return CacheFactoryInterface */ public static function cache(CacheFactoryInterface $factory = null): CacheFactoryInterface { if ($factory instanceof CacheFactoryInterface) { self::$cache_factory = $factory; } return self::$cache_factory; } /** * Store or retrieve a factory object. * * @param ElementFactoryInterface|null $factory * * @return ElementFactoryInterface */ public static function elementFactory(ElementFactoryInterface $factory = null): ElementFactoryInterface { if ($factory instanceof ElementFactoryInterface) { self::$element_factory = $factory; } return self::$element_factory; } /** * Store or retrieve a factory object. * * @param FamilyFactoryInterface|null $factory * * @return FamilyFactoryInterface */ public static function familyFactory(FamilyFactoryInterface $factory = null): FamilyFactoryInterface { if ($factory instanceof FamilyFactoryInterface) { self::$family_factory = $factory; } return self::$family_factory; } /** * Store or retrieve a factory object. * * @param FilesystemFactoryInterface|null $factory * * @return FilesystemFactoryInterface */ public static function filesystem(FilesystemFactoryInterface $factory = null): FilesystemFactoryInterface { if ($factory instanceof FilesystemFactoryInterface) { self::$filesystem_factory = $factory; } return self::$filesystem_factory; } /** * Store or retrieve a factory object. * * @param GedcomRecordFactoryInterface|null $factory * * @return GedcomRecordFactoryInterface */ public static function gedcomRecordFactory(GedcomRecordFactoryInterface $factory = null): GedcomRecordFactoryInterface { if ($factory instanceof GedcomRecordFactoryInterface) { self::$gedcom_record_factory = $factory; } return self::$gedcom_record_factory; } /** * Store or retrieve a factory object. * * @param HeaderFactoryInterface|null $factory * * @return HeaderFactoryInterface */ public static function headerFactory(HeaderFactoryInterface $factory = null): HeaderFactoryInterface { if ($factory instanceof HeaderFactoryInterface) { self::$header_factory = $factory; } return self::$header_factory; } /** * Store or retrieve a factory object. * * @param ImageFactoryInterface|null $factory * * @return ImageFactoryInterface */ public static function imageFactory(ImageFactoryInterface $factory = null): ImageFactoryInterface { if ($factory instanceof ImageFactoryInterface) { self::$image_factory = $factory; } return self::$image_factory; } /** * Store or retrieve a factory object. * * @param IndividualFactoryInterface|null $factory * * @return IndividualFactoryInterface */ public static function individualFactory(IndividualFactoryInterface $factory = null): IndividualFactoryInterface { if ($factory instanceof IndividualFactoryInterface) { self::$individual_factory = $factory; } return self::$individual_factory; } /** * Store or retrieve a factory object. * * @param LocationFactoryInterface|null $factory * * @return LocationFactoryInterface */ public static function locationFactory(LocationFactoryInterface $factory = null): LocationFactoryInterface { if ($factory instanceof LocationFactoryInterface) { self::$location_factory = $factory; } return self::$location_factory; } /** * Store or retrieve a factory object. * * @param MarkdownFactoryInterface|null $factory * * @return MarkdownFactoryInterface */ public static function markdownFactory(MarkdownFactoryInterface $factory = null): MarkdownFactoryInterface { if ($factory instanceof MarkdownFactoryInterface) { self::$markdown_factory = $factory; } return self::$markdown_factory; } /** * Store or retrieve a factory object. * * @param MediaFactoryInterface|null $factory * * @return MediaFactoryInterface */ public static function mediaFactory(MediaFactoryInterface $factory = null): MediaFactoryInterface { if ($factory instanceof MediaFactoryInterface) { self::$media_factory = $factory; } return self::$media_factory; } /** * Store or retrieve a factory object. * * @param NoteFactoryInterface|null $factory * * @return NoteFactoryInterface */ public static function noteFactory(NoteFactoryInterface $factory = null): NoteFactoryInterface { if ($factory instanceof NoteFactoryInterface) { self::$note_factory = $factory; } return self::$note_factory; } /** * Store or retrieve a factory object. * * @param RepositoryFactoryInterface|null $factory * * @return RepositoryFactoryInterface */ public static function repositoryFactory(RepositoryFactoryInterface $factory = null): RepositoryFactoryInterface { if ($factory instanceof RepositoryFactoryInterface) { self::$repository_factory = $factory; } return self::$repository_factory; } /** * Store or retrieve a factory object. * * @param SlugFactoryInterface|null $factory * * @return SlugFactoryInterface */ public static function slugFactory(SlugFactoryInterface $factory = null): SlugFactoryInterface { if ($factory instanceof SlugFactoryInterface) { self::$slug_factory = $factory; } return self::$slug_factory; } /** * Store or retrieve a factory object. * * @param SourceFactoryInterface|null $factory * * @return SourceFactoryInterface */ public static function sourceFactory(SourceFactoryInterface $factory = null): SourceFactoryInterface { if ($factory instanceof SourceFactoryInterface) { self::$source_factory = $factory; } return self::$source_factory; } /** * Store or retrieve a factory object. * * @param SubmissionFactoryInterface|null $factory * * @return SubmissionFactoryInterface */ public static function submissionFactory(SubmissionFactoryInterface $factory = null): SubmissionFactoryInterface { if ($factory instanceof SubmissionFactoryInterface) { self::$submission_factory = $factory; } return self::$submission_factory; } /** * Store or retrieve a factory object. * * @param SubmitterFactoryInterface|null $factory * * @return SubmitterFactoryInterface */ public static function submitterFactory(SubmitterFactoryInterface $factory = null): SubmitterFactoryInterface { if ($factory instanceof SubmitterFactoryInterface) { self::$submitter_factory = $factory; } return self::$submitter_factory; } /** * Store or retrieve a factory object. * * @param XrefFactoryInterface|null $factory * * @return XrefFactoryInterface */ public static function xrefFactory(XrefFactoryInterface $factory = null): XrefFactoryInterface { if ($factory instanceof XrefFactoryInterface) { self::$xref_factory = $factory; } return self::$xref_factory; } }