mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-24 08:23:52 +00:00
Merge "Ignore the beta feature setting when enrolling in the A/B test"
This commit is contained in:
commit
6b31c89159
|
@ -99,20 +99,21 @@ class HookUtils {
|
|||
}
|
||||
}
|
||||
|
||||
// Being in the "test" group for this feature means it's enabled. This
|
||||
// overrules the wiki's beta feature setting. (However, a user who's
|
||||
// in the control group can still bypass this and enable the feature
|
||||
// normally.)
|
||||
$abtest = static::determineUserABTestBucket( $user, $feature );
|
||||
if ( $abtest === 'test' ) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// No feature-specific override found.
|
||||
|
||||
if ( $dtConfig->get( 'DiscussionToolsBeta' ) ) {
|
||||
$betaenabled = $optionsLookup->getOption( $user, 'discussiontools-betaenable', -1 );
|
||||
if ( $betaenabled !== -1 ) {
|
||||
// betaenable doesn't have a default value, so we can check
|
||||
// for it being unset like this. If the user has explicitly
|
||||
// enabled or disabled it, we should immediately return that.
|
||||
$betaenabled = $optionsLookup->getOption( $user, 'discussiontools-betaenable', 0 );
|
||||
return (bool)$betaenabled;
|
||||
}
|
||||
// Otherwise, being in the "test" group for this feature means
|
||||
// it's effectively beta-enabled.
|
||||
return static::determineUserABTestBucket( $user, $feature ) === 'test';
|
||||
}
|
||||
|
||||
// Assume that if BetaFeature is turned off, or user has it enabled, that
|
||||
// some features are available.
|
||||
|
|
Loading…
Reference in a new issue