IApacheBackend.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Morris Jobke <hey@morrisjobke.de>
  6. * @author Thomas Müller <thomas.mueller@tmit.eu>
  7. *
  8. * @license AGPL-3.0
  9. *
  10. * This code is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License, version 3,
  12. * as published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License, version 3,
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>
  21. *
  22. */
  23. /**
  24. * Public interface of ownCloud for apps to use.
  25. * Authentication/IApacheBackend interface
  26. */
  27. // use OCP namespace for all classes that are considered public.
  28. // This means that they should be used by apps instead of the internal ownCloud classes
  29. namespace OCP\Authentication;
  30. /**
  31. * Interface IApacheBackend
  32. *
  33. * @package OCP\Authentication
  34. * @since 6.0.0
  35. */
  36. interface IApacheBackend {
  37. /**
  38. * In case the user has been authenticated by Apache true is returned.
  39. *
  40. * @return boolean whether Apache reports a user as currently logged in.
  41. * @since 6.0.0
  42. */
  43. public function isSessionActive();
  44. /**
  45. * Creates an attribute which is added to the logout hyperlink. It can
  46. * supply any attribute(s) which are valid for <a>.
  47. *
  48. * @return string with one or more HTML attributes.
  49. * @since 6.0.0
  50. */
  51. public function getLogoutAttribute();
  52. /**
  53. * Return the id of the current user
  54. * @return string
  55. * @since 6.0.0
  56. */
  57. public function getCurrentUserId();
  58. }