mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
[PM-3708] Allow local overrides for flag values (#3243)
* Allow local overrides for flag values * Rename helper method
This commit is contained in:
parent
c271e2dae2
commit
d0cf8204c7
@ -46,4 +46,13 @@ public static class FeatureFlagKeys
|
|||||||
.Select(x => (string)x.GetRawConstantValue())
|
.Select(x => (string)x.GetRawConstantValue())
|
||||||
.ToList();
|
.ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static Dictionary<string, string> GetLocalOverrideFlagValues()
|
||||||
|
{
|
||||||
|
// place overriding values when needed locally (offline), or return null
|
||||||
|
return new Dictionary<string, string>()
|
||||||
|
{
|
||||||
|
{ TrustedDeviceEncryption, "true" }
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -29,24 +29,12 @@ public class LaunchDarklyFeatureService : IFeatureService, IDisposable
|
|||||||
// support configuration directly from settings
|
// support configuration directly from settings
|
||||||
else if (globalSettings.LaunchDarkly?.FlagValues?.Any() is true)
|
else if (globalSettings.LaunchDarkly?.FlagValues?.Any() is true)
|
||||||
{
|
{
|
||||||
var source = TestData.DataSource();
|
ldConfig.DataSource(BuildDataSource(globalSettings.LaunchDarkly.FlagValues));
|
||||||
foreach (var kvp in globalSettings.LaunchDarkly.FlagValues)
|
}
|
||||||
{
|
// support local overrides
|
||||||
if (bool.TryParse(kvp.Value, out bool boolValue))
|
else if (FeatureFlagKeys.GetLocalOverrideFlagValues()?.Any() is true)
|
||||||
{
|
{
|
||||||
source.Update(source.Flag(kvp.Key).ValueForAll(LaunchDarkly.Sdk.LdValue.Of(boolValue)));
|
ldConfig.DataSource(BuildDataSource(FeatureFlagKeys.GetLocalOverrideFlagValues()));
|
||||||
}
|
|
||||||
else if (int.TryParse(kvp.Value, out int intValue))
|
|
||||||
{
|
|
||||||
source.Update(source.Flag(kvp.Key).ValueForAll(LaunchDarkly.Sdk.LdValue.Of(intValue)));
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
source.Update(source.Flag(kvp.Key).ValueForAll(LaunchDarkly.Sdk.LdValue.Of(kvp.Value)));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ldConfig.DataSource(source);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -187,4 +175,26 @@ public class LaunchDarklyFeatureService : IFeatureService, IDisposable
|
|||||||
|
|
||||||
return builder.Build();
|
return builder.Build();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private TestData BuildDataSource(Dictionary<string, string> values)
|
||||||
|
{
|
||||||
|
var source = TestData.DataSource();
|
||||||
|
foreach (var kvp in values)
|
||||||
|
{
|
||||||
|
if (bool.TryParse(kvp.Value, out bool boolValue))
|
||||||
|
{
|
||||||
|
source.Update(source.Flag(kvp.Key).ValueForAll(LaunchDarkly.Sdk.LdValue.Of(boolValue)));
|
||||||
|
}
|
||||||
|
else if (int.TryParse(kvp.Value, out int intValue))
|
||||||
|
{
|
||||||
|
source.Update(source.Flag(kvp.Key).ValueForAll(LaunchDarkly.Sdk.LdValue.Of(intValue)));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
source.Update(source.Flag(kvp.Key).ValueForAll(LaunchDarkly.Sdk.LdValue.Of(kvp.Value)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return source;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -20,14 +20,6 @@ public class LaunchDarklyFeatureServiceTests
|
|||||||
.Create();
|
.Create();
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
|
||||||
public void Offline_WhenSelfHost()
|
|
||||||
{
|
|
||||||
var sutProvider = GetSutProvider(new Core.Settings.GlobalSettings() { SelfHosted = true });
|
|
||||||
|
|
||||||
Assert.False(sutProvider.Sut.IsOnline());
|
|
||||||
}
|
|
||||||
|
|
||||||
[Theory, BitAutoData]
|
[Theory, BitAutoData]
|
||||||
public void DefaultFeatureValue_WhenSelfHost(string key)
|
public void DefaultFeatureValue_WhenSelfHost(string key)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user