getUser(); // Load style modules if the tools can be available for the title // as this means the DOM may have been modified in the parser cache. if ( HookUtils::isAvailableForTitle( $output->getTitle() ) ) { $output->addModuleStyles( [ 'ext.discussionTools.init.styles' ] ); } // Load modules if any DT feature is enabled for this user if ( HookUtils::isFeatureEnabledForOutput( $output ) ) { $output->addModules( [ 'ext.discussionTools.init' ] ); $enabledVars = []; foreach ( HookUtils::FEATURES as $feature ) { $enabledVars[$feature] = HookUtils::isFeatureEnabledForOutput( $output, $feature ); } $output->addJsConfigVars( 'wgDiscussionToolsFeaturesEnabled', $enabledVars ); $services = MediaWikiServices::getInstance(); $optionsLookup = $services->getUserOptionsLookup(); $req = $output->getRequest(); $editor = $optionsLookup->getOption( $user, 'discussiontools-editmode' ); // User has no preferred editor yet // If the user has a preferred editor, this will be evaluated in the client if ( !$editor ) { // Check which editor we would use for articles // VE pref is 'visualeditor'/'wikitext'. Here we describe the mode, // not the editor, so 'visual'/'source' $editor = VisualEditorHooks::getPreferredEditor( $user, $req ) === 'visualeditor' ? 'visual' : 'source'; $output->addJsConfigVars( 'wgDiscussionToolsFallbackEditMode', $editor ); } $dtConfig = $services->getConfigFactory()->makeConfig( 'discussiontools' ); $abstate = $dtConfig->get( 'DiscussionToolsABTest' ) ? $optionsLookup->getOption( $user, 'discussiontools-abtest' ) : false; if ( $abstate ) { $output->addJsConfigVars( 'wgDiscussionToolsABTestBucket', $abstate ); } } } /** * OutputPageBeforeHTML hook handler * @see https://www.mediawiki.org/wiki/Manual:Hooks/OutputPageBeforeHTML * * @param OutputPage $output OutputPage object that corresponds to the page * @param string &$text Text that will be displayed, in HTML * @return bool|void This hook must not abort, it must return true or null. */ public function onOutputPageBeforeHTML( $output, &$text ) { $lang = $output->getLanguage(); // Check after the parser cache if reply links need to be added for // non-cacheable reasons i.e. query string or cookie // The addReplyLinks method is responsible for ensuring that // reply links aren't added twice. foreach ( CommentFormatter::USE_WITH_FEATURES as $feature ) { if ( HookUtils::isFeatureEnabledForOutput( $output, $feature ) ) { CommentFormatter::addReplyLinks( $text, $lang ); break; } } foreach ( HookUtils::FEATURES as $feature ) { // Add a CSS class for each enabled feature if ( HookUtils::isFeatureEnabledForOutput( $output, $feature ) ) { $output->addBodyClasses( "dt-$feature-enabled" ); } } return true; } }