SpecialLockdb.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?php
  2. /**
  3. * Implements Special:Lockdb
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with this program; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. * http://www.gnu.org/copyleft/gpl.html
  19. *
  20. * @file
  21. * @ingroup SpecialPage
  22. */
  23. use MediaWiki\MediaWikiServices;
  24. /**
  25. * A form to make the database readonly (eg for maintenance purposes).
  26. *
  27. * @ingroup SpecialPage
  28. */
  29. class SpecialLockdb extends FormSpecialPage {
  30. protected $reason = '';
  31. public function __construct() {
  32. parent::__construct( 'Lockdb', 'siteadmin' );
  33. }
  34. public function doesWrites() {
  35. return false;
  36. }
  37. public function requiresWrite() {
  38. return false;
  39. }
  40. public function checkExecutePermissions( User $user ) {
  41. parent::checkExecutePermissions( $user );
  42. # If the lock file isn't writable, we can do sweet bugger all
  43. if ( !is_writable( dirname( $this->getConfig()->get( 'ReadOnlyFile' ) ) ) ) {
  44. throw new ErrorPageError( 'lockdb', 'lockfilenotwritable' );
  45. }
  46. if ( file_exists( $this->getConfig()->get( 'ReadOnlyFile' ) ) ) {
  47. throw new ErrorPageError( 'lockdb', 'databaselocked' );
  48. }
  49. }
  50. protected function getFormFields() {
  51. return [
  52. 'Reason' => [
  53. 'type' => 'textarea',
  54. 'rows' => 4,
  55. 'vertical-label' => true,
  56. 'label-message' => 'enterlockreason',
  57. ],
  58. 'Confirm' => [
  59. 'type' => 'toggle',
  60. 'label-message' => 'lockconfirm',
  61. ],
  62. ];
  63. }
  64. protected function alterForm( HTMLForm $form ) {
  65. $form->setWrapperLegend( false )
  66. ->setHeaderText( $this->msg( 'lockdbtext' )->parseAsBlock() )
  67. ->setSubmitTextMsg( 'lockbtn' );
  68. }
  69. public function onSubmit( array $data ) {
  70. if ( !$data['Confirm'] ) {
  71. return Status::newFatal( 'locknoconfirm' );
  72. }
  73. Wikimedia\suppressWarnings();
  74. $fp = fopen( $this->getConfig()->get( 'ReadOnlyFile' ), 'w' );
  75. Wikimedia\restoreWarnings();
  76. if ( $fp === false ) {
  77. # This used to show a file not found error, but the likeliest reason for fopen()
  78. # to fail at this point is insufficient permission to write to the file...good old
  79. # is_writable() is plain wrong in some cases, it seems...
  80. return Status::newFatal( 'lockfilenotwritable' );
  81. }
  82. fwrite( $fp, $data['Reason'] );
  83. $timestamp = wfTimestampNow();
  84. $contLang = MediaWikiServices::getInstance()->getContentLanguage();
  85. fwrite( $fp, "\n<p>" . $this->msg( 'lockedbyandtime',
  86. $this->getUser()->getName(),
  87. $contLang->date( $timestamp, false, false ),
  88. $contLang->time( $timestamp, false, false )
  89. )->inContentLanguage()->text() . "</p>\n" );
  90. fclose( $fp );
  91. return Status::newGood();
  92. }
  93. public function onSuccess() {
  94. $out = $this->getOutput();
  95. $out->addSubtitle( $this->msg( 'lockdbsuccesssub' ) );
  96. $out->addWikiMsg( 'lockdbsuccesstext' );
  97. }
  98. protected function getDisplayFormat() {
  99. return 'ooui';
  100. }
  101. protected function getGroupName() {
  102. return 'wiki';
  103. }
  104. }