-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.cs
287 lines (215 loc) · 9.65 KB
/
Form1.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
using System;
using System.Collections.Generic;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using OfficeOpenXml;
using System.IO;
namespace HikBRAClient
{
using HikClient.Event;
using HikClient.Utils;
using System.Xml;
public partial class app : Form
{
private Utils.TextBoxWriter _textBoxWriter;
public int QuantErr = 0;
public int QuantImportSucess = 0;
public int QuantImportErr = 0;
public int CountUser = 0;
public app()
{
InitializeComponent();
SelectProtocoll.SelectedValue = 0;
_textBoxWriter = new Utils.TextBoxWriter(BoxConsole);
Console.SetOut(_textBoxWriter);
}
private void groupBox1_Enter(object sender, EventArgs e)
{
}
private void BoxAjuda_Click(object sender, EventArgs e)
{
}
private void groupBox2_Enter(object sender, EventArgs e)
{
}
private void groupBox3_Enter(object sender, EventArgs e)
{
}
private void textBox2_TextChanged(object sender, EventArgs e)
{
}
private void ListarTitulosDasColunas(string filePath, ComboBox select)
{
using (var package = new ExcelPackage(new FileInfo(filePath)))
{
ExcelWorksheet worksheet = package.Workbook.Worksheets[0]; // Selecione a planilha apropriada
int colCount = worksheet.Dimension.Columns;
// Limpe os itens anteriores, se houver
select.Items.Clear();
select.Items.Add("SELECIONE");
// Adicione os títulos das colunas ao ComboBox
for (int col = 1; col <= colCount; col++)
{
var columnHeader = worksheet.Cells[1, col].Value?.ToString();
if (!string.IsNullOrEmpty(columnHeader))
{
select.Items.Add(columnHeader);
}
}
}
}
private void bttnImport_Click(object sender, EventArgs e)
{
openFileDialog_escolheArquivo.Filter = "Arquivos Excel|*.xlsx;*.xls";
openFileDialog_escolheArquivo.Title = "Escolha um arquivo Excel";
if (openFileDialog_escolheArquivo.ShowDialog() == DialogResult.OK)
{
string filePath = openFileDialog_escolheArquivo.FileName;
inputPathFile.Text = filePath;
// Aqui você pode usar o caminho do arquivo (filePath) para processar o arquivo Excel conforme necessário.
// Configure a propriedade LicenseContext
ExcelPackage.LicenseContext = LicenseContext.NonCommercial; // ou LicenseContext.Commercial se você tiver uma licença comercial
try
{
ListarTitulosDasColunas(filePath, SelectId);
ListarTitulosDasColunas(filePath, SelectNome);
ListarTitulosDasColunas(filePath, SelectCard);
ListarTitulosDasColunas(filePath, SelectType);
ListarTitulosDasColunas(filePath, SelectTemplete);
} catch (Exception ex)
{
MessageBox.Show("Erro ao capturar os campos da base de dados.");
QuantErr++;
LabelQuantErr.Text = QuantErr.ToString();
sugestSolution.Text += "# Verificar arquivo utilizado como Base de dados." + Environment.NewLine;
Console.WriteLine(ex);
}
}
}
private string GetValComboBox(ComboBox Combo)
{
// Verifique se há um item selecionado no ComboBox
return Combo.SelectedItem != null ? Combo.SelectedItem.ToString() : "";
}
private void label3_Click(object sender, EventArgs e)
{
}
private void label4_Click(object sender, EventArgs e)
{
}
private void bttnInit_Click(object sender, EventArgs e)
{
BoxConsole.Text = string.Empty;
Device Dispositivo = new Device();
try
{
Dispositivo.struDeviceInfo.strUsername = InputUser.Text;
Dispositivo.struDeviceInfo.strPassword = InputPass.Text;
Dispositivo.struDeviceInfo.strDeviceIP = InputHost.Text;
Dispositivo.struDeviceInfo.strHttpPort = NumericPort.Value.ToString();
Dispositivo.Login();
}
catch (Exception ex)
{
QuantErr++;
LabelQuantErr.Text = QuantErr.ToString();
Console.WriteLine(ex);
sugestSolution.Text += "# Verificar autenticação do leitor: host, porta, user e pass." + Environment.NewLine;
}
try
{
// Get valores campo
string TestId = GetValComboBox(SelectId);
string TestNome = GetValComboBox(SelectNome);
string TestCard = GetValComboBox(SelectCard);
string TestType = GetValComboBox(SelectType);
string TestTemplete = GetValComboBox(SelectTemplete);
// Base de dados
string filePath = openFileDialog_escolheArquivo.FileName;
List<Dictionary<string, object>> dados = Utils.LerDadosDaPlanilha(filePath);
// Contador
int QuantImport = dados.Count == 0 ? 0 : dados.Count - 1;
Progress.Value = 0;
sugestSolution.Text = string.Empty;
if (QuantErr == 0)
foreach (var linha in dados)
{
string Id = "";
string Nome = "";
string UserType = "normal";
string Templete = "1";
foreach (var chaveValor in linha)
{
try
{
string Column = chaveValor.Key;
object Value = chaveValor.Value;
if (Column == TestId) Id = Value.ToString();
if (Column == TestNome) Nome = Value.ToString();
if (Column == UserType) UserType = Value.ToString();
if (Column == TestTemplete) Templete = Value.ToString();
}
catch (Exception ex)
{
QuantImportErr++;
QuantErr++;
LabelQuantErr.Text = QuantErr.ToString();
sugestSolution.Text += "# Verificar Valores em 'Compos a serem preenchidos'." + Environment.NewLine;
sugestSolution.Text += "# Verificar na planilha se algum usuário está um valor nulo no campo selecionado ou com valor inválido." + Environment.NewLine;
Console.WriteLine($"ERR - Não foi possível obter o conteudo das colunas. EXeption: {ex}");
continue;
}
}
bool Usuario = UserManagement.Set(Dispositivo, Id, Nome, "normal", "1");
CountUser++;
if (Usuario)
{
QuantImportSucess++;
LabelQuantImportSucess.Text = QuantImportSucess.ToString();
Console.WriteLine($"# Usuário importado: ID: {Id} | Nome: {Nome}");
}
else
{
QuantErr++;
QuantImportErr++;
LabelQuantErr.Text = QuantErr.ToString();
LabelQuantImportErr.Text = QuantImportErr.ToString();
Console.WriteLine($"Erro ao importar User: ID: {Id} | Nome: {Nome}");
}
float porcentUserCreated = (CountUser / QuantImport) * 100.0f;
Progress.Value = (int)porcentUserCreated;
}
LabelPorcSuccess.Text = (100 - (QuantImportErr / QuantImport) * 100.0f).ToString() + "%";
float porcentConclued = (CountUser / QuantImport) * 100.0f;
Progress.Value = (int)porcentConclued;
} catch (Exception ex)
{
QuantErr++;
LabelQuantErr.Text = QuantErr.ToString();
sugestSolution.Text += "# Verificar Caminho para base de dados e campos a serem preenchidos. (Esse é um tratamento de erro genérico. O erro pode ter ocorrido ao capturar os dados ou ler a resposta da importação do usuário.)" + Environment.NewLine;
Console.WriteLine(ex);
}
MessageBox.Show(QuantErr == 0 ? "Finalizado!" : "Finalizado com erros!");
Progress.Value = 100;
}
private void label6_Click(object sender, EventArgs e)
{
}
private void tabControl2_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void textBox4_TextChanged(object sender, EventArgs e)
{
}
private void LabelQuantErr_Click(object sender, EventArgs e)
{
}
private void label7_Click(object sender, EventArgs e)
{
}
}
}