-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathDbConnBuilderPanel.cs
419 lines (364 loc) · 13.7 KB
/
DbConnBuilderPanel.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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
using Banana.AutoCode.Resources;
using MySqlConnector;
using Oracle.ManagedDataAccess.Client;
using System;
using System.Configuration;
using System.Data;
using System.Data.Common;
using System.Data.SqlClient;
using System.Data.SQLite;
using System.Diagnostics;
using System.Resources;
using System.Text.RegularExpressions;
using System.Windows.Forms;
namespace Banana.AutoCode.Forms
{
public partial class DbConnBuilderPanel : Form
{
const string SqlServer = "Sql Server";
const string MySql = "MySql";
const string Oracle = "Oracle";
const string SQLite = "SQLite";
protected ResourceManager ResourceMgr = new ResourceManager(typeof(DbConnBuilderPanel));
private DbPanel _dbPanel;
protected class ViewModel
{
public string Provider { get; set; }
public string Server { get; set; }
public int Port { get; set; }
public string User { get; set; }
public string Password { get; set; }
public string Name { get; set; }
public string Instance { get; set; }
}
public DbConnBuilderPanel()
{
InitializeComponent();
}
public DbConnBuilderPanel(DbPanel dbPanel) : this()
{
_dbPanel = dbPanel;
}
public DbConnBuilderPanel(DbPanel dbPanel, ConnectionStringSettings connSetting) : this()
{
_dbPanel = dbPanel;
var model = SettingToModel(connSetting);
Init(model);
}
private void Init(ViewModel model)
{
if (model == null)
{
return;
}
cboDataProvider.Text = model.Provider;
txtServer.Text = model.Server;
txtName.Text = model.Name;
txtInstance.Text = model.Instance;
txtServer.Text = model.Server;
txtUser.Text = model.User;
if (model.Port > 0)
{
txtPort.Text = model.Port.ToString();
}
txtPassword.Text = model.Password;
}
private ViewModel SqlServerToModel(ConnectionStringSettings connSetting)
{
var model = new ViewModel();
model.Name = connSetting.Name;
model.Provider = SqlServer;
var builder = new SqlConnectionStringBuilder(connSetting.ConnectionString);
model.Server = builder.DataSource;
model.User = builder.UserID;
model.Password = builder.Password;
model.Instance = builder.InitialCatalog;
var sources = builder.DataSource.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
if (sources != null && sources.Length == 2)
{
var port = 1433;
if (!int.TryParse(sources[1], out port))
{
port = 1433;
}
model.Port = port;
}
return model;
}
private ViewModel MySqlToModel(ConnectionStringSettings connSetting)
{
var model = new ViewModel();
model.Name = connSetting.Name;
model.Provider = MySql;
var builder = new MySqlConnectionStringBuilder(connSetting.ConnectionString);
model.Server = builder.Server;
model.Port = (int)builder.Port;
model.User = builder.UserID;
model.Password = builder.Password;
model.Instance = builder.Database;
return model;
}
private ViewModel SQLiteToModel(ConnectionStringSettings connSetting)
{
var model = new ViewModel();
model.Name = connSetting.Name;
model.Provider = SQLite;
var builder = new SQLiteConnectionStringBuilder(connSetting.ConnectionString);
model.Password = builder.Password;
model.Instance = builder.DataSource;
return model;
}
private ViewModel OracleToModel(ConnectionStringSettings connSetting)
{
var model = new ViewModel();
model.Name = connSetting.Name;
model.Provider = Oracle;
var builder = new OracleConnectionStringBuilder(connSetting.ConnectionString);
var dataSource = builder.DataSource;
model.Server = GetMatchText(dataSource, @"\(HOST=?(.+?)\)");
var port = 1521;
var portText = GetMatchText(dataSource, @"\(PORT=?(.+?)\)");
if (! int.TryParse(portText, out port))
{
port = 1521;
}
model.Port = port;
model.Instance = GetMatchText(dataSource, @"\(SERVICE_NAME=?(.+?)\)");
model.User = builder.UserID;
model.Password = builder.Password;
return model;
}
private string GetMatchText(string input, string pattern)
{
var match = Regex.Match(input, pattern);
if (match.Success)
{
return match.Groups[1].Value;
}
return string.Empty;
}
private ViewModel SettingToModel(ConnectionStringSettings connSetting)
{
if (connSetting == null)
{
return null;
}
switch (connSetting.ProviderName)
{
case "System.Data.SqlClient":
return SqlServerToModel(connSetting);
case "System.Data.SQLite":
return SQLiteToModel(connSetting);
case "Oracle.ManagedDataAccess.Client":
return OracleToModel(connSetting);
case "MySql.Data.MySqlClient":
case "MySqlConnector":
return MySqlToModel(connSetting);
default:
return null;
}
}
private string GetSqlServerConnectionString(ViewModel model)
{
var builder = new SqlConnectionStringBuilder();
builder.InitialCatalog = model.Instance;
builder.DataSource = model.Server;
builder.UserID = model.User;
builder.Password = model.Password;
if (model.Port != 0 && model.Port != 1433)
{
builder.DataSource += "," + model.Port;
}
return builder.ToString();
}
private string GetMySqlConnectionString(ViewModel model)
{
if (model.Port == 0)
{
model.Port = 3306;
}
var builder = new MySqlConnectionStringBuilder();
builder.Server = model.Server;
builder.Port = (uint)model.Port;
builder.Database = model.Instance;
builder.UserID = model.User;
builder.Password = model.Password;
builder.SslMode = MySqlSslMode.Disabled;
builder.AllowPublicKeyRetrieval = true;
builder.AllowUserVariables = true;
return builder.ToString();
}
private string GetOracleConnectionString(ViewModel model)
{
if (model.Port == 0)
{
model.Port = 1521;
}
var builder = new OracleConnectionStringBuilder();
builder.DataSource = $"(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST={model.Server})(PORT={model.Port}))(CONNECT_DATA=(SERVICE_NAME={model.Instance})))";
builder.UserID = model.User;
builder.Password = model.Password;
return builder.ToString();
}
private string GetSQLiteConnectionString(ViewModel model)
{
var builder = new SQLiteConnectionStringBuilder();
builder.DataSource = model.Instance;
if (! string.IsNullOrWhiteSpace(model.Password))
{
builder.Password = model.Password;
}
return builder.ToString();
}
private ConnectionStringSettings BuildSettings()
{
ConnectionStringSettings settings = new ConnectionStringSettings();
var model = GetModel();
settings.Name = model.Name;
switch (model.Provider)
{
case SqlServer:
settings.ConnectionString = GetSqlServerConnectionString(model);
settings.ProviderName = "System.Data.SqlClient";
break;
case MySql:
settings.ConnectionString = GetMySqlConnectionString(model);
settings.ProviderName = "MySqlConnector";
break;
case Oracle:
settings.ConnectionString = GetOracleConnectionString(model);
settings.ProviderName = "Oracle.ManagedDataAccess.Client";
break;
case SQLite:
settings.ConnectionString = GetSQLiteConnectionString(model);
settings.ProviderName = "System.Data.SQLite";
break;
default:
break;
}
return settings;
}
private ViewModel GetModel()
{
var model = new ViewModel();
model.Provider = cboDataProvider.Text;
model.Server = txtServer.Text;
model.User = txtUser.Text;
model.Password = txtPassword.Text;
var port = 0;
int.TryParse(txtPort.Text, out port);
model.Port = port;
model.Name = txtName.Text;
model.Instance = txtInstance.Text;
if (string.IsNullOrWhiteSpace(model.Name))
{
model.Name = model.Provider + ":" + model.Instance;
}
return model;
}
private void RefreshConnStrings()
{
if (_dbPanel == null)
{
return;
}
_dbPanel.InitConnStrings();
}
protected void AddOrUpdateConnectionStrings(ConnectionStringSettings settings)
{
var title = ResourceMgr.GetString("TestConnTitle") ?? "Test Result";
var success = false;
var msg = string.Empty;
try
{
var configFile = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
var collection = configFile.ConnectionStrings.ConnectionStrings;
if (collection[settings.Name] == null)
{
collection.Add(settings);
}
else
{
collection[settings.Name].ConnectionString = settings.ConnectionString;
collection[settings.Name].ProviderName = settings.ProviderName;
}
configFile.Save(ConfigurationSaveMode.Modified);
ConfigurationManager.RefreshSection(configFile.ConnectionStrings.SectionInformation.Name);
success = true;
RefreshConnStrings();
msg = String.Format(Localization.Save_ConnectionString_Success, settings.Name);
Trace.WriteLine(msg);
}
catch (ConfigurationErrorsException ex)
{
success = false;
msg = Localization.Save_ConnectionString_Exception + ex.Message;
Trace.WriteLine(Localization.Save_ConnectionString_Exception + ex);
}
var icon = success ? MessageBoxIcon.Information : MessageBoxIcon.Warning;
MessageBox.Show(msg, title, MessageBoxButtons.OK, icon);
}
private void btnTest_Click(object sender, EventArgs e)
{
var settings = BuildSettings();
if (settings == null)
{
return;
}
var success = false;
try
{
var factory = DbProviderFactories.GetFactory(settings.ProviderName);
using (var conn = factory.CreateConnection())
{
conn.ConnectionString = settings.ConnectionString;
// Trace.WriteLine(conn.ConnectionString);
conn.Open();
success = conn.State == ConnectionState.Open;
}
}
catch (Exception ex)
{
Trace.WriteLine(ex);
}
var title = ResourceMgr.GetString("TestConnTitle") ?? "Test Result";
var msg = success ? Localization.Test_Connection_Success : Localization.Test_Connection_Fail;
var icon = success ? MessageBoxIcon.Information : MessageBoxIcon.Warning;
MessageBox.Show(msg, title, MessageBoxButtons.OK, icon);
}
private void btnSave_Click(object sender, EventArgs e)
{
var settings = BuildSettings();
if (settings == null)
{
return;
}
AddOrUpdateConnectionStrings(settings);
}
private void btnCancel_Click(object sender, EventArgs e)
{
this.Close();
}
private void cboDataProvider_SelectedIndexChanged(object sender, EventArgs e)
{
var provider = cboDataProvider.Text;
switch (provider)
{
case SqlServer:
txtPort.Text = "1433";
break;
case MySql:
txtPort.Text = "3306";
break;
case Oracle:
txtPort.Text = "1521";
break;
case SQLite:
txtPort.Text = string.Empty;
break;
default:
break;
}
}
}
}