52 lines
1.7 KiB
C#
52 lines
1.7 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.Globalization;
|
|
using Windows.Foundation.Collections;
|
|
using Windows.Storage;
|
|
using Wino.Core.Domain.Interfaces;
|
|
|
|
namespace Wino.Core.UWP.Services;
|
|
|
|
public class ConfigurationService : IConfigurationService
|
|
{
|
|
public T Get<T>(string key, T defaultValue = default)
|
|
=> GetInternal(key, ApplicationData.Current.LocalSettings.Values, defaultValue);
|
|
|
|
public T GetRoaming<T>(string key, T defaultValue = default)
|
|
=> GetInternal(key, ApplicationData.Current.RoamingSettings.Values, defaultValue);
|
|
|
|
public void Set(string key, object value)
|
|
=> SetInternal(key, value, ApplicationData.Current.LocalSettings.Values);
|
|
|
|
public void SetRoaming(string key, object value)
|
|
=> SetInternal(key, value, ApplicationData.Current.RoamingSettings.Values);
|
|
|
|
private static T GetInternal<T>(string key, IPropertySet collection, T defaultValue = default)
|
|
{
|
|
if (collection.TryGetValue(key, out object value))
|
|
{
|
|
var stringValue = value?.ToString();
|
|
|
|
if (typeof(T).IsEnum)
|
|
return (T)Enum.Parse(typeof(T), stringValue);
|
|
|
|
if ((typeof(T) == typeof(Guid?) || typeof(T) == typeof(Guid)) && Guid.TryParse(stringValue, out Guid guidResult))
|
|
{
|
|
return (T)(object)guidResult;
|
|
}
|
|
|
|
if (typeof(T) == typeof(TimeSpan))
|
|
{
|
|
return (T)(object)TimeSpan.Parse(stringValue);
|
|
}
|
|
|
|
return (T)Convert.ChangeType(stringValue, typeof(T));
|
|
}
|
|
|
|
return defaultValue;
|
|
}
|
|
|
|
private static void SetInternal(string key, object value, IPropertySet collection)
|
|
=> collection[key] = value?.ToString();
|
|
}
|