MediaWiki 1.39.10
|
Public Member Functions | |
__construct (ServiceOptions $options, ObjectFactory $objectFactory, UserIdentityLookup $userIdentityLookup) | |
getDefaultProviderId () | |
Get the ID of the default central ID provider. | |
getLookup (string $providerId=null) | |
Get an instance of a CentralIdLookup. | |
getNonLocalLookup (string $providerID=null) | |
Returns a CentralIdLookup that is guaranteed to be non-local. | |
getProviderIds () | |
Get the IDs of the registered central ID lookup providers. | |
Definition at line 35 of file CentralIdLookupFactory.php.
MediaWiki\User\CentralId\CentralIdLookupFactory::__construct | ( | ServiceOptions | $options, |
ObjectFactory | $objectFactory, | ||
UserIdentityLookup | $userIdentityLookup ) |
ServiceOptions | $options | |
ObjectFactory | $objectFactory | |
UserIdentityLookup | $userIdentityLookup |
Definition at line 66 of file CentralIdLookupFactory.php.
References MediaWiki\Config\ServiceOptions\assertRequiredOptions(), MediaWiki\MainConfigNames\CentralIdLookupProvider, MediaWiki\MainConfigNames\CentralIdLookupProviders, and MediaWiki\Config\ServiceOptions\get().
MediaWiki\User\CentralId\CentralIdLookupFactory::getDefaultProviderId | ( | ) |
Get the ID of the default central ID provider.
Definition at line 92 of file CentralIdLookupFactory.php.
MediaWiki\User\CentralId\CentralIdLookupFactory::getLookup | ( | string | $providerId = null | ) |
Get an instance of a CentralIdLookup.
string | null | $providerId | Provider ID from $wgCentralIdLookupProviders or null to use the provider configured in $wgCentralIdLookupProvider |
InvalidArgumentException | if $providerId is not properly configured |
Definition at line 104 of file CentralIdLookupFactory.php.
MediaWiki\User\CentralId\CentralIdLookupFactory::getNonLocalLookup | ( | string | $providerID = null | ) |
Returns a CentralIdLookup that is guaranteed to be non-local.
If no such guarantee can be made, returns null.
If this function returns a non-null CentralIdLookup, that lookup is expected to provide IDs that are shared with some set of other wikis. However, you should still be cautious when using those IDs, as they will not necessarily work with all other wikis, and it can be hard to tell if another wiki is in the same set as this one or not.
string | null | $providerID | Provider ID from $wgCentralIdLookupProviders or null to use the provider configured in $wgCentralIdLookupProvider |
InvalidArgumentException | if $providerId is not properly configured |
Definition at line 136 of file CentralIdLookupFactory.php.
MediaWiki\User\CentralId\CentralIdLookupFactory::getProviderIds | ( | ) |
Get the IDs of the registered central ID lookup providers.
Definition at line 83 of file CentralIdLookupFactory.php.