-
Notifications
You must be signed in to change notification settings - Fork 187
/
Copy pathAppSettings.cs
208 lines (176 loc) · 6.04 KB
/
AppSettings.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
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using CymaticLabs.InfluxDB.Data;
namespace CymaticLabs.InfluxDB.Studio
{
/// <summary>
/// Intermediate object used to import or export application settings.
/// </summary>
public class AppSettings
{
#region Fields
/// <summary>
/// Time format string for 12 hour time.
/// </summary>
public const string TimeFormat12Hour = "hh:mm:ss tt";
/// <summary>
/// Time format string for 24 hour time.
/// </summary>
public const string TimeFormat24Hour = "HH:mm:ss";
/// <summary>
/// Date format string for day-first dates.
/// </summary>
public const string DateFormatDay = "d/MM/yyyy";
/// <summary>
/// Date format string for month-first dates.
/// </summary>
public const string DateFormatMonth = "M/dd/yyyy";
// Whether or not to allow untrusted SSL certificates
bool allowUntrustedSsl = false;
// Internal app time format setting
string timeFormat;
// Internal app date format setting
string dateFormat;
#endregion Fields
#region Properties
/// <summary>
/// Gets or sets the application version the settings are for/from.
/// </summary>
public string Version { get; private set; }
/// <summary>
/// Gets the current time format setting.
/// </summary>
public string TimeFormat
{
get { return timeFormat; }
set
{
if (timeFormat != value)
{
timeFormat = value;
Properties.Settings.Default.TimeFormat = timeFormat;
Properties.Settings.Default.Save(); // update settings file
}
}
}
/// <summary>
/// Gets the current date format setting.
/// </summary>
public string DateFormat
{
get { return dateFormat; }
set
{
if (dateFormat != value)
{
dateFormat = value;
Properties.Settings.Default.DateFormat = dateFormat;
Properties.Settings.Default.Save(); // update settings file
}
}
}
/// <summary>
/// Gets or sets whether or not the application should allow untrusted SSL certificates
/// when communicating to InfluxDB servers.
/// </summary>
public bool AllowUntrustedSsl
{
get { return allowUntrustedSsl; }
set
{
if (allowUntrustedSsl != value)
{
allowUntrustedSsl = value;
Properties.Settings.Default.AllowUntrustedSsl = allowUntrustedSsl;
Properties.Settings.Default.Save(); // update settings file
}
}
}
/// <summary>
/// Gets or sets the available InfluxDB connections.
/// </summary>
public List<InfluxDbConnection> Connections { get; set; }
#endregion Properties
#region Constructors
public AppSettings()
{
// Initialize default settings
timeFormat = TimeFormat12Hour;
dateFormat = DateFormatMonth;
allowUntrustedSsl = false;
Connections = new List<InfluxDbConnection>();
// Set the version string
Version = GetType().Assembly.GetName().Version.ToString();
// Upgrade settings as needed
Properties.Settings.Default.Upgrade();
}
#endregion Constructors
#region Methods
/// <summary>
/// Loads settings from disk.
/// </summary>
public void LoadAll()
{
timeFormat = Properties.Settings.Default.TimeFormat;
dateFormat = Properties.Settings.Default.DateFormat;
allowUntrustedSsl = Properties.Settings.Default.AllowUntrustedSsl;
LoadConnections();
}
/// <summary>
/// Saves all current settings ti disk.
/// </summary>
public void SaveAll()
{
Properties.Settings.Default.TimeFormat = TimeFormat;
Properties.Settings.Default.DateFormat = DateFormat;
Properties.Settings.Default.AllowUntrustedSsl = AllowUntrustedSsl;
SaveConnections();
}
/// <summary>
/// Loads all connections data from disk.
/// </summary>
public void LoadConnections()
{
var json = Properties.Settings.Default.ConnectionsJson;
var loadedConnections = Newtonsoft.Json.JsonConvert.DeserializeObject(json);
Connections = new List<InfluxDbConnection>();
if (loadedConnections is JArray)
{
var array = (JArray)loadedConnections;
foreach (var item in array)
{
try
{
// Convert to connection object
var connection = item.ToObject<InfluxDbConnection>();
if (connection != null) Connections.Add(connection);
}
catch (Exception ex)
{
AppForm.DisplayException(ex);
}
}
}
}
/// <summary>
/// Saves current connection data to disk.
/// </summary>
public void SaveConnections()
{
try
{
// Save to disk
var json = JsonConvert.SerializeObject(Connections);
Properties.Settings.Default.ConnectionsJson = json;
Properties.Settings.Default.Save();
}
catch (Exception ex)
{
AppForm.DisplayException(ex);
}
}
#endregion Methods
}
}