ApiSettings.cs
8.59 KB
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
using DirectShowLib;
using MoyaAdminLib;
using MoyaAdminUI.MoyaAPI;
using MoyaSignup.Dataclasses;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.IO.Ports;
using System.Linq;
using System.Management;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
//using Touchless.Vision.Camera;
namespace MoyaSignup
{
public partial class ApiSettings : Form
{
public ApiSettings()
{
InitializeComponent();
}
private List<DsDeviceContainer> webCams = new List<DsDeviceContainer>();
public List<DsDeviceContainer> Webcams
{
get { return webCams; }
set { webCams = value; }
}
private void SaveButton_Click(object sender, EventArgs e)
{
ApiCredential apiCredential = null;
if (resetApiTokenCheckBox.Checked)
{
try
{
apiCredential = RestClient.GetApiCredential(usernameTextBox.Text, pwTextBox.Text, ApiKeyTextBox.Text, apiURLTextBox.Text);
}
catch (Exception ex)
{
MessageBox.Show("Failed to get api credentials: " + ex.Message);
}
if (apiCredential != null)
{
Properties.Settings.Default.ApiURL = apiURLTextBox.Text;
Properties.Settings.Default.ApiApplicationKey = ApiKeyTextBox.Text;
Properties.Settings.Default.ApiUser = apiCredential.authname;
Properties.Settings.Default.ApiPass = apiCredential.secret;
Properties.Settings.Default.ApiTokenSet = true;
}
}
if (usbRadioButton.Checked)
{
if (printerNameComboBox.SelectedItem != null)
{
Properties.Settings.Default.PrinterTypeSelected = 0;
Properties.Settings.Default.ReceiptPrinterName = (string)printerNameComboBox.SelectedItem;
}
}
else
{
if (printerModelComboBox.SelectedItem != null)
{
Properties.Settings.Default.PrinterTypeSelected = 1;
Properties.Settings.Default.ThermoPrinter = (int)printerModelComboBox.SelectedItem;
}
if (printerPortComboBox.SelectedItem != null)
{
string comPort = (string)this.printerPortComboBox.SelectedItem;
Debug.WriteLine("[ApiSettings] Selected modemport is '" + comPort + "'");
foreach (string p in SerialPort.GetPortNames())
{
if (comPort == p || comPort.Contains("(" + p + ")"))
{
Debug.WriteLine("[ApiSettings] Setting modemport to '" + p + "'");
Properties.Settings.Default.printerPort = p;
break;
}
}
}
}
foreach(DsDeviceContainer webCamContainer in webcamsCheckedListBox.CheckedItems)
{
webCams.Add(webCamContainer);
}
Properties.Settings.Default.Save();
RestClient.ApiApplicationKey = Properties.Settings.Default.ApiApplicationKey;
RestClient.ApiPass = Properties.Settings.Default.ApiPass;
RestClient.ApiUser = Properties.Settings.Default.ApiUser;
RestClient.ApiURL = Properties.Settings.Default.ApiURL;
this.DialogResult = System.Windows.Forms.DialogResult.OK;
}
private void ApiSettings_Load(object sender, EventArgs e)
{
if(Properties.Settings.Default.ApiTokenSet)
{
resetApiTokenCheckBox.Checked = false;
} else
{
resetApiTokenCheckBox.Checked = true;
}
apiURLTextBox.Text = Properties.Settings.Default.ApiURL;
ApiKeyTextBox.Text = Properties.Settings.Default.ApiApplicationKey;
//usernameTextBox.Text = Properties.Settings.Default.ApiUser;
//pwTextBox.Text = Properties.Settings.Default.ApiPass;
printerModelComboBox.Items.Add(ThermoPrinterLibrary.ThermoPrinter.Models.IDP3210);
printerModelComboBox.Items.Add(ThermoPrinterLibrary.ThermoPrinter.Models.TMT188II);
printerPortComboBox.Items.Clear();
foreach(string printer in System.Drawing.Printing.PrinterSettings.InstalledPrinters)
{
printerNameComboBox.Items.Add(printer);
if (printer == Properties.Settings.Default.ReceiptPrinterName)
printerNameComboBox.SelectedItem = printer;
}
if (Properties.Settings.Default.PrinterTypeSelected == 0)
usbRadioButton.Checked = true;
else if (Properties.Settings.Default.PrinterTypeSelected == 1)
serialRadioButton.Checked = true;
try
{
using (var searcher = new ManagementObjectSearcher("root\\CIMV2", "SELECT * FROM Win32_PnPEntity"))
{
string[] portnames = SerialPort.GetPortNames();
foreach (ManagementObject queryObj in searcher.Get())
{
if (queryObj["Caption"] != null)
{
string port = queryObj["Caption"].ToString();
if (port.Contains("(COM"))
{
printerPortComboBox.Items.Add(port);
}
}
}
}
}
catch (Exception ex)
{
Debug.WriteLine("Failed to get serial ports. Trying with the old way..");
if (printerPortComboBox.Items.Count == 0)
{
foreach (string p in SerialPort.GetPortNames())
{
SerialPort port = new SerialPort(p);
try
{
port.Open();
port.Close();
}
catch
{
continue;
}
printerPortComboBox.Items.Add(p);
}
}
}
DsDevice[] captureDevices = DsDevice.GetDevicesOfCat(FilterCategory.VideoInputDevice);
int i = 0;
for (i = 0; i < captureDevices.Length; i++)
{
DsDeviceContainer device = new DsDeviceContainer();
device.Device = captureDevices[i];
device.Idx = i;
int idx = webcamsCheckedListBox.Items.Add(device);
if (captureDevices[i].Name.Contains("720p"))
webcamsCheckedListBox.SetItemChecked(idx, true);
}
textBox1.Text += "\r\n" + Path.Combine(Program.AppDataPath, "debug.log");
}
private void resetApiTokenCheckBox_CheckedChanged(object sender, EventArgs e)
{
if(!resetApiTokenCheckBox.Checked)
{
apiURLTextBox.ReadOnly = true;
usernameTextBox.ReadOnly = true;
pwTextBox.ReadOnly = true;
ApiKeyTextBox.ReadOnly = true;
} else
{
apiURLTextBox.ReadOnly = false;
usernameTextBox.ReadOnly = false;
pwTextBox.ReadOnly = false;
ApiKeyTextBox.ReadOnly = false;
}
}
private void usbRadioButton_CheckedChanged(object sender, EventArgs e)
{
if(usbRadioButton.Checked)
{
serialRadioButton.Checked = false;
printerModelComboBox.Enabled = false;
printerPortComboBox.Enabled = false;
printerNameComboBox.Enabled = true;
}
}
private void serialRadioButton_CheckedChanged(object sender, EventArgs e)
{
if(serialRadioButton.Checked)
{
usbRadioButton.Checked = false;
printerNameComboBox.Enabled = false;
printerModelComboBox.Enabled = true;
printerPortComboBox.Enabled = true;
}
}
}
}