MediaWiki REL1_39
SpecialLockdb.php
Go to the documentation of this file.
1<?php
25use Wikimedia\AtEase\AtEase;
26
33
34 public function __construct() {
35 parent::__construct( 'Lockdb', 'siteadmin' );
36 }
37
38 public function doesWrites() {
39 return false;
40 }
41
42 public function requiresWrite() {
43 return false;
44 }
45
46 public function checkExecutePermissions( User $user ) {
47 parent::checkExecutePermissions( $user );
48 # If the lock file isn't writable, we can do sweet bugger all
49 if ( !is_writable( dirname( $this->getConfig()->get( MainConfigNames::ReadOnlyFile ) ) ) ) {
50 throw new ErrorPageError( 'lockdb', 'lockfilenotwritable' );
51 }
52 if ( file_exists( $this->getConfig()->get( MainConfigNames::ReadOnlyFile ) ) ) {
53 throw new ErrorPageError( 'lockdb', 'databaselocked' );
54 }
55 }
56
57 protected function getFormFields() {
58 return [
59 'Reason' => [
60 'type' => 'textarea',
61 'rows' => 4,
62 'label-message' => 'enterlockreason',
63 ],
64 'Confirm' => [
65 'type' => 'toggle',
66 'label-message' => 'lockconfirm',
67 ],
68 ];
69 }
70
71 protected function alterForm( HTMLForm $form ) {
72 $form->setWrapperLegend( false )
73 ->setHeaderText( $this->msg( 'lockdbtext' )->parseAsBlock() )
74 ->setSubmitTextMsg( 'lockbtn' );
75 }
76
77 public function onSubmit( array $data ) {
78 if ( !$data['Confirm'] ) {
79 return Status::newFatal( 'locknoconfirm' );
80 }
81
82 AtEase::suppressWarnings();
83 $fp = fopen( $this->getConfig()->get( MainConfigNames::ReadOnlyFile ), 'w' );
84 AtEase::restoreWarnings();
85
86 if ( $fp === false ) {
87 # This used to show a file not found error, but the likeliest reason for fopen()
88 # to fail at this point is insufficient permission to write to the file...good old
89 # is_writable() is plain wrong in some cases, it seems...
90 return Status::newFatal( 'lockfilenotwritable' );
91 }
92 fwrite( $fp, $data['Reason'] );
93 $timestamp = wfTimestampNow();
94 $contLang = $this->getContentLanguage();
95 fwrite( $fp, "\n<p>" . $this->msg( 'lockedbyandtime',
96 $this->getUser()->getName(),
97 $contLang->date( $timestamp, false, false ),
98 $contLang->time( $timestamp, false, false )
99 )->inContentLanguage()->text() . "</p>\n" );
100 fclose( $fp );
101
102 return Status::newGood();
103 }
104
105 public function onSuccess() {
106 $out = $this->getOutput();
107 $out->addSubtitle( $this->msg( 'lockdbsuccesssub' ) );
108 $out->addWikiMsg( 'lockdbsuccesstext' );
109 }
110
111 protected function getDisplayFormat() {
112 return 'ooui';
113 }
114
115 protected function getGroupName() {
116 return 'wiki';
117 }
118}
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
An error page which can definitely be safely rendered using the OutputPage.
Special page which uses an HTMLForm to handle processing.
Object handling generic submission, CSRF protection, layout and other logic for UI forms in a reusabl...
Definition HTMLForm.php:150
setWrapperLegend( $legend)
Prompt the whole form to be wrapped in a "<fieldset>", with this text as its "<legend>" element.
A class containing constants representing the names of configuration variables.
A form to make the database readonly (eg for maintenance purposes).
onSubmit(array $data)
Process the form on POST submission.
getFormFields()
Get an HTMLForm descriptor array.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
checkExecutePermissions(User $user)
Called from execute() to check if the given user can perform this action.
requiresWrite()
Whether this action requires the wiki not to be locked.
doesWrites()
Indicates whether this special page may perform database writes.
getDisplayFormat()
Get display format for the form.
alterForm(HTMLForm $form)
Play with the HTMLForm if you need to more substantially.
onSuccess()
Do something exciting on successful processing of the form, most likely to show a confirmation messag...
getName()
Get the name of this Special Page.
getOutput()
Get the OutputPage being used for this instance.
getUser()
Shortcut to get the User executing this instance.
msg( $key,... $params)
Wrapper around wfMessage that sets the current context.
getConfig()
Shortcut to get main config object.
getContentLanguage()
Shortcut to get content language.
internal since 1.36
Definition User.php:70