-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGGForm.cs
439 lines (390 loc) · 15.3 KB
/
GGForm.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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
using System;
using System.IO;
using System.Linq;
using Newtonsoft.Json;
using System.Threading;
using System.Diagnostics;
using System.Windows.Forms;
using MySql.Data.MySqlClient;
using System.Collections.Generic;
// Service
using GittiGidiyor;
using GittiGidiyor.Product;
// Self
using N11Category.Models;
namespace N11Category
{
public partial class GGForm : Form
{
ConnectionModelGG conModel = null; // connection info
public GGForm(bool hasToken)
{
if (!hasToken)
{
MessageBox.Show("Please login!");
this.Visible = false;
}
else
{
InitializeComponent();
CheckForIllegalCrossThreadCalls = false; // to avoid cross thread
}
}
private void LinkLabel1_LinkClicked_1(object sender, LinkLabelLinkClickedEventArgs e)
{
string url = "https://doxalabs.co.uk";
Process.Start(url);
}
private void BtnImportConfig_Click(object sender, System.EventArgs e)
{
OpenFileDialog openFileDialog1 = new OpenFileDialog();
openFileDialog1.InitialDirectory = @"C:\";
openFileDialog1.Title = "Browse Text Files";
openFileDialog1.CheckFileExists = true;
openFileDialog1.CheckPathExists = true;
openFileDialog1.DefaultExt = "txt";
openFileDialog1.Filter = "Db Config File (*.json)|*.json";
openFileDialog1.FilterIndex = 2;
openFileDialog1.RestoreDirectory = true;
openFileDialog1.ReadOnlyChecked = true;
openFileDialog1.ShowReadOnly = true;
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
string file = openFileDialog1.FileName;
string tmp = File.ReadAllText(file);
conModel = JsonConvert.DeserializeObject<ConnectionModelGG>(tmp);
}
}
private void BtnTestConnection_Click(object sender, System.EventArgs e)
{
if (conModel == null && txtDbName.Text.Trim() == "")
{
MessageBox.Show("Error no: 2 - Please enter connection info OR Import database config!");
}
else
{
if (conModel == null)
{
conModel = new ConnectionModelGG();
conModel.port = txtPort.Text.Trim();
conModel.server = txtServer.Text.Trim();
conModel.username = txtUsername.Text.Trim();
conModel.password = txtPassword.Text.Trim();
conModel.databaseName = txtDbName.Text.Trim();
conModel.ggProductTable = txtTableGGProduct.Text.Trim();
conModel.productTable = txtTableProduct.Text.Trim();
}
var con = DBConnection.Instance();
con.DatabaseName = conModel.databaseName;
if (con.IsConnect(conModel))
{
txtPort.Text = conModel.port;
txtServer.Text = conModel.server;
txtUsername.Text = conModel.username;
txtDbName.Text = conModel.databaseName;
txtTableProduct.Text = conModel.productTable;
txtTableGGProduct.Text = conModel.ggProductTable;
MessageBox.Show("Test is successful.");
}
con.Close();
}
}
private int stockCounter = 0;
private int priceCounter = 0;
private Thread threadUpdateStocks = null;
private Thread threadUpdatePrices = null;
private Thread threadFetchProducts = null;
List<ProductGG> productsFromDB = new List<ProductGG>();
List<ProductGG> productsFromGG = new List<ProductGG>();
List<ProductGG> productsWillStockUpdate = new List<ProductGG>();
List<ProductGG> productsWillPriceUpdate = new List<ProductGG>();
private void BtnReadData_Click(object sender, System.EventArgs e)
{
if (conModel == null)
{
MessageBox.Show("Error no: 2 - Please import database config!");
}
else
{
btnReadData.Enabled = false;
threadFetchProducts = new Thread(new ThreadStart(GetGGProducts));
threadFetchProducts.Start();
}
}
private void GetGGProducts()
{
try
{
List<string> listOfCategories = new List<string>();
int pageSize = 100;
int currentPageCount = 0;
var productService = ServiceProvider.getProductService();
while (true)
{
/*
A - Aktif Şatışlar
L - Yeni Listelenenler
S - Satılan Ürünler
U - Satılmayan Ürünler
R - Yeniden Listelenenler
*/
List<productDetailType> pDetailsResult = productService.getProducts(currentPageCount * pageSize, pageSize, "A", true, "tr").products.ToList();
foreach (productDetailType item in pDetailsResult)
{
ProductGG p = new ProductGG();
p.GgId = item.productId.ToString();
p.Quantity = item.product.productCount;
p.Price = item.product.buyNowPrice;
// Update UI
UpdateCurrentGGProduct(item.product.title);
productsFromGG.Add(p);
}
if (pDetailsResult.Count < 100)
{
break;
}
else
{
currentPageCount++;
}
// Update UI
UpdateGgProductCount(productsFromGG.Count.ToString());
}
// Update UI for last time
UpdateGgProductCount(productsFromGG.Count.ToString());
// Fetch products from db
GetDBProducts();
}
catch (Exception ex)
{
MessageBox.Show("Error no: 10 - Get products from gg. Message: " + ex.Message);
}
}
private void GetDBProducts()
{
try
{
var con = DBConnection.Instance();
con.DatabaseName = con.DatabaseName;
if (con.IsConnect(conModel))
{
string query = "SELECT p.product_id, gg_id, quantity, price FROM " + conModel.productTable + " p LEFT JOIN " + conModel.ggProductTable + " ggp ON (p.product_id = ggp.product_id)";
var cmd = new MySqlCommand(query, con.Connection);
var reader = cmd.ExecuteReader();
while (reader.Read())
{
ProductGG p = new ProductGG();
p.ProductId = reader["product_id"].ToString();
p.GgId = reader["gg_id"].ToString();
p.Price = double.Parse(reader["price"].ToString());
p.Quantity = int.Parse(reader["quantity"].ToString());
productsFromDB.Add(p);
}
}
lblDbProductCount.Text = productsFromDB.Count.ToString();
lblReadDataStatus.Text = "Completed";
con.Close();
}
catch (Exception ex)
{
MessageBox.Show("Error no: 11 - Get products from db. Message: " + ex.Message);
}
}
private void BtnUpdateStock_Click(object sender, System.EventArgs e)
{
if (productsFromDB.Count == 0 || productsFromGG.Count == 0)
{
MessageBox.Show("Error no: 12 - Please go to 2.Read Data first!");
}
else
{
btnUpdateStock.Enabled = false;
foreach (ProductGG item in productsFromGG)
{
ProductGG pon = productsFromDB.Find(p => p.GgId == item.GgId);
if (pon != null)
{
if (pon.Quantity != item.Quantity) // stok değişmisse güncellenecekler listesine ekle
{
productsWillStockUpdate.Add(pon);
}
}
}
if (productsWillStockUpdate.Count > 0)
{
// show total count
lblStockCount.Text = productsWillStockUpdate.Count.ToString();
threadUpdateStocks = new Thread(new ThreadStart(UpdateStocks));
threadUpdateStocks.Start();
}
else
{
lblUpdateStockStatus.Text = "All products are up-to-date : )";
MessageBox.Show("All products are up-to-date : )");
}
}
}
private void BtnUpdatePrice_Click(object sender, System.EventArgs e)
{
if (productsFromDB.Count == 0 || productsFromGG.Count == 0)
{
MessageBox.Show("Error no: 14 - Please go to 2.Read Data first!");
}
else
{
btnUpdatePrice.Enabled = false;
foreach (ProductGG item in productsFromGG)
{
ProductGG pon = productsFromDB.Find(p => p.GgId == item.GgId);
if (pon != null)
{
if (pon.Price != item.Price) // fiyat değişmisse güncellenecekler listesine ekle
{
productsWillPriceUpdate.Add(pon);
}
}
}
if (productsWillPriceUpdate.Count > 0)
{
// show total count
lblPriceCount.Text = productsWillPriceUpdate.Count.ToString();
threadUpdatePrices = new Thread(new ThreadStart(UpdatePrices));
threadUpdatePrices.Start();
}
else
{
lblUpdatePriceStatus.Text = "All products are up-to-date : )";
MessageBox.Show("All products are up-to-date : )");
}
}
}
List<int> productIdsWillFinishEarly = new List<int>();
List<string> itemIdsWillFinishEarly = new List<string>();
private void UpdateStocks()
{
try
{
var productService = ServiceProvider.getProductService();
foreach (ProductGG item in productsWillStockUpdate)
{
if (item.Quantity > 0)
{
var stock = productService.updateStock(item.GgId, "", item.Quantity, true, "tr");
if (stock.error != null)
{
listFailedProducts.Items.Add(stock.error.message);
}
stockCounter++;
// Update UI
UpdateStockValueText(item.ProductId);
UpdateCurrentStockText(stockCounter.ToString());
UpdateRemainingText((productsWillStockUpdate.Count - stockCounter).ToString());
}
else // satıştan kaldırılacak ürünler listesine ekle
{
productIdsWillFinishEarly.Add(int.Parse(item.GgId));
}
}
// stoğu 0 olan ürünleri satıştan kaldır
var ferly = productService.finishEarly(productIdsWillFinishEarly, itemIdsWillFinishEarly, "tr");
lblFinishedEarly.Text = ferly.result; //productIdsWillFinishEarly.Count + " pieces of product is finished early.";
}
catch (Exception ex)
{
MessageBox.Show("Error no: 13 - Stock update failed! Message: " + ex.Message);
}
}
private void UpdatePrices()
{
try
{
var productService = ServiceProvider.getProductService();
foreach (ProductGG item in productsWillPriceUpdate)
{
var stock = productService.updatePrice(item.GgId, "", item.Price, true, "tr");
if (stock.error != null)
{
listFailedPrice.Items.Add(stock.error.message);
}
priceCounter++;
// Update UI
UpdatePriceValueText(item.ProductId);
UpdateCurrentPriceText(priceCounter.ToString());
UpdatePriceRemainingText((productsWillPriceUpdate.Count - priceCounter).ToString());
}
}
catch (Exception ex)
{
MessageBox.Show("Error no: 15 - Price update failed! Message: " + ex.Message);
}
}
// Begin UI Update
private void UpdateStockValueText(string value)
{
lblStockValue.Invoke((MethodInvoker)delegate
{
lblStockValue.Text = value;
});
}
private void UpdatePriceValueText(string value)
{
lblPriceValue.Invoke((MethodInvoker)delegate
{
lblPriceValue.Text = value;
});
}
private void UpdateCurrentStockText(string value)
{
lblCurrentStock.Invoke((MethodInvoker)delegate
{
lblCurrentStock.Text = value;
});
}
private void UpdateCurrentPriceText(string value)
{
lblPriceCurrent.Invoke((MethodInvoker)delegate
{
lblPriceCurrent.Text = value;
});
}
private void UpdateRemainingText(string value)
{
lblRemainingStock.Invoke((MethodInvoker)delegate
{
lblRemainingStock.Text = value;
});
}
private void UpdatePriceRemainingText(string value)
{
lblPriceRemaining.Invoke((MethodInvoker)delegate
{
lblPriceRemaining.Text = value;
});
}
private void UpdateCurrentGGProduct(string value)
{
lblCurrentGgProduct.Invoke((MethodInvoker)delegate
{
lblCurrentGgProduct.Text = value;
});
}
private void UpdateGgProductCount(string value)
{
lblGgProductCount.Invoke((MethodInvoker)delegate
{
lblGgProductCount.Text = value;
});
}
// End UI Update
private void GGForm_Load(object sender, EventArgs e)
{
// Load GG Config
ConfigurationManager.getAuthParameters();
}
private void BtnChangeLog_Click(object sender, EventArgs e)
{
var changeLogForm = new ChangeLogForm();
changeLogForm.Show();
}
}
}