lbFactory = $lbFactory; $this->user = $user; $this->page = $page; $this->revisionRecord = $revisionRecord; $this->updater = $updater; $this->recursive = !empty( $options['recursive'] ); $this->freshness = $options['freshness'] ?? false; } public function getTransactionRoundRequirement() { return self::TRX_ROUND_ABSENT; } public function doUpdate() { $updates = $this->updater->getSecondaryDataUpdates( $this->recursive ); foreach ( $updates as $update ) { if ( $update instanceof LinksUpdate ) { $update->setRevisionRecord( $this->revisionRecord ); $update->setTriggeringUser( $this->user ); } if ( $update instanceof DataUpdate ) { $update->setCause( $this->causeAction, $this->causeAgent ); } } // T221577, T248003: flush any transaction; each update needs outer transaction scope // and the code above may have implicitly started one. $this->lbFactory->commitPrimaryChanges( __METHOD__ ); $e = null; foreach ( $updates as $update ) { try { DeferredUpdates::attemptUpdate( $update ); } catch ( Exception $e ) { // Try as many updates as possible on the first pass MWExceptionHandler::rollbackPrimaryChangesAndLog( $e ); } } if ( $e instanceof Exception ) { throw $e; // trigger RefreshLinksJob enqueue via getAsJobSpecification() } } public function getAsJobSpecification() { return [ 'domain' => $this->lbFactory->getLocalDomainID(), 'job' => new JobSpecification( 'refreshLinksPrioritized', [ 'namespace' => $this->page->getNamespace(), 'title' => $this->page->getDBkey(), // Ensure fresh data are used, for normal data reuse the parser cache if it was saved 'rootJobTimestamp' => $this->freshness ?: $this->revisionRecord->getTimestamp(), 'useRecursiveLinksUpdate' => $this->recursive, 'triggeringUser' => [ 'userId' => $this->user->getId(), 'userName' => $this->user->getName() ], 'triggeringRevisionId' => $this->revisionRecord->getId(), 'causeAction' => $this->getCauseAction(), 'causeAgent' => $this->getCauseAgent() ], [ 'removeDuplicates' => true ] ) ]; } } /** @deprecated class alias since 1.42 */ class_alias( RefreshSecondaryDataUpdate::class, 'RefreshSecondaryDataUpdate' );