MainWindow.xaml.cs 35 KB

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