MediaWiki  1.27.2
SpecialUnlockdb.php
Go to the documentation of this file.
1 <?php
30 
31  public function __construct() {
32  parent::__construct( 'Unlockdb', 'siteadmin' );
33  }
34 
35  public function doesWrites() {
36  return true;
37  }
38 
39  public function requiresWrite() {
40  return false;
41  }
42 
43  public function checkExecutePermissions( User $user ) {
44  parent::checkExecutePermissions( $user );
45  # If the lock file isn't writable, we can do sweet bugger all
46  if ( !file_exists( $this->getConfig()->get( 'ReadOnlyFile' ) ) ) {
47  throw new ErrorPageError( 'lockdb', 'databasenotlocked' );
48  }
49  }
50 
51  protected function getFormFields() {
52  return [
53  'Confirm' => [
54  'type' => 'toggle',
55  'label-message' => 'unlockconfirm',
56  ],
57  ];
58  }
59 
60  protected function alterForm( HTMLForm $form ) {
61  $form->setWrapperLegend( false );
62  $form->setHeaderText( $this->msg( 'unlockdbtext' )->parseAsBlock() );
63  $form->setSubmitTextMsg( 'unlockbtn' );
64  }
65 
66  public function onSubmit( array $data ) {
67  if ( !$data['Confirm'] ) {
68  return Status::newFatal( 'locknoconfirm' );
69  }
70 
71  $readOnlyFile = $this->getConfig()->get( 'ReadOnlyFile' );
72  MediaWiki\suppressWarnings();
73  $res = unlink( $readOnlyFile );
74  MediaWiki\restoreWarnings();
75 
76  if ( $res ) {
77  return Status::newGood();
78  } else {
79  return Status::newFatal( 'filedeleteerror', $readOnlyFile );
80  }
81  }
82 
83  public function onSuccess() {
84  $out = $this->getOutput();
85  $out->addSubtitle( $this->msg( 'unlockdbsuccesssub' ) );
86  $out->addWikiMsg( 'unlockdbsuccesstext' );
87  }
88 
89  protected function getGroupName() {
90  return 'wiki';
91  }
92 }
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition: hooks.txt:762
the array() calling protocol came about after MediaWiki 1.4rc1.
msg()
Wrapper around wfMessage that sets the current context.
getOutput()
Get the OutputPage being used for this instance.
static newFatal($message)
Factory function for fatal errors.
Definition: Status.php:89
Special page which uses an HTMLForm to handle processing.
An error page which can definitely be safely rendered using the OutputPage.
Implements Special:Unlockdb.
$res
Definition: database.txt:21
alterForm(HTMLForm $form)
setSubmitTextMsg($msg)
Set the text for the submit button to a message.
Definition: HTMLForm.php:1250
Object handling generic submission, CSRF protection, layout and other logic for UI forms...
Definition: HTMLForm.php:123
setWrapperLegend($legend)
Prompt the whole form to be wrapped in a "
", with this text as its "" element...
Definition: HTMLForm.php:1366
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition: hooks.txt:242
onSubmit(array $data)
setHeaderText($msg, $section=null)
Set header text, inside the form.
Definition: HTMLForm.php:736
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
getConfig()
Shortcut to get main config object.
checkExecutePermissions(User $user)
static newGood($value=null)
Factory function for good results.
Definition: Status.php:101