MediaWiki REL1_33
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() {
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;
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
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