InstallerSessionProvider.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. /**
  3. * Session provider which always provides the same session ID and doesn't
  4. * persist the session. For use in the installer when ObjectCache doesn't
  5. * work anyway.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along
  18. * with this program; if not, write to the Free Software Foundation, Inc.,
  19. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  20. * http://www.gnu.org/copyleft/gpl.html
  21. *
  22. * @file
  23. * @ingroup Deployment
  24. */
  25. use MediaWiki\Session\SessionProvider;
  26. use MediaWiki\Session\SessionBackend;
  27. use MediaWiki\Session\SessionInfo;
  28. class InstallerSessionProvider extends SessionProvider {
  29. /**
  30. * Pretend there is a session, to avoid MWCryptRand overhead
  31. * @param WebRequest $request
  32. * @return SessionInfo
  33. */
  34. public function provideSessionInfo( WebRequest $request ) {
  35. return new SessionInfo( 1, [
  36. 'provider' => $this,
  37. 'id' => str_repeat( 'x', 32 ),
  38. ] );
  39. }
  40. /**
  41. * Yes we will treat your data with great care!
  42. * @return bool
  43. */
  44. public function persistsSessionId() {
  45. return true;
  46. }
  47. /**
  48. * Sure, you can be whoever you want, as long as you have ID 0
  49. * @return bool
  50. */
  51. public function canChangeUser() {
  52. return true;
  53. }
  54. public function persistSession( SessionBackend $session, WebRequest $request ) {
  55. }
  56. public function unpersistSession( WebRequest $request ) {
  57. }
  58. }