lbFactory = $lbFactory; $this->centralDBManager = $centralDBManager; } /** * @inheritDoc */ public function run( array $localFilters, array $globalFilters, string $group ): void { // Run in a DeferredUpdate to avoid primary database queries on raw/view requests (T274455) DeferredUpdates::addCallableUpdate( function () use ( $localFilters, $globalFilters ) { if ( $localFilters ) { $this->updateHitCounts( $this->lbFactory->getPrimaryDatabase(), $localFilters ); } if ( $globalFilters ) { $fdb = $this->centralDBManager->getConnection( DB_PRIMARY ); $this->updateHitCounts( $fdb, $globalFilters ); } } ); } /** * @param IDatabase $dbw * @param array $loggedFilters */ private function updateHitCounts( IDatabase $dbw, array $loggedFilters ): void { $dbw->newUpdateQueryBuilder() ->update( 'abuse_filter' ) ->set( [ 'af_hit_count=af_hit_count+1' ] ) ->where( [ 'af_id' => $loggedFilters ] ) ->caller( __METHOD__ ) ->execute(); } }