MediaWiki REL1_31
getReplicaServer.php
Go to the documentation of this file.
1<?php
24require_once __DIR__ . '/Maintenance.php';
25
32 public function __construct() {
33 parent::__construct();
34 $this->addOption( "group", "Query group to check specifically" );
35 $this->addDescription( 'Report the hostname of a replica DB server' );
36 }
37
38 public function execute() {
39 global $wgAllDBsAreLocalhost;
40 if ( $wgAllDBsAreLocalhost ) {
41 $host = 'localhost';
42 } elseif ( $this->hasOption( 'group' ) ) {
43 $db = $this->getDB( DB_REPLICA, $this->getOption( 'group' ) );
44 $host = $db->getServer();
45 } else {
46 $lb = wfGetLB();
47 $i = $lb->getReaderIndex();
48 $host = $lb->getServerName( $i );
49 }
50 $this->output( "$host\n" );
51 }
52}
53
54$maintClass = GetSlaveServer::class;
55require_once RUN_MAINTENANCE_IF_MAIN;
wfGetLB( $wiki=false)
Get a load balancer object.
Maintenance script that reports the hostname of a replica DB server.
__construct()
Default constructor.
execute()
Do the actual work.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
hasOption( $name)
Checks to see if a particular param exists.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
require_once RUN_MAINTENANCE_IF_MAIN
const DB_REPLICA
Definition defines.php:25