2020-04-08 00:19:00 -07:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
|
|
|
|
|
|
using System;
|
2020-03-24 19:55:02 -07:00
|
|
|
|
using System.IO;
|
|
|
|
|
|
using System.Text.Json;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Lib
|
|
|
|
|
|
{
|
|
|
|
|
|
public static class SettingsUtils
|
|
|
|
|
|
{
|
2020-04-17 15:25:08 -07:00
|
|
|
|
private const string DefaultFileName = "settings.json";
|
2020-04-20 06:03:26 -07:00
|
|
|
|
private const string DefaultModuleName = "";
|
2020-04-17 15:25:08 -07:00
|
|
|
|
|
2020-04-03 19:02:38 -07:00
|
|
|
|
public static bool SettingsFolderExists(string powertoy)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Directory.Exists(Path.Combine(LocalApplicationDataFolder(), $"Microsoft\\PowerToys\\{powertoy}"));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static void CreateSettingsFolder(string powertoy)
|
|
|
|
|
|
{
|
|
|
|
|
|
Directory.CreateDirectory(Path.Combine(LocalApplicationDataFolder(), $"Microsoft\\PowerToys\\{powertoy}"));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Get path to the json settings file.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns>string path.</returns>
|
2020-04-17 15:25:08 -07:00
|
|
|
|
public static string GetSettingsPath(string powertoy, string fileName = DefaultFileName)
|
2020-03-24 19:55:02 -07:00
|
|
|
|
{
|
2020-04-07 10:19:14 -07:00
|
|
|
|
if (string.IsNullOrWhiteSpace(powertoy))
|
2020-03-24 19:55:02 -07:00
|
|
|
|
{
|
|
|
|
|
|
return Path.Combine(
|
2020-04-03 19:02:38 -07:00
|
|
|
|
LocalApplicationDataFolder(),
|
2020-04-17 15:25:08 -07:00
|
|
|
|
$"Microsoft\\PowerToys\\{fileName}");
|
2020-03-24 19:55:02 -07:00
|
|
|
|
}
|
2020-04-07 10:19:14 -07:00
|
|
|
|
|
2020-03-24 19:55:02 -07:00
|
|
|
|
return Path.Combine(
|
2020-04-03 19:02:38 -07:00
|
|
|
|
LocalApplicationDataFolder(),
|
2020-04-17 15:25:08 -07:00
|
|
|
|
$"Microsoft\\PowerToys\\{powertoy}\\{fileName}");
|
2020-03-24 19:55:02 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-04-22 14:55:45 -07:00
|
|
|
|
public static bool SettingsExists(string powertoy = DefaultModuleName, string fileName = DefaultFileName)
|
2020-04-03 19:02:38 -07:00
|
|
|
|
{
|
2020-04-17 15:25:08 -07:00
|
|
|
|
return File.Exists(GetSettingsPath(powertoy, fileName));
|
2020-04-03 19:02:38 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Get a Deserialized object of the json settings string.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns>Deserialized json settings object.</returns>
|
2020-04-20 06:03:26 -07:00
|
|
|
|
public static T GetSettings<T>(string powertoy = DefaultModuleName, string fileName = DefaultFileName)
|
2020-03-24 19:55:02 -07:00
|
|
|
|
{
|
2020-04-17 15:25:08 -07:00
|
|
|
|
var jsonSettingsString = File.ReadAllText(GetSettingsPath(powertoy, fileName));
|
2020-03-24 19:55:02 -07:00
|
|
|
|
return JsonSerializer.Deserialize<T>(jsonSettingsString);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-04-07 10:19:14 -07:00
|
|
|
|
// Save settings to a json file.
|
2020-04-20 06:03:26 -07:00
|
|
|
|
public static void SaveSettings(string jsonSettings, string powertoy = DefaultModuleName, string fileName = DefaultFileName)
|
2020-03-24 19:55:02 -07:00
|
|
|
|
{
|
2020-04-17 15:25:08 -07:00
|
|
|
|
try
|
2020-04-03 19:02:38 -07:00
|
|
|
|
{
|
2020-04-17 15:25:08 -07:00
|
|
|
|
if (jsonSettings != null)
|
2020-04-03 19:02:38 -07:00
|
|
|
|
{
|
2020-04-17 15:25:08 -07:00
|
|
|
|
if (!SettingsFolderExists(powertoy))
|
|
|
|
|
|
{
|
|
|
|
|
|
CreateSettingsFolder(powertoy);
|
|
|
|
|
|
}
|
2020-04-08 00:19:00 -07:00
|
|
|
|
|
2020-04-17 15:25:08 -07:00
|
|
|
|
File.WriteAllText(GetSettingsPath(powertoy, fileName), jsonSettings);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
catch
|
|
|
|
|
|
{
|
2020-04-03 19:02:38 -07:00
|
|
|
|
}
|
2020-03-24 19:55:02 -07:00
|
|
|
|
}
|
2020-04-08 00:19:00 -07:00
|
|
|
|
|
2020-04-17 15:25:08 -07:00
|
|
|
|
public static string LocalApplicationDataFolder()
|
2020-04-08 00:19:00 -07:00
|
|
|
|
{
|
|
|
|
|
|
return Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
|
|
|
|
|
|
}
|
2020-03-24 19:55:02 -07:00
|
|
|
|
}
|
2020-05-05 14:28:44 -07:00
|
|
|
|
}
|