blob: f08ad4f275370c163b2076a427ffb4c0622badb3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
<?php
/**
* A read-only mode service which does not depend on LoadBalancer.
* To obtain an instance, use MediaWikiServices::getInstance()->getConfiguredReadOnlyMode().
*
* @since 1.29
*/
class ConfiguredReadOnlyMode {
/** @var string|false|null */
private $reason;
/** @var string|null */
private $reasonFile;
/**
* @param string|false|null $reason Current reason for read-only mode, if known. null means look
* in $reasonFile instead.
* @param string|null $reasonFile A file to look in for a reason, if $reason is null. If it
* exists and is non-empty, its contents are treated as the reason for read-only mode.
* Otherwise, the wiki is not read-only.
*/
public function __construct( $reason, ?string $reasonFile = null ) {
$this->reason = $reason;
$this->reasonFile = $reasonFile;
}
/**
* Check whether the wiki is in read-only mode.
*
* @return bool
*/
public function isReadOnly(): bool {
return $this->getReason() !== false;
}
/**
* Get the value of $wgReadOnly or the contents of $wgReadOnlyFile.
*
* @return string|false String when in read-only mode; false otherwise
*/
public function getReason() {
if ( $this->reason !== null ) {
return $this->reason;
}
if ( $this->reasonFile === null ) {
return false;
}
// Try the reason file
if ( is_file( $this->reasonFile ) && filesize( $this->reasonFile ) > 0 ) {
$this->reason = file_get_contents( $this->reasonFile );
}
// No need to try the reason file again
$this->reasonFile = null;
return $this->reason ?? false;
}
/**
* Set the read-only mode, which will apply for the remainder of the
* request or until a service reset.
*
* @param string|false|null $msg
*/
public function setReason( $msg ): void {
$this->reason = $msg;
}
}
|