MediaWiki REL1_32
getReplicaServer.php
Go to the documentation of this file.
1<?php
24require_once __DIR__ . '/Maintenance.php';
25
27
34 public function __construct() {
35 parent::__construct();
36 $this->addOption( "group", "Query group to check specifically" );
37 $this->addDescription( 'Report the hostname of a replica DB server' );
38 }
39
40 public function execute() {
41 global $wgAllDBsAreLocalhost;
42 if ( $wgAllDBsAreLocalhost ) {
43 $host = 'localhost';
44 } elseif ( $this->hasOption( 'group' ) ) {
45 $db = $this->getDB( DB_REPLICA, $this->getOption( 'group' ) );
46 $host = $db->getServer();
47 } else {
48 $lb = MediaWikiServices::getInstance()->getDBLoadBalancer();
49 $i = $lb->getReaderIndex();
50 $host = $lb->getServerName( $i );
51 }
52 $this->output( "$host\n" );
53 }
54}
55
56$maintClass = GetReplicaServer::class;
57require_once RUN_MAINTENANCE_IF_MAIN;
Maintenance script that reports the hostname of a replica DB server.
execute()
Do the actual work.
__construct()
Default constructor.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
output( $out, $channel=null)
Throw some output to the user.
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
hasOption( $name)
Checks to see if a particular option 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.
MediaWikiServices is the service locator for the application scope of MediaWiki.
require_once RUN_MAINTENANCE_IF_MAIN
const DB_REPLICA
Definition defines.php:25