MainWindow.xaml.cs 34 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075
  1. using EVCB_OCPP.Domain;
  2. using EVCB_OCPP.Domain.Models.Database;
  3. using EVCB_OCPP.Packet.Features;
  4. using EVCB_OCPP.Packet.Messages;
  5. using EVCB_OCPP.Packet.Messages.Core;
  6. using Microsoft.Win32;
  7. using Newtonsoft.Json;
  8. using OCPPPackage.Profiles;
  9. using System;
  10. using System.Collections.Generic;
  11. using System.Configuration;
  12. using System.IO;
  13. using System.Linq;
  14. using System.Net;
  15. using System.Security.Cryptography;
  16. using System.Text;
  17. using System.Threading.Tasks;
  18. using System.Windows;
  19. using System.Windows.Controls;
  20. using System.Windows.Data;
  21. using System.Windows.Documents;
  22. using System.Windows.Input;
  23. using System.Windows.Media;
  24. using System.Windows.Media.Imaging;
  25. using System.Windows.Navigation;
  26. using System.Windows.Shapes;
  27. using System.Data.Entity;
  28. using EVCB_OCPP.Packet.Messages.RemoteTrigger;
  29. using EVCB_OCPP.Packet.Messages.SubTypes;
  30. using EVCB_OCPP.Packet.Messages.LocalAuthListManagement;
  31. using EVCB_OCPP.Packet.Messages.FirmwareManagement;
  32. using EVCB_OCPP.Packet.Messages.Reservation;
  33. using EVCB_OCPP.Packet.Messages.SmartCharging;
  34. using System.Threading;
  35. using System.Net.Http;
  36. namespace TestTool.RemoteTriggerAPP
  37. {
  38. /// <summary>
  39. /// MainWindow.xaml 的互動邏輯
  40. /// </summary>
  41. public partial class MainWindow : Window
  42. {
  43. string action = "";
  44. List<UploadFile> publishes = new List<UploadFile>();
  45. FTPClient UploadClient = new FTPClient(@"ftp://test.evsocket.phihong.com.cn", "testocpp", "testocpp");
  46. string chargingProfilePath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "chargingProfile.json");
  47. int selectedPublish = -1;
  48. public MainWindow()
  49. {
  50. InitializeComponent();
  51. Loaded += MainWindow_Loaded;
  52. UploadClient.OnUploadProgress += UploadClient_OnUploadProgress;
  53. }
  54. private void MainWindow_Loaded(object sender, RoutedEventArgs e)
  55. {
  56. uxChargeBoxIdTb.Text = Properties.Settings.Default.ChargeBoxId;
  57. }
  58. private void UxSubmitBtn_Click(object sender, RoutedEventArgs e)
  59. {
  60. switch (action)
  61. {
  62. #region Core Profile
  63. case "ChangeAvailability_Inoperative":
  64. {
  65. SetChangeAvailability_Inoperative();
  66. }
  67. break;
  68. case "ChangeAvailability_Operative":
  69. {
  70. SetChangeAvailability_Operative();
  71. }
  72. break;
  73. case "GetConfiguration":
  74. {
  75. if (uxConfigKeyTb.Text == "")
  76. {
  77. SetGetConfiguration_ALL();
  78. }
  79. else
  80. {
  81. SetGetConfiguration();
  82. }
  83. }
  84. break;
  85. case "ChangeConfiguration":
  86. {
  87. SetChangeConfiguration();
  88. }
  89. break;
  90. case "ClearCache":
  91. {
  92. SetClearCache();
  93. }
  94. break;
  95. case "RemoteStartTransaction":
  96. {
  97. SetRemoteStartTransaction();
  98. }
  99. break;
  100. case "RemoteStartTransaction_ChargingProfile":
  101. {
  102. var chargingProfile = VerifyChargingProfile(chargingProfilePath);
  103. if (chargingProfile != null)
  104. {
  105. SetRemoteStartTransaction(chargingProfile);
  106. }
  107. else
  108. {
  109. uxMsgTb.Text = "Please check chargingProfile.json exist in " + AppDomain.CurrentDomain.BaseDirectory;
  110. }
  111. }
  112. break;
  113. case "RemoteStopTransaction":
  114. {
  115. SetRemoteStopTransaction();
  116. }
  117. break;
  118. case "HardReset":
  119. {
  120. SetHardReset();
  121. }
  122. break;
  123. case "SoftReset":
  124. {
  125. SetSoftReset();
  126. }
  127. break;
  128. case "UnlockConnector":
  129. {
  130. SetUnlockConnector();
  131. }
  132. break;
  133. #endregion
  134. #region Local Authorization
  135. case "GetLocalListVersion":
  136. {
  137. GetLocalListVersion();
  138. }
  139. break;
  140. case "SendLocalAuthorizationList_Full":
  141. {
  142. SendLocalAuthorizationList(true);
  143. }
  144. break;
  145. case "SendLocalAuthorizationList_Diff":
  146. {
  147. SendLocalAuthorizationList(false);
  148. }
  149. break;
  150. #endregion
  151. case "GetDiagnostics_FTP":
  152. {
  153. GetDiagnostics(true);
  154. }
  155. break;
  156. case "GetDiagnostics_HTTP":
  157. {
  158. GetDiagnostics(false);
  159. }
  160. break;
  161. case "ReserveNow":
  162. {
  163. ReserveNow();
  164. }
  165. break;
  166. case "CancelReservation":
  167. {
  168. CancelReservation();
  169. }
  170. break;
  171. case "ClearChargingProfile":
  172. {
  173. ClearChargingProfile();
  174. }
  175. break;
  176. case "GetCompositeSchedule":
  177. {
  178. GetCompositeSchedule();
  179. }
  180. break;
  181. case "SetChargingProfile":
  182. {
  183. var chargingProfile = VerifyChargingProfile(chargingProfilePath);
  184. if (chargingProfile != null)
  185. {
  186. SetChargingProfile(chargingProfile);
  187. }
  188. else
  189. {
  190. uxMsgTb.Text = "Please check chargingProfile.json exist in " + AppDomain.CurrentDomain.BaseDirectory;
  191. }
  192. //SetChargingProfile(new SetChargingProfileRequest()
  193. //{
  194. // connectorId = 0,
  195. // csChargingProfiles = new csChargingProfiles()
  196. // {
  197. // chargingProfileId = 1,
  198. // chargingProfileKind = ChargingProfileKindType.Recurring,
  199. // chargingProfilePurpose = ChargingProfilePurposeType.ChargePointMaxProfile,
  200. // chargingSchedule = new ChargingSchedule()
  201. // {
  202. // chargingRateUnit = ChargingRateUnitType.W,
  203. // chargingSchedulePeriod = new List<ChargingSchedulePeriod>()
  204. // {
  205. // new ChargingSchedulePeriod(){ startPeriod=0, limit=int.Parse(uxConfigValueTb.Text)}
  206. // },
  207. // },
  208. // recurrencyKind = RecurrencyKindType.Daily,
  209. // stackLevel = 1,
  210. // }
  211. //});
  212. }
  213. break;
  214. #region Trigger Profile
  215. case "TriggerMessage_BootNotification":
  216. case "TriggerMessage_DiagnosticsStatusNotification":
  217. case "TriggerMessage_FirmwareStatusNotification":
  218. case "TriggerMessage_Heartbeat":
  219. case "TriggerMessage_MeterValues":
  220. case "TriggerMessage_StatusNotification":
  221. {
  222. SetRemoteTrigger(action);
  223. }
  224. break;
  225. #endregion
  226. default:
  227. break;
  228. }
  229. }
  230. private SetChargingProfileRequest VerifyChargingProfile(string path)
  231. {
  232. SetChargingProfileRequest request = null;
  233. if (!File.Exists(path)) return request;
  234. try
  235. {
  236. request = JsonConvert.DeserializeObject<SetChargingProfileRequest>(File.ReadAllText(path));
  237. }
  238. catch
  239. {
  240. }
  241. return request;
  242. }
  243. private void SetChargingProfile(SetChargingProfileRequest csProfile)
  244. {
  245. try
  246. {
  247. var uuid = Guid.NewGuid().ToString();
  248. WritetoDB(uuid, csProfile);
  249. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  250. }
  251. catch (Exception ex)
  252. {
  253. MessageBox.Show(ex.ToString());
  254. }
  255. }
  256. private void GetCompositeSchedule()
  257. {
  258. try
  259. {
  260. var uuid = Guid.NewGuid().ToString();
  261. var request = new GetCompositeScheduleRequest()
  262. {
  263. connectorId = Convert.ToInt32(uxConnectorIdTb.Text),
  264. duration = 300
  265. };
  266. WritetoDB(uuid, request);
  267. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  268. }
  269. catch (Exception ex)
  270. {
  271. MessageBox.Show(ex.ToString());
  272. }
  273. }
  274. private void ClearChargingProfile()
  275. {
  276. try
  277. {
  278. var uuid = Guid.NewGuid().ToString();
  279. var request = new ClearChargingProfileRequest()
  280. {
  281. connectorId = Convert.ToInt32(uxConnectorIdTb.Text),
  282. };
  283. WritetoDB(uuid, request);
  284. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  285. }
  286. catch (Exception ex)
  287. {
  288. MessageBox.Show(ex.ToString());
  289. }
  290. }
  291. private void CancelReservation()
  292. {
  293. try
  294. {
  295. var uuid = Guid.NewGuid().ToString();
  296. var request = new CancelReservationRequest()
  297. {
  298. reservationId = Convert.ToInt32(uxReservationTb.Text),
  299. };
  300. WritetoDB(uuid, request);
  301. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  302. }
  303. catch (Exception ex)
  304. {
  305. MessageBox.Show(ex.ToString());
  306. }
  307. }
  308. private void ReserveNow()
  309. {
  310. bool isError = false;
  311. DateTime expiryTime = DateTime.Now;
  312. try
  313. {
  314. try
  315. {
  316. expiryTime = Convert.ToDateTime(uxExpiryTimeTb.Text);
  317. if (expiryTime < DateTime.Now.AddSeconds(60))
  318. {
  319. isError = true;
  320. uxMsgTb.Text = string.Format("ExpiryTime is too close or too early to the current time (60 seconds).");
  321. }
  322. }
  323. catch (Exception ex)
  324. {
  325. if (ex is FormatException)
  326. {
  327. isError = true;
  328. uxMsgTb.Text = string.Format("ExpiryTime's Format is wrong Example:{0}", DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss"));
  329. }
  330. }
  331. if (!isError)
  332. {
  333. var uuid = Guid.NewGuid().ToString();
  334. var request = new ReserveNowRequest()
  335. {
  336. connectorId = Convert.ToInt32(uxConnectorIdTb.Text),
  337. expiryDate = expiryTime.ToUniversalTime(),
  338. idTag = uxIdTagTb.Text,
  339. parentIdTag = "PTAG",
  340. reservationId = Convert.ToInt32(expiryTime.ToUniversalTime().ToString("yyMMddHHmm")),
  341. };
  342. WritetoDB(uuid, request);
  343. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  344. }
  345. }
  346. catch (Exception ex)
  347. {
  348. MessageBox.Show(ex.ToString());
  349. }
  350. }
  351. private void GetDiagnostics(bool ftp)
  352. {
  353. try
  354. {
  355. var uuid = Guid.NewGuid().ToString();
  356. var request = new GetDiagnosticsRequest()
  357. {
  358. location = new Uri(ftp ? "ftp://evseocpp:evseocpp@test.evsocket.phihong.com.cn/" : "http://test.evsocket.phihong.com.cn:9003/api/v1/file/"),
  359. retries = 1,
  360. retryInterval = 30,
  361. startTime = DateTime.Now.AddHours(-1).ToUniversalTime(),
  362. stopTime = DateTime.Now.ToUniversalTime()
  363. };
  364. WritetoDB(uuid, request);
  365. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  366. }
  367. catch (Exception ex)
  368. {
  369. MessageBox.Show(ex.ToString());
  370. }
  371. }
  372. #region Local Authorization
  373. private void GetLocalListVersion()
  374. {
  375. try
  376. {
  377. var uuid = Guid.NewGuid().ToString();
  378. var request = new GetLocalListVersionRequest()
  379. {
  380. };
  381. WritetoDB(uuid, request);
  382. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  383. }
  384. catch (Exception ex)
  385. {
  386. MessageBox.Show(ex.ToString());
  387. }
  388. }
  389. private void SendLocalAuthorizationList(bool isFull)
  390. {
  391. try
  392. {
  393. var uuid = Guid.NewGuid().ToString();
  394. var request = new SendLocalListRequest()
  395. {
  396. listVersion = Convert.ToInt32(DateTimeOffset.Now.AddDays(-50).ToUnixTimeSeconds()),
  397. updateType = isFull ? UpdateType.Full : UpdateType.Differential,
  398. localAuthorizationList = new List<AuthorizationData>()
  399. //localAuthorizationList = new List<AuthorizationData>()
  400. //{
  401. // new AuthorizationData()
  402. // {
  403. // idTagInfo=new IdTagInfo(){ expiryDate=DateTime.Now.ToUniversalTime().AddDays(3), status= AuthorizationStatus.Accepted},
  404. // idTag="F5902677"
  405. // }, new AuthorizationData()
  406. // {
  407. // idTagInfo=new IdTagInfo(){ expiryDate=DateTime.Now.ToUniversalTime().AddDays(3), status= AuthorizationStatus.Expired},
  408. // idTag="772690F5"
  409. // }
  410. //}
  411. };
  412. //request.localAuthorizationList.Add(new AuthorizationData()
  413. //{
  414. // idTag = "F5902677",
  415. // idTagInfo = new IdTagInfo()
  416. // {
  417. // parentIdTag = "0000000000000000001",
  418. // expiryDate = DateTime.UtcNow.AddMonths(1),
  419. // status = AuthorizationStatus.ConcurrentTx
  420. // }
  421. //});
  422. //request.localAuthorizationList.Add(new AuthorizationData()
  423. //{
  424. // idTag = "772690F5",
  425. // idTagInfo = new IdTagInfo()
  426. // {
  427. // parentIdTag = "0000000000000000001",
  428. // expiryDate = DateTime.UtcNow.AddMonths(1),
  429. // status = AuthorizationStatus.Accepted
  430. // }
  431. //});
  432. for (int i = 0; i < 50; i++)
  433. {
  434. request.localAuthorizationList.Add(new AuthorizationData()
  435. {
  436. idTag = DateTime.Now.ToString("yyyyMMddHHmmss" + i.ToString("00000")),
  437. idTagInfo = new IdTagInfo()
  438. {
  439. parentIdTag = "0000000000000000001",
  440. expiryDate = DateTime.UtcNow.AddMonths(1),
  441. status = AuthorizationStatus.Accepted
  442. }
  443. });
  444. }
  445. WritetoDB(uuid, request);
  446. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  447. }
  448. catch (Exception ex)
  449. {
  450. MessageBox.Show(ex.ToString());
  451. }
  452. }
  453. #endregion
  454. private void SetRemoteTrigger(string action)
  455. {
  456. try
  457. {
  458. string type = action.Split('_').Last();
  459. var uuid = Guid.NewGuid().ToString();
  460. var request = new TriggerMessageRequest()
  461. {
  462. requestedMessage = (MessageTrigger)Enum.Parse(typeof(MessageTrigger), type, false)
  463. };
  464. WritetoDB(uuid, request);
  465. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  466. }
  467. catch (Exception ex)
  468. {
  469. MessageBox.Show(ex.ToString());
  470. }
  471. }
  472. private void SetGetConfiguration()
  473. {
  474. try
  475. {
  476. string uuid = Guid.NewGuid().ToString();
  477. var request = new GetConfigurationRequest()
  478. {
  479. key = uxConfigKeyTb.Text.Split('/').ToList()
  480. };
  481. WritetoDB(uuid, request);
  482. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  483. }
  484. catch (Exception ex)
  485. {
  486. MessageBox.Show(ex.ToString());
  487. }
  488. }
  489. private void UxCmdCb_SelectionChanged(object sender, SelectionChangedEventArgs e)
  490. {
  491. var item = uxCmdCb.SelectedValue as ComboBoxItem;
  492. action = item.Content as string;
  493. }
  494. private void SetRemoteStartTransaction(SetChargingProfileRequest csProfile = null)
  495. {
  496. try
  497. {
  498. var uuid = Guid.NewGuid().ToString();
  499. var request = new RemoteStartTransactionRequest()
  500. {
  501. connectorId = byte.Parse(uxConnectorIdTb.Text),
  502. idTag = uxIdTagTb.Text
  503. };
  504. if (csProfile != null)
  505. {
  506. request.chargingProfile = csProfile.csChargingProfiles;
  507. }
  508. WritetoDB(uuid, request);
  509. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  510. }
  511. catch (Exception ex)
  512. {
  513. MessageBox.Show(ex.ToString());
  514. }
  515. }
  516. private void SetUnlockConnector()
  517. {
  518. try
  519. {
  520. var uuid = Guid.NewGuid().ToString();
  521. var request = new UnlockConnectorRequest()
  522. {
  523. connectorId = byte.Parse(uxConnectorIdTb.Text),
  524. };
  525. WritetoDB(uuid, request);
  526. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  527. }
  528. catch (Exception ex)
  529. {
  530. MessageBox.Show(ex.ToString());
  531. }
  532. }
  533. private void SetChangeAvailability_Inoperative()
  534. {
  535. try
  536. {
  537. var uuid = Guid.NewGuid().ToString();
  538. var request = new ChangeAvailabilityRequest()
  539. {
  540. connectorId = byte.Parse(uxConnectorIdTb.Text),
  541. type = EVCB_OCPP.Packet.Messages.SubTypes.AvailabilityType.Inoperative
  542. };
  543. WritetoDB(uuid, request);
  544. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  545. }
  546. catch (Exception ex)
  547. {
  548. MessageBox.Show(ex.ToString());
  549. }
  550. }
  551. private void SetChangeAvailability_Operative()
  552. {
  553. try
  554. {
  555. var uuid = Guid.NewGuid().ToString();
  556. var request = new ChangeAvailabilityRequest()
  557. {
  558. connectorId = byte.Parse(uxConnectorIdTb.Text),
  559. type = EVCB_OCPP.Packet.Messages.SubTypes.AvailabilityType.Operative
  560. };
  561. WritetoDB(uuid, request);
  562. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  563. }
  564. catch (Exception ex)
  565. {
  566. MessageBox.Show(ex.ToString());
  567. }
  568. }
  569. private void SetChangeConfiguration()
  570. {
  571. try
  572. {
  573. var uuid = Guid.NewGuid().ToString();
  574. var request = new ChangeConfigurationRequest()
  575. {
  576. key = uxConfigKeyTb.Text,
  577. value = uxConfigValueTb.Text,
  578. };
  579. WritetoDB(uuid, request);
  580. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  581. }
  582. catch (Exception ex)
  583. {
  584. MessageBox.Show(ex.ToString());
  585. }
  586. }
  587. private void SetClearCache()
  588. {
  589. try
  590. {
  591. var uuid = Guid.NewGuid().ToString();
  592. var request = new ClearCacheRequest()
  593. {
  594. };
  595. WritetoDB(uuid, request);
  596. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  597. }
  598. catch (Exception ex)
  599. {
  600. MessageBox.Show(ex.ToString());
  601. }
  602. }
  603. private void SetGetConfiguration_ALL()
  604. {
  605. try
  606. {
  607. var uuid = Guid.NewGuid().ToString();
  608. var request = new GetConfigurationRequest()
  609. {
  610. key = new List<string>() { }
  611. };
  612. WritetoDB(uuid, request);
  613. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  614. }
  615. catch (Exception ex)
  616. {
  617. MessageBox.Show(ex.ToString());
  618. }
  619. }
  620. private void SetHardReset()
  621. {
  622. try
  623. {
  624. var uuid = Guid.NewGuid().ToString();
  625. var request = new ResetRequest()
  626. {
  627. type = EVCB_OCPP.Packet.Messages.SubTypes.ResetType.Hard
  628. };
  629. WritetoDB(uuid, request);
  630. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  631. }
  632. catch (Exception ex)
  633. {
  634. MessageBox.Show(ex.ToString());
  635. }
  636. }
  637. private void SetSoftReset()
  638. {
  639. try
  640. {
  641. var uuid = Guid.NewGuid().ToString();
  642. var request = new ResetRequest()
  643. {
  644. type = EVCB_OCPP.Packet.Messages.SubTypes.ResetType.Soft
  645. };
  646. WritetoDB(uuid, request);
  647. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  648. }
  649. catch (Exception ex)
  650. {
  651. MessageBox.Show(ex.ToString());
  652. }
  653. }
  654. private void SetRemoteStopTransaction()
  655. {
  656. try
  657. {
  658. var uuid = Guid.NewGuid().ToString();
  659. var request = new RemoteStopTransactionRequest()
  660. {
  661. transactionId = int.Parse(uxTransactionIdTb.Text)
  662. };
  663. WritetoDB(uuid, request);
  664. uxMsgTb.Text = string.Format("UUID:{0}", uuid);
  665. }
  666. catch (Exception ex)
  667. {
  668. MessageBox.Show(ex.ToString());
  669. }
  670. }
  671. private void WritetoDB(string uuid, IRequest request)
  672. {
  673. using (var db = new MainDBContext())
  674. {
  675. db.MachineOperateRecord.Add(new MachineOperateRecord()
  676. {
  677. CreatedOn = DateTime.Now.ToUniversalTime(),
  678. ChargeBoxId = uxChargeBoxIdTb.Text,
  679. SerialNo = uuid,
  680. RequestContent = JsonConvert.SerializeObject(request, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore, Formatting = Formatting.None }),
  681. EVSE_Status = 0,
  682. Status = 0,
  683. RequestType = 1,
  684. Action = request.Action.ToString()
  685. });
  686. db.ServerMessage.Add(new ServerMessage()
  687. {
  688. ChargeBoxId = uxChargeBoxIdTb.Text,
  689. CreatedBy = "TestTool",
  690. CreatedOn = DateTime.Now.ToUniversalTime(),
  691. OutAction = request.Action.ToString(),
  692. OutRequest = JsonConvert.SerializeObject(request, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore, Formatting = Formatting.None }),
  693. SerialNo = uuid,
  694. InMessage = string.Empty
  695. });
  696. db.SaveChanges();
  697. }
  698. }
  699. private void uxFileSubmitBtn_Click(object sender, RoutedEventArgs e)
  700. {
  701. OpenFileDialog openFileDialog = new OpenFileDialog();
  702. openFileDialog.Title = "Select file";
  703. var result = openFileDialog.ShowDialog();
  704. if (result == true)
  705. {
  706. uxUploadFileTb.Text = openFileDialog.FileName;
  707. }
  708. }
  709. private void uxUploadBtn_Click(object sender, RoutedEventArgs e)
  710. {
  711. if (string.IsNullOrEmpty(uxUploadFileTb.Text))
  712. {
  713. uxMsgTb.Text = "Please select upload file!";
  714. return;
  715. }
  716. FileInfo f = new FileInfo(uxUploadFileTb.Text);
  717. int size = (int)f.Length;
  718. string md5 = "";
  719. string filePreUrl = ConfigurationManager.AppSettings["FilePreUrl"];
  720. using (WebClient client = new WebClient())
  721. {
  722. client.UseDefaultCredentials = false;
  723. client.Headers.Add("Content-Type", "application/octet-stream");
  724. using (Stream fileStream = File.OpenRead(uxUploadFileTb.Text))
  725. {
  726. var _md5 = MD5.Create();
  727. var hash = _md5.ComputeHash(fileStream);
  728. md5 = BitConverter.ToString(hash).Replace("-", String.Empty).ToLowerInvariant();
  729. }
  730. }
  731. UploadFile ufObj = new UploadFile();
  732. ufObj.CreatedOn = DateTime.Now.ToUniversalTime();
  733. ufObj.FileExtensionName = System.IO.Path.GetExtension(uxUploadFileTb.Text);
  734. ufObj.Id = Guid.NewGuid().ToString();
  735. ufObj.FileName = md5 + ufObj.FileExtensionName;
  736. ufObj.FilePath = "~/UploadFiles/Fw/" + ufObj.FileName;
  737. ufObj.FileSize = size;
  738. ufObj.FileMD5 = md5;
  739. ufObj.CustomerId = new Guid("8456AED9-6DD9-4BF3-A94C-9F5DCB9506F7");
  740. ufObj.OriginName = System.IO.Path.GetFileName(uxUploadFileTb.Text);
  741. ufObj.FileUrl = new Uri(Properties.Settings.Default.FilePreUrl + ufObj.FilePath.Replace("~/", "")).ToString();
  742. ufObj.IsOnline = true;
  743. ufObj.VendorId = "TestTool";
  744. ufObj.ModelName= "TestTool";
  745. ufObj.ModuleId = 0;
  746. using (var db = new MainDBContext())
  747. {
  748. db.UploadFile.Add(ufObj);
  749. db.SaveChanges();
  750. }
  751. string filePath = uxUploadFileTb.Text;
  752. uxMsgTb.Text = "Uploading........";
  753. Task.Run(async () =>
  754. {
  755. await UploadTask(filePath, ufObj.FileName);
  756. });
  757. }
  758. private async Task UploadTask(string filePath, string fileName)
  759. {
  760. bool uploadResult = UploadClient.FtpUploadBroken(filePath, @"ftp://test.evsocket.phihong.com.cn/" + fileName);
  761. await Dispatcher.BeginInvoke(new Action(() =>
  762. {
  763. if (uploadResult)
  764. {
  765. uxMsgTb.Text = "Current Progress :100 %";
  766. Thread.CurrentThread.Join(100);
  767. }
  768. uxMsgTb.Text = "Upload File Result :" + (uploadResult ? "Success" : "Fail");
  769. }));
  770. }
  771. private void UploadClient_OnUploadProgress(double percent)
  772. {
  773. Dispatcher.BeginInvoke(new Action(() =>
  774. {
  775. uxMsgTb.Text = "Current Progress :" + (int)percent + " %";
  776. }));
  777. }
  778. private void uxFTPUploadBtn_Click(object sender, RoutedEventArgs e)
  779. {
  780. if (string.IsNullOrEmpty(uxUploadFileTb.Text))
  781. {
  782. uxMsgTb.Text = "Please select upload file!";
  783. return;
  784. }
  785. FileInfo f = new FileInfo(uxUploadFileTb.Text);
  786. int size = (int)f.Length;
  787. string md5 = "";
  788. using (WebClient client = new WebClient())
  789. {
  790. client.UseDefaultCredentials = false;
  791. client.Headers.Add("Content-Type", "application/octet-stream");
  792. using (Stream fileStream = File.OpenRead(uxUploadFileTb.Text))
  793. {
  794. var _md5 = MD5.Create();
  795. var hash = _md5.ComputeHash(fileStream);
  796. md5 = BitConverter.ToString(hash).Replace("-", String.Empty).ToLowerInvariant();
  797. }
  798. }
  799. UploadFile ufObj = new UploadFile();
  800. ufObj.CreatedOn = DateTime.Now.ToUniversalTime();
  801. ufObj.FileExtensionName = System.IO.Path.GetExtension(uxUploadFileTb.Text);
  802. ufObj.Id = Guid.NewGuid().ToString();
  803. ufObj.FileName = md5 + ufObj.FileExtensionName;
  804. ufObj.FilePath = "~/UploadFiles/Fw/" + ufObj.FileName;
  805. ufObj.FileSize = size;
  806. ufObj.FileMD5 = md5;
  807. ufObj.CustomerId = new Guid("8456AED9-6DD9-4BF3-A94C-9F5DCB9506F7");
  808. ufObj.OriginName = System.IO.Path.GetFileName(uxUploadFileTb.Text);
  809. ufObj.FileUrl = new Uri(Properties.Settings.Default.FTPFilePreUrl + ufObj.FileName).ToString();
  810. ufObj.IsOnline = true;
  811. ufObj.VendorId = "TestTool";
  812. ufObj.ModelName = "TestTool";
  813. ufObj.ModuleId = 0;
  814. using (var db = new MainDBContext())
  815. {
  816. db.UploadFile.Add(ufObj);
  817. db.SaveChanges();
  818. }
  819. string filePath = uxUploadFileTb.Text;
  820. uxMsgTb.Text = "Uploading........";
  821. Task.Run(async () =>
  822. {
  823. await UploadTask(filePath, ufObj.FileName);
  824. });
  825. }
  826. private void uxRefreshBtn_Click(object sender, RoutedEventArgs e)
  827. {
  828. using (var db = new MainDBContext())
  829. {
  830. publishes = db.UploadFile.Where(c => c.CustomerId == new Guid("8456AED9-6DD9-4BF3-A94C-9F5DCB9506F7") ).OrderByDescending(c => c.CreatedOn).Take(20).ToList();
  831. StringBuilder sb = new StringBuilder();
  832. uxPublishCb.Items.Clear();
  833. foreach (var i in publishes)
  834. {
  835. string prefix = i.FileUrl.StartsWith("ftp") ? "FTP" : "HTTP";
  836. sb.Clear();
  837. sb.Append(string.Format("[{0}]", prefix));
  838. sb.Append("_上傳日期:");
  839. sb.Append(i.CreatedOn.ToString());
  840. sb.Append("_檔名:");
  841. sb.Append(i.OriginName);
  842. uxPublishCb.Items.Add(sb.ToString());
  843. uxPublishCb.SelectedIndex = 0;
  844. }
  845. }
  846. }
  847. private void uxPublishBtn_Click(object sender, RoutedEventArgs e)
  848. {
  849. if (selectedPublish < 0)
  850. {
  851. uxMsgTb.Text = "Please choose publish version!";
  852. return;
  853. }
  854. using (var db = new MainDBContext())
  855. {
  856. var machine = db.Machine.Where(x => x.ChargeBoxId == uxChargeBoxIdTb.Text).FirstOrDefault();
  857. MachineVersionFile obj = new MachineVersionFile()
  858. {
  859. MachineId = new Guid(machine.Id),
  860. UploadFileId = publishes[selectedPublish].Id,
  861. CreatedOn = DateTime.Now.ToUniversalTime()
  862. };
  863. db.MachineVersionFile.Add(obj);
  864. //將machine的軟體更新更新到這個值
  865. db.SaveChanges();
  866. machine.FW_AssignedVersion = obj.Id;
  867. db.SaveChanges();
  868. }
  869. uxMsgTb.Text = "Publish Complete";
  870. }
  871. private void uxPublishCb_SelectionChanged(object sender, SelectionChangedEventArgs e)
  872. {
  873. selectedPublish = uxPublishCb.SelectedIndex;
  874. }
  875. private void uxClearPublishBtn_Click(object sender, RoutedEventArgs e)
  876. {
  877. using (var db = new MainDBContext())
  878. {
  879. var machine = db.Machine.Where(x => x.ChargeBoxId == uxChargeBoxIdTb.Text).FirstOrDefault();
  880. machine.FW_AssignedVersion = null;
  881. db.SaveChanges();
  882. }
  883. uxMsgTb.Text = "Clear Publish";
  884. }
  885. private void uxChargeBoxIdTb_LostFocus(object sender, RoutedEventArgs e)
  886. {
  887. Properties.Settings.Default.ChargeBoxId = uxChargeBoxIdTb.Text;
  888. Properties.Settings.Default.Save();
  889. }
  890. }
  891. }