Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 26 |
DumpThresholds | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
30 | |
0.00% |
0 / 21 |
__construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 4 |
|||
execute | |
0.00% |
0 / 1 |
6 | |
0.00% |
0 / 9 |
|||
getModels | |
0.00% |
0 / 1 |
6 | |
0.00% |
0 / 8 |
<?php | |
namespace ORES\Maintenance; | |
use Maintenance; | |
use ORES\Services\ORESServices; | |
require_once getenv( 'MW_INSTALL_PATH' ) !== false | |
? getenv( 'MW_INSTALL_PATH' ) . '/maintenance/Maintenance.php' | |
: __DIR__ . '/../../../maintenance/Maintenance.php'; | |
/** | |
* @ingroup Maintenance | |
*/ | |
class DumpThresholds extends Maintenance { | |
public function __construct() { | |
parent::__construct(); | |
$this->requireExtension( 'ORES' ); | |
$this->addDescription( 'Display filtering levels and thresholds for enabled models.' ); | |
} | |
public function execute() { | |
$this->output( "Starting..." ); | |
$models = $this->getModels(); | |
$stats = ORESServices::getThresholdLookup(); | |
foreach ( $models as $name => $info ) { | |
$this->output( "\n$name\n" ); | |
$this->output( "\n" . print_r( $stats->getThresholds( $name, false ), true ) . "\n" ); | |
} | |
$this->output( "done.\n" ); | |
} | |
/** | |
* Return a list of models available for this wiki. | |
* @return array | |
* @throws \RuntimeException | |
*/ | |
protected function getModels() { | |
$timestamp = \wfTimestampNow(); | |
// Bypass the varnish cache | |
$modelData = ORESServices::getORESService()->request( [ $timestamp => true ] ); | |
if ( empty( $modelData['models'] ) ) { | |
throw new \RuntimeException( 'Bad response from ORES when requesting models: ' | |
. json_encode( $modelData ) ); | |
} | |
return $modelData['models']; | |
} | |
} | |
$maintClass = DumpThresholds::class; | |
require_once RUN_MAINTENANCE_IF_MAIN; |