You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LDAPProviderFactory.php 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, Roger Szabo (roger.szabo@web.de)
  4. *
  5. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  6. * @author Robin Appelman <robin@icewind.nl>
  7. * @author Roeland Jago Douma <roeland@famdouma.nl>
  8. * @author root <root@localhost.localdomain>
  9. *
  10. * @license GNU AGPL version 3 or any later version
  11. *
  12. * This program is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU Affero General Public License as
  14. * published by the Free Software Foundation, either version 3 of the
  15. * License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU Affero General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Affero General Public License
  23. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  24. *
  25. */
  26. namespace OCA\User_LDAP;
  27. use OCP\IServerContainer;
  28. use OCP\LDAP\ILDAPProvider;
  29. use OCP\LDAP\ILDAPProviderFactory;
  30. class LDAPProviderFactory implements ILDAPProviderFactory {
  31. /** * @var IServerContainer */
  32. private $serverContainer;
  33. public function __construct(IServerContainer $serverContainer) {
  34. $this->serverContainer = $serverContainer;
  35. }
  36. public function getLDAPProvider(): ILDAPProvider {
  37. return $this->serverContainer->get(LDAPProvider::class);
  38. }
  39. public function isAvailable(): bool {
  40. return true;
  41. }
  42. }