forked from sll552/DiscordBee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Settings.cs
215 lines (173 loc) · 5.59 KB
/
Settings.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
using System;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.Serialization;
using System.Xml;
namespace MusicBeePlugin
{
[DataContract]
public class Settings
{
private string FilePath { get; set; }
public bool IsDirty { get; private set; } = false;
// Don't serialize properties so only user set changes are serialized and not default values
#region Settings
[DataMember] private string _seperator;
public string Seperator
{
get => _seperator == null ? "./-_" : _seperator;
set => setIfChanged("_seperator", value);
}
[DataMember] private string _largeImageText;
public string LargeImageText
{
get => _largeImageText == null ? "MusicBee" : _largeImageText;
set => setIfChanged("_largeImageText", value);
}
[DataMember] private string _smallImageText;
public string SmallImageText
{
get => _smallImageText == null ? "[Volume]%" : _smallImageText;
set => setIfChanged("_smallImageText", value);
}
[DataMember] private string _presenceState;
public string PresenceState
{
get => _presenceState == null ? "[TrackTitle]" : _presenceState;
set => setIfChanged("_presenceState", value);
}
[DataMember] private string _presenceDetails;
public string PresenceDetails
{
get => _presenceDetails == null ? "[Artist] - [Album]" : _presenceDetails;
set => setIfChanged("_presenceDetails", value);
}
[DataMember] private string _presenceTrackCnt;
public string PresenceTrackCnt
{
get => _presenceTrackCnt == null ? "[TrackCount]" : _presenceTrackCnt;
set => setIfChanged("_presenceTrackCnt", value);
}
[DataMember] private string _presenceTrackNo;
public string PresenceTrackNo
{
get => _presenceTrackNo == null ? "[TrackNo]" : _presenceTrackNo;
set => setIfChanged("_presenceTrackNo", value);
}
[DataMember] private bool? _updatePresenceWhenStopped;
public bool UpdatePresenceWhenStopped
{
get => !_updatePresenceWhenStopped.HasValue || _updatePresenceWhenStopped.Value;
set => setIfChanged("_updatePresenceWhenStopped", value);
}
[DataMember] private bool? _showRemainingTime;
public bool ShowRemainingTime
{
get => _showRemainingTime.HasValue && _showRemainingTime.Value;
set => setIfChanged("_showRemainingTime", value);
}
[DataMember] private bool? _textOnly;
public bool TextOnly
{
get => _textOnly.HasValue && _textOnly.Value;
set => setIfChanged("_textOnly", value);
}
#endregion
public static Settings GetInstance(string filePath)
{
Settings newSettings;
try
{
newSettings = Load(filePath);
}
catch (Exception e) when (e is IOException || e is XmlException || e is InvalidOperationException)
{
newSettings = new Settings();
}
newSettings.FilePath = filePath;
return newSettings;
}
private void setIfChanged<T>(string fieldName, T value)
{
FieldInfo target = GetType().GetField(fieldName, BindingFlags.NonPublic | BindingFlags.Instance);
if (target != null)
{
PropertyInfo targetProp = GetType().GetProperty(getPropertyNameForField(target.Name), BindingFlags.Instance | BindingFlags.Public);
if (targetProp != null)
{
if (!targetProp.GetValue(this, null).Equals(value))
{
target.SetValue(this, value);
IsDirty = true;
}
}
}
}
private string getPropertyNameForField(string field)
{
if (field.StartsWith("_"))
{
string tmp = field.Remove(0, 1);
return tmp.First().ToString().ToUpper() + tmp.Substring(1);
}
return null;
}
public void Save()
{
if (!IsDirty) return;
if (Path.GetDirectoryName(FilePath) != null && !Directory.Exists(Path.GetDirectoryName(FilePath)))
{
Directory.CreateDirectory(Path.GetDirectoryName(FilePath) ?? throw new InvalidOperationException());
}
using (var writer = XmlWriter.Create(FilePath))
{
var serializer = new DataContractSerializer(GetType());
serializer.WriteObject(writer, this);
writer.Flush();
}
}
private static Settings Load(string filePath)
{
using (var stream = File.OpenRead(filePath))
{
var serializer = new DataContractSerializer(typeof(Settings));
return serializer.ReadObject(stream) as Settings;
}
}
public void Delete()
{
if (File.Exists(FilePath))
{
File.Delete(FilePath);
}
if (Path.GetDirectoryName(FilePath) != null && Directory.Exists(Path.GetDirectoryName(FilePath)))
{
Directory.Delete(Path.GetDirectoryName(FilePath) ?? throw new InvalidOperationException());
}
Clear();
}
public void Clear()
{
var properties = GetType().GetProperties();
foreach (var propertyInfo in properties)
{
if (propertyInfo.PropertyType == typeof(string) && propertyInfo.Name != "FilePath")
{
propertyInfo.SetValue(this, null, null);
}
}
// field is used for boolean settings because nullable is used internally and property would be non-nullable
var fields = GetType().GetFields(BindingFlags.NonPublic | BindingFlags.Instance);
foreach (var fieldInfo in fields)
{
if (!fieldInfo.Name.StartsWith("_")) continue;
if (fieldInfo.FieldType == typeof(bool?))
{
fieldInfo.SetValue(this, null);
}
}
IsDirty = false;
}
}
}