set_backend.php 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631
  1. <?php
  2. ini_set('error_reporting', E_ALL | E_STRICT);
  3. $tag_header = 'set';
  4. include 'head.php';
  5. $obj = json_decode(trim($output[3]));//var_dump($obj);
  6. $system = json_decode(trim($output[0]));
  7. $ModelName = $system->{'ModelName'};
  8. $OcppConnStatus='';
  9. switch ($obj->{'OcppConnStatus'}){
  10. case 0:
  11. $OcppConnStatus=$lang->showWord('disconnected');
  12. break;
  13. case 1:
  14. $OcppConnStatus=$lang->showWord('connected');
  15. break;
  16. }
  17. $MaintainServerConnStatus='';
  18. switch ($obj->{'MaintainServerConnStatus'}){
  19. case 0:
  20. $MaintainServerConnStatus=$lang->showWord('disconnected');
  21. break;
  22. case 1:
  23. $MaintainServerConnStatus=$lang->showWord('connected');
  24. break;
  25. }
  26. ?>
  27. <style>
  28. img {
  29. display: block;
  30. margin-left: auto;
  31. margin-right: auto;
  32. }
  33. <?php if(substr($ModelName,0,1)=="D" && substr($ModelName,3,1)=="C"){?>
  34. /* Colors: Default (blue) */
  35. .toggle-switchy {color:#fff;}
  36. .toggle-switchy > input + .toggle:before {content:'Yes';}
  37. .toggle-switchy > input + .toggle:after {content:'No';}
  38. .toggle-switchy > input + .toggle > .switch {background:#fff;}
  39. .toggle-switchy > input + .toggle + .label {color:#000;}
  40. .toggle-switchy > input:checked + .toggle {background:#3498db;}
  41. .toggle-switchy > input:not(:checked) + .toggle {background:#ccc;}
  42. .toggle-switchy > input:checked + .toggle > .switch {border:3px solid #3498db;}
  43. .toggle-switchy > input:not(:checked) + .toggle > .switch {border:3px solid #ccc;}
  44. .toggle-switchy > input:focus + .toggle,
  45. .toggle-switchy > input:active + .toggle {box-shadow:0 0 5px 3px rgba(0, 119, 200, 0.50);}
  46. /* Rounded switch corners */
  47. .toggle-switchy > input + .toggle {border-radius:4px;}
  48. .toggle-switchy > input + .toggle .switch {border-radius:6px;}
  49. /* //////////////////////////
  50. CORE STYLES BELOW - NO TOUCHY
  51. ////////////////////////// */
  52. .toggle-switchy {display:inline-flex; align-items:center; user-select:none; position:relative;}
  53. .toggle-switchy:hover {cursor:pointer;}
  54. .toggle-switchy > input {position:absolute; opacity:0;}
  55. .toggle-switchy > input + .toggle {align-items:center; position:relative;}
  56. .toggle-switchy > input + .toggle {overflow:hidden; position:relative; flex-shrink:0;}
  57. .toggle-switchy > input[disabled] + .toggle {opacity:0.5;}
  58. .toggle-switchy > input[disabled] + .toggle:hover {cursor:not-allowed;}
  59. .toggle-switchy > input + .toggle {width:100%; height:100%; margin:0; cursor:pointer;}
  60. .toggle-switchy > input + .toggle > .switch {display:block; height:100%; position:absolute; right:0; z-index:3;}
  61. /* Labels */
  62. .toggle-switchy > input + .toggle:before,
  63. .toggle-switchy > input + .toggle:after {display:flex; align-items:center; position:absolute; z-index:2; height:100%;}
  64. .toggle-switchy > input + .toggle:before {right:55%;}
  65. .toggle-switchy > input + .toggle:after {left:50%;}
  66. .toggle-switchy > input + .toggle + .label {margin-left:10px;}
  67. .toggle-switchy[data-label='left'] > input + .toggle {order:2;}
  68. .toggle-switchy[data-label='left'] > input + .toggle + .label {order:1; margin-left:0; margin-right:10px;}
  69. /* Show / Hide */
  70. .toggle-switchy > input + .toggle:before {opacity:0;}
  71. .toggle-switchy > input:checked + .toggle:before {opacity:1;}
  72. .toggle-switchy > input:checked + .toggle:after {opacity:0;}
  73. /* Transitions */
  74. .toggle-switchy > input + .toggle {transition:background 200ms linear, box-shadow 200ms linear;}
  75. .toggle-switchy > input + .toggle:before,
  76. .toggle-switchy > input + .toggle:after {transition:all 200ms linear;}
  77. .toggle-switchy > input + .toggle > .switch {transition:right 200ms linear, border-color 200ms linear;}
  78. /* //////////////////////////
  79. CORE STYLES ABOVE - NO TOUCHY
  80. ////////////////////////// */
  81. /* Size: Extra Large */
  82. .toggle-switchy[data-size='xl'] > input + .toggle {width:85px; height:40px;}
  83. .toggle-switchy[data-size='xl'] > input + .toggle > .switch {width:40px;}
  84. .toggle-switchy[data-size='xl'] > input + .toggle:before,
  85. .toggle-switchy[data-size='xl'] > input + .toggle:after {font-size:1.2rem;}
  86. .toggle-switchy[data-size='xl'] > input:not(:checked) + .toggle > .switch {right:calc(100% - 40px);}
  87. /* Size: Large */
  88. .toggle-switchy[data-size='lg'] > input + .toggle {width:75px; height:35px;}
  89. .toggle-switchy[data-size='lg'] > input + .toggle > .switch {width:35px;}
  90. .toggle-switchy[data-size='lg'] > input + .toggle:before,
  91. .toggle-switchy[data-size='lg'] > input + .toggle:after {font-size:1rem;}
  92. .toggle-switchy[data-size='lg'] > input:not(:checked) + .toggle > .switch {right:calc(100% - 35px);}
  93. /* Size: Default (Medium) */
  94. .toggle-switchy > input + .toggle {width:100px; height:30px;}
  95. .toggle-switchy > input + .toggle > .switch {width:30px;}
  96. .toggle-switchy > input + .toggle:before,
  97. .toggle-switchy > input + .toggle:after {font-size:0.8rem;}
  98. .toggle-switchy > input:not(:checked) + .toggle > .switch {right:calc(100% - 30px);}
  99. /* Size: Small */
  100. .toggle-switchy[data-size='sm'] > input + .toggle {width:55px; height:25px;}
  101. .toggle-switchy[data-size='sm'] > input + .toggle > .switch {width:25px;}
  102. .toggle-switchy[data-size='sm'] > input + .toggle:before,
  103. .toggle-switchy[data-size='sm'] > input + .toggle:after {font-size:0.7rem;}
  104. .toggle-switchy[data-size='sm'] > input:not(:checked) + .toggle > .switch {right:calc(100% - 25px);}
  105. /* Size: Extra Small */
  106. .toggle-switchy[data-size='xs'] > input + .toggle {width:45px; height:20px;}
  107. .toggle-switchy[data-size='xs'] > input + .toggle > .switch {width:20px;}
  108. .toggle-switchy[data-size='xs'] > input + .toggle:before,
  109. .toggle-switchy[data-size='xs'] > input + .toggle:after {font-size:0.5rem;}
  110. .toggle-switchy[data-size='xs'] > input:not(:checked) + .toggle > .switch {right:calc(100% - 20px);}
  111. /* Style: Rounded */
  112. .toggle-switchy[data-style='rounded'] > input + .toggle,
  113. .toggle-switchy[data-style='rounded'] > input + .toggle > .switch {border-radius:50px;}
  114. .toggle-switchy[data-style='rounded'] > input + .toggle:before {right:30%;}
  115. .toggle-switchy[data-style='rounded'] > input + .toggle:after {left:40%;}
  116. /* Style: Square */
  117. .toggle-switchy[data-style='square'] > input + .toggle {border-radius:0;}
  118. .toggle-switchy[data-style='square'] > input + .toggle .switch {border-radius:0;}
  119. /* Text: Off */
  120. .toggle-switchy[data-text='false'] > input + .toggle:before,
  121. .toggle-switchy[data-text='false'] > input + .toggle:after {content:'';}
  122. .toggle-switchy[data-text='false'][data-size='xl'] > input + .toggle {width:80px;}
  123. .toggle-switchy[data-text='false'][data-size='lg'] > input + .toggle {width:70px;}
  124. .toggle-switchy[data-text='false'] > input + .toggle {width:60px;}
  125. .toggle-switchy[data-text='false'][data-size='sm'] > input + .toggle {width:50px;}
  126. .toggle-switchy[data-text='false'][data-size='xs'] > input + .toggle {width:40px;}
  127. /* Color: Red */
  128. .toggle-switchy[data-color='red'] > input:checked + .toggle {background:#e74c3c;}
  129. .toggle-switchy[data-color='red'] > input:checked + .toggle > .switch {border-color:#e74c3c;}
  130. /* Color: Orange */
  131. .toggle-switchy[data-color='orange'] > input:checked + .toggle {background:#e67e22;}
  132. .toggle-switchy[data-color='orange'] > input:checked + .toggle > .switch {border-color:#e67e22;}
  133. /* Color: Yellow */
  134. .toggle-switchy[data-color='yellow'] > input:checked + .toggle {background:#f1c40f;}
  135. .toggle-switchy[data-color='yellow'] > input:checked + .toggle > .switch {border-color:#f1c40f;}
  136. /* Color: Green */
  137. .toggle-switchy[data-color='green'] > input:checked + .toggle {background:#2ecc71;}
  138. .toggle-switchy[data-color='green'] > input:checked + .toggle > .switch {border-color:#2ecc71;}
  139. /* Color: Blue */
  140. .toggle-switchy[data-color='blue'] > input:checked + .toggle {background:#3498db;}
  141. .toggle-switchy[data-color='blue'] > input:checked + .toggle > .switch {border-color:#3498db;}
  142. /* Color: Purple */
  143. .toggle-switchy[data-color='purple'] > input:checked + .toggle {background:#9b59b6;}
  144. .toggle-switchy[data-color='purple'] > input:checked + .toggle > .switch {border-color:#9b59b6;}
  145. /* Color: Gray */
  146. .toggle-switchy[data-color='gray'] > input:checked + .toggle {background:#555;}
  147. .toggle-switchy[data-color='gray'] > input:checked + .toggle > .switch {border-color:#555;}
  148. <?php } ?>
  149. </style>
  150. <div class="envor-content">
  151. <!--
  152. Page Title start
  153. //-->
  154. <section class="envor-page-title-1" data-stellar-background-ratio="0.5">
  155. <div class="container">
  156. <div class="row">
  157. <div class="col-lg-9 col-md-9 col-sm-9">
  158. <h1><?php echo $lang->showWord("backend"); ?></h1>
  159. </div>
  160. </div>
  161. </div>
  162. <!--
  163. Page Title end
  164. //-->
  165. </section>
  166. <!--
  167. Main Content start
  168. //-->
  169. <a id="loadinghref"><div id="loading" style="display:none;"><img src="img/giphy.gif"/></div></a>
  170. <section class="envor-section">
  171. <div class="container">
  172. <div class="row">
  173. <div class="col-lg-12">
  174. <div class="envor-sorting" id="faq-sorting">
  175. <div class="envor-toggle">
  176. <!--Common Information-->
  177. <article class="envor-sorting-item css">
  178. <header><?php echo $lang->showWord("common_information"); ?><i class="fa fa-plus"></i></header>
  179. <section>
  180. <div class="form-group" style="display:<?php echo $am101;?>">
  181. <label><?php echo $lang->showWord("backend_connection_timeout"); ?></label>
  182. <input type="number" name="BackendConnTimeout" id="BackendConnTimeout" class="form-control" value="<?php echo $obj->{'BackendConnTimeout'};?>">
  183. <small class="form-text text-muted-red">seconds</small>
  184. </div>
  185. <div class="form-group" style="display:<?php echo $am101;?>">
  186. <label><?php echo $lang->showWord("offline_policy"); ?></label>
  187. <select class="form-control" id="OfflinePolicy" name="OfflinePolicy">
  188. <option value="0" <?php echo $obj->{'OfflinePolicy'}=="0"?"selected":""?>><?php echo $lang->showWord("local_list"); ?></option>
  189. <?php /* <option value="1" <?php echo $obj->{'OfflinePolicy'}=="1"?"selected":""?>>Phihong RFID tag</option>*/?>
  190. <option value="2" <?php echo $obj->{'OfflinePolicy'}=="2"?"selected":""?>><?php echo $lang->showWord("free_charging"); ?></option>
  191. <option value="3" <?php echo $obj->{'OfflinePolicy'}=="3"?"selected":""?>><?php echo $lang->showWord("no_charging"); ?></option>
  192. </select>
  193. </div>
  194. <div class="form-group" style="display:<?php echo $am101;?>">
  195. <label><?php echo $lang->showWord("offline_max_charge_energy"); ?></label>
  196. <small class="form-text text-muted-red">kWh</small>
  197. <input type="number" name="OfflineMaxChargeEnergy" id="OfflineMaxChargeEnergy" class="form-control" value="<?php echo $obj->{'OfflineMaxChargeEnergy'};?>">
  198. </div>
  199. <div class="form-group" style="display:<?php echo $am101;?>">
  200. <label><?php echo $lang->showWord("offline_max_charge_duration"); ?></label>
  201. <small class="form-text text-muted-red">minutes</small>
  202. <input type="number" name="OfflineMaxChargeDuration" id="OfflineMaxChargeDuration" class="form-control" value="<?php echo $obj->{'OfflineMaxChargeDuration'};?>">
  203. </div>
  204. </section>
  205. </article>
  206. <!--OCPP Backend-->
  207. <article class="envor-sorting-item css">
  208. <header><?php echo $lang->showWord("OCPP_backend"); ?><i class="fa fa-plus"></i></header>
  209. <section>
  210. <div class="form-group" style="display:<?php echo $am101;?>">
  211. <label><?php echo $lang->showWord("ocpp_connection_status"); ?></label>
  212. <input type="text" readonly class="form-control" placeholder="<?php echo $OcppConnStatus;?>">
  213. <input type="hidden" name="OcppConnStatus" id="OcppConnStatus" value="<?php echo $obj->{'OcppConnStatus'};?>">
  214. </div>
  215. <div class="form-group" style="display:<?php echo $am101;?>">
  216. <label><?php echo $lang->showWord("central_system_url"); ?></label>
  217. <input type="text" name="OcppServerURL" id="OcppServerURL" class="form-control" value="<?php echo $obj->{'OcppServerURL'};?>">
  218. </div>
  219. <div class="form-group" style="display:<?php echo $am101;?>">
  220. <label>Charge Box Id</label>
  221. <input type="text" name="ChargeBoxId" id="ChargeBoxId" class="form-control" value="<?php echo htmlspecialchars($obj->{'ChargeBoxId'});?>">
  222. </div>
  223. <div class="form-group" style="display:<?php echo $am101;?>">
  224. <label><?php echo $lang->showWord("charge_point_vendor"); ?></label>
  225. <input type="text" name="chargePointVendor" id="chargePointVendor" class="form-control" value="<?php echo htmlspecialchars($obj->{'chargePointVendor'});?>">
  226. </div>
  227. <div class="form-group" style="display:<?php echo $am101;?>">
  228. <label><?php echo $lang->showWord("ocpp_security_profile"); ?></label>
  229. <select class="form-control" id="OcppSecurityProfile" name="OcppSecurityProfile" onchange="OcppSecurityProfile_changed()">
  230. <option value="0" <?php echo $obj->{'OcppSecurityProfile'}=="0"?"selected":""?>><?php echo $lang->showWord("none_security"); ?></option>
  231. <option value="1" <?php echo $obj->{'OcppSecurityProfile'}=="1"?"selected":""?>><?php echo $lang->showWord("unsecured_transport_with_basic_atuentication"); ?></option>
  232. <option value="2" <?php echo $obj->{'OcppSecurityProfile'}=="2"?"selected":""?>><?php echo $lang->showWord("tls_with_basic_authentication"); ?></option>
  233. <option value="3" <?php echo $obj->{'OcppSecurityProfile'}=="3"?"selected":""?>><?php echo $lang->showWord("tls_with_client_side_certificates"); ?></option>
  234. </select>
  235. </div>
  236. <div id="OcppSecurityPasswordDiv" class="form-group" style="display:<?php echo $am101;?>">
  237. <label><?php echo $lang->showWord("ocpp_security_password"); ?></label>
  238. <input type="text" name="OcppSecurityPassword" id="OcppSecurityPassword" class="form-control" value="<?php echo htmlspecialchars($obj->{'OcppSecurityPassword'});?>">
  239. </div>
  240. <?php if(substr($ModelName,0,2)=="AX" || substr($ModelName,0,2)=="AW" || substr($ModelName,0,1)=="D"){?>
  241. <div class="form-group" style="display:block">
  242. <label><?php echo $lang->showWord("ocpp_receipt_url"); ?></label>
  243. <input type="text" name="OcppReceiptrURL" id="OcppReceiptrURL" class="form-control" value="<?php echo $obj->{'OcppReceiptrURL'};?>">
  244. </div>
  245. <div class="form-group" style="display:block">
  246. <label><?php echo $lang->showWord("local_loading_balance"); ?></label>
  247. <select class="form-control" id="isEnableLocalPowerSharging" name="isEnableLocalPowerSharging" onChange="isEnableLocalPowerSharging_changed()">
  248. <option value="0" <?php echo $obj->{'isEnableLocalPowerSharging'}=="0"?"selected":""?>><?php echo $lang->showWord("disable"); ?></option>
  249. <option value="1" <?php echo $obj->{'isEnableLocalPowerSharging'}=="1"?"selected":""?>><?php echo $lang->showWord("master"); ?></option>
  250. <option value="2" <?php echo $obj->{'isEnableLocalPowerSharging'}=="2"?"selected":""?>><?php echo $lang->showWord("slave"); ?></option>
  251. </select>
  252. </div>
  253. <div id="PowerSharingCapacityDiv" class="form-group" style="display:<?php echo $am101;?>">
  254. <label>Power Sharing Capacity</label><small class="form-text text-muted-red"> W</small>
  255. <input type="number" min="0" max="5000000" name="PowerSharingCapacity" id="PowerSharingCapacity" class="form-control" value="<?php echo $obj->{'PowerSharingCapacity'};?>">
  256. <small class="form-text text-muted-red">'0' means follow rating power from model name</small>
  257. </div>
  258. <div id="PowerSharingServerIPDiv" class="form-group" style="display:<?php echo $am101;?>">
  259. <label><?php echo $lang->showWord("power_sharing_server_ip"); ?></label>
  260. <input type="text" name="PowerSharingServerIP" id="PowerSharingServerIP" class="form-control" value="<?php echo $obj->{'PowerSharingServerIP'};?>">
  261. </div>
  262. <?php } ?>
  263. <div class="form-group" style="display:<?php echo $am101;?>">
  264. <label><?php echo $lang->showWord("maintain_server_connection_status"); ?></label>
  265. <input type="text" readonly class="form-control" placeholder="<?php echo $MaintainServerConnStatus;?>">
  266. <input type="hidden" name="MaintainServerConnStatus" id="MaintainServerConnStatus" value="<?php echo $obj->{'MaintainServerConnStatus'};?>">
  267. </div>
  268. <div class="form-group" style="display:<?php echo $am101;?>">
  269. <label><?php echo $lang->showWord("maintain_server_url"); ?></label>
  270. <input type="text" name="MaintainServerURL" id="MaintainServerURL" class="form-control" value="<?php echo $obj->{'MaintainServerURL'};?>">
  271. </div>
  272. <div class="form-group" style="display:<?php echo $am101;?>">
  273. <label><?php echo $lang->showWord("maintain_server_security_profile"); ?></label>
  274. <select class="form-control" id="MaintainServerSecurityProfile" name="MaintainServerSecurityProfile" onchange="MaintainServerSecurityProfile_changed()">
  275. <option value="0" <?php echo $obj->{'MaintainServerSecurityProfile'}=="0"?"selected":""?>><?php echo $lang->showWord("none_security"); ?></option>
  276. <option value="1" <?php echo $obj->{'MaintainServerSecurityProfile'}=="1"?"selected":""?>><?php echo $lang->showWord("unsecured_transport_with_basic_atuentication"); ?></option>
  277. <option value="2" <?php echo $obj->{'MaintainServerSecurityProfile'}=="2"?"selected":""?>><?php echo $lang->showWord("tls_with_basic_authentication"); ?></option>
  278. <!--<option value="3" <?php echo $obj->{'MaintainServerSecurityProfile'}=="3"?"selected":""?>><?php echo $lang->showWord("tls_with_client_side_certificates"); ?></option>-->
  279. </select>
  280. </div>
  281. <div id="MaintainServerSecurityPasswordDiv" class="form-group" style="display:<?php echo $am101;?>">
  282. <label><?php echo $lang->showWord("maintain_server_security_password"); ?></label>
  283. <input type="text" name="MaintainServerSecurityPassword" id="MaintainServerSecurityPassword" class="form-control" value="<?php echo htmlspecialchars($obj->{'MaintainServerSecurityPassword'});?>">
  284. </div>
  285. </section>
  286. </article>
  287. <?php if(substr($ModelName,0,1)=="D" && substr($ModelName,3,1)=="C"){ ?>
  288. <!--TTIA-->
  289. <article class="envor-sorting-item css">
  290. <header>TTIA<i class="fa fa-plus"></i></header>
  291. <section>
  292. <div class="form-group" style="display:<?php echo $am101;?>">
  293. <label>TTIA</label>
  294. <label class="toggle-switchy" for="isEnableTTIA" data-size="" data-style="rounded">
  295. <input type="checkbox" id="isEnableTTIA" <?php echo $obj->{'isEnableTTIA'}==1?"checked":"";?> onclick="isEnableTTIAChecked()">
  296. <span class="toggle">
  297. <span class="switch"></span>
  298. </span>
  299. </label>
  300. </div>
  301. <div id="server_addrDiv" class="form-group">
  302. <label>Server Address</label>
  303. <input type="text" name="server_addr" id="server_addr" class="form-control" value="<?php echo $obj->{'server_addr'};?>">
  304. </div>
  305. <div id="server_portDiv" class="form-group">
  306. <label>Server Port</label>
  307. <input type="text" name="server_port" id="server_port" class="form-control" value="<?php echo $obj->{'server_port'};?>">
  308. </div>
  309. <div id="busVenderIdDiv" class="form-group">
  310. <label>Bus Vender Id</label>
  311. <input type="text" name="busVenderId" id="busVenderId" class="form-control" value="<?php echo $obj->{'busVenderId'};?>">
  312. </div>
  313. <div id="EquipmentProviderDiv" class="form-group">
  314. <label>Equipment Provider</label>
  315. <input type="text" name="EquipmentProvider" id="EquipmentProvider" class="form-control" value="<?php echo $obj->{'EquipmentProvider'};?>">
  316. </div>
  317. <div id="TransportationCompanyNoDiv" class="form-group">
  318. <label>TransportationCompanyNo</label>
  319. <input type="text" name="TransportationCompanyNo" id="TransportationCompanyNo" class="form-control" value="<?php echo $obj->{'TransportationCompanyNo'};?>">
  320. </div>
  321. <div id="ChargeBoxIdDiv" class="form-group">
  322. <label>Charge Box Id</label>
  323. <input type="text" name="TTIAChargeBoxId" id="TTIAChargeBoxId" class="form-control" value="<?php echo $obj->{'TTIAChargeBoxId'};?>">
  324. </div>
  325. <div id="evseStationDiv" class="form-group">
  326. <label>EVSE Station</label>
  327. <input type="text" name="evseStation" id="evseStation" class="form-control" value="<?php echo $obj->{'evseStation'};?>">
  328. </div>
  329. </section>
  330. </article>
  331. <?php } ?>
  332. <article class="envor-sorting-item css">
  333. <div align="center"><button id="save"><?php echo $lang->showWord("set")?></button></div>
  334. </article>
  335. </div>
  336. </div>
  337. </div>
  338. </div>
  339. </div>
  340. </section>
  341. </div>
  342. <?php
  343. include 'foot.php';
  344. ?>
  345. <script type="text/JavaScript">
  346. <?php if(substr($ModelName,0,2)=="AX" || substr($ModelName,0,2)=="AW" || substr($ModelName,0,1)=="D"){?>
  347. $(document).ready(function(){
  348. isEnableLocalPowerSharging_changed();
  349. });
  350. <?php } ?>
  351. <?php if(substr($ModelName,0,1)=="D" && substr($ModelName,3,1)=="C"){?>
  352. $(document).ready(function(){
  353. isEnableTTIAChecked();
  354. });
  355. <?php } ?>
  356. OcppSecurityProfile_changed();
  357. MaintainServerSecurityProfile_changed();
  358. document.getElementById("save").onclick = function() {
  359. if(formCheck())
  360. {
  361. window.location="#loadinghref";
  362. document.getElementById("loading").style.display="block";
  363. // 發送 Ajax 查詢請求並處理
  364. var request = new XMLHttpRequest();
  365. request.open("POST", "set_backend_action.php");
  366. // POST 參數須使用 send() 發送
  367. var formData = new FormData();
  368. formData.append("BackendConnTimeout", document.getElementById("BackendConnTimeout").value);
  369. formData.append("OfflinePolicy", document.getElementById("OfflinePolicy").value);
  370. formData.append("OfflineMaxChargeEnergy", document.getElementById("OfflineMaxChargeEnergy").value);
  371. formData.append("OfflineMaxChargeDuration", document.getElementById("OfflineMaxChargeDuration").value);
  372. formData.append("OcppServerURL", escapeHtml(document.getElementById("OcppServerURL").value));
  373. formData.append("MaintainServerURL", escapeHtml(document.getElementById("MaintainServerURL").value));
  374. formData.append("ChargeBoxId", escapeHtml(document.getElementById("ChargeBoxId").value));
  375. formData.append("chargePointVendor", escapeHtml(document.getElementById("chargePointVendor").value));
  376. formData.append("OcppSecurityProfile", document.getElementById("OcppSecurityProfile").value);
  377. formData.append("OcppSecurityPassword", escapeHtml(document.getElementById("OcppSecurityPassword").value));
  378. //formData.append("file", file);
  379. formData.append("MaintainServerSecurityProfile", document.getElementById("MaintainServerSecurityProfile").value);
  380. formData.append("MaintainServerSecurityPassword", escapeHtml(document.getElementById("MaintainServerSecurityPassword").value));
  381. <?php if(substr($ModelName,0,2)=="AX" || substr($ModelName,0,2)=="AW" || substr($ModelName,0,1)=="D"){?>
  382. formData.append("isEnableLocalPowerSharging", document.getElementById("isEnableLocalPowerSharging").value);
  383. formData.append("PowerSharingServerIP", document.getElementById("PowerSharingServerIP").value);
  384. formData.append("PowerSharingCapacity", document.getElementById("PowerSharingCapacity").value);
  385. formData.append("OcppReceiptrURL", escapeHtml(document.getElementById("OcppReceiptrURL").value));
  386. <?php } ?>
  387. <?php if(substr($ModelName,0,1)=="D" && substr($ModelName,3,1)=="C"){?>
  388. formData.append("isEnableTTIA", (document.getElementById("isEnableTTIA").checked?"1":"0"));
  389. formData.append("server_addr", document.getElementById("server_addr").value);
  390. formData.append("server_port", document.getElementById("server_port").value);
  391. formData.append("busVenderId", document.getElementById("busVenderId").value);
  392. formData.append("EquipmentProvider", document.getElementById("EquipmentProvider").value);
  393. formData.append("TransportationCompanyNo", document.getElementById("TransportationCompanyNo").value);
  394. formData.append("TTIAChargeBoxId", document.getElementById("TTIAChargeBoxId").value);
  395. formData.append("evseStation", document.getElementById("evseStation").value);
  396. <?php } ?>
  397. // POST 請求必須設置表頭在 open() 下面,send() 上面
  398. // request.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  399. request.send(formData);
  400. request.onreadystatechange = function() {
  401. // 伺服器請求完成
  402. if (request.readyState == 4) {
  403. document.getElementById("loading").style.display="none";
  404. // 伺服器回應成功
  405. if (request.status == 200 && JSON.parse(request.responseText).result=="Success") {
  406. alert("<?php echo $lang->showWord("done")?>");
  407. location.href="set_backend.php";
  408. } else {
  409. alert(JSON.parse(request.responseText).message);
  410. }
  411. request = null;
  412. }
  413. }
  414. }
  415. }
  416. function formCheck()
  417. {
  418. var OcppServerURL = document.getElementById("OcppServerURL").value;
  419. var MaintainServerURL = document.getElementById("MaintainServerURL").value;
  420. var ChargeBoxId = document.getElementById("ChargeBoxId").value;
  421. var chargePointVendor = document.getElementById("chargePointVendor").value;
  422. var tests=/^(ws|wss):\/\/((([0-9]{1,3}\.){3}[0-9]{1,3})|(([a-zA-Z0-9]+(([\-]?[a-zA-Z0-9]+)*\.)+)*[a-zA-Z]{2,}))+/;
  423. if(OcppServerURL!=""){
  424. if(OcppServerURL.match(tests)==null){
  425. alert("OcppServerURL format error!");
  426. document.getElementById("OcppServerURL").focus();
  427. return false;
  428. }
  429. }
  430. if(MaintainServerURL!=""){
  431. if(MaintainServerURL.match(tests)==null){
  432. alert("MaintainServerURL format error!");
  433. document.getElementById("MaintainServerURL").focus();
  434. return false;
  435. }
  436. }
  437. if(ChargeBoxId!=""){
  438. if(ChargeBoxId.length>25){
  439. alert("Length of ChargeBoxId should be less than 25!");
  440. document.getElementById("ChargeBoxId").focus();
  441. return false;
  442. }
  443. }
  444. if(chargePointVendor!=""){
  445. if(chargePointVendor.length>20){
  446. alert("Length of chargePointVendor should be less than 20!");
  447. document.getElementById("chargePointVendor").focus();
  448. return false;
  449. }
  450. }
  451. <?php if(substr($ModelName,0,1)=="D" && substr($ModelName,3,1)=="C"){?>
  452. var server_port = document.getElementById("server_port").value;
  453. if(server_port!=""){
  454. if(server_port>65535){
  455. alert("Value of Server Port should be less than 65535!");
  456. document.getElementById("server_port").focus();
  457. return false;
  458. }
  459. }
  460. var busVenderId = document.getElementById("busVenderId").value;
  461. if(busVenderId!=""){
  462. if(busVenderId>65535){
  463. alert("Value of Bus Vender Id should be less than 65535!");
  464. document.getElementById("busVenderId").focus();
  465. return false;
  466. }
  467. }
  468. var EquipmentProvider = document.getElementById("EquipmentProvider").value;
  469. if(EquipmentProvider!=""){
  470. if(UTF8Length(EquipmentProvider)>15){
  471. alert("Length of Equipment Provider should be less than 15(Chinese 5 words)!");
  472. document.getElementById("EquipmentProvider").focus();
  473. return false;
  474. }
  475. }
  476. var evseStation = document.getElementById("evseStation").value;
  477. if(evseStation!=""){
  478. if(UTF8Length(evseStation)>15){
  479. alert("Length of EVSE Station should be less than 15(Chinese 5 words)!");
  480. document.getElementById("evseStation").focus();
  481. return false;
  482. }
  483. }
  484. var TransportationCompanyNo = document.getElementById("TransportationCompanyNo").value;
  485. if(TransportationCompanyNo!=""){
  486. if(TransportationCompanyNo>255){
  487. alert("Value of Transportation Company No should be less than 255!");
  488. document.getElementById("TransportationCompanyNo").focus();
  489. return false;
  490. }
  491. }
  492. var TTIAChargeBoxId = document.getElementById("TTIAChargeBoxId").value;
  493. if(TTIAChargeBoxId!=""){
  494. if(TTIAChargeBoxId>255){
  495. alert("Value of Charge Box Id should be less than 255!");
  496. document.getElementById("TTIAChargeBoxId").focus();
  497. return false;
  498. }
  499. }
  500. <?php } ?>
  501. return true;
  502. }
  503. function OcppSecurityProfile_changed(){
  504. if(document.getElementById("OcppSecurityProfile").value == "1" || document.getElementById("OcppSecurityProfile").value == "2" || document.getElementById("OcppSecurityProfile").value == "3"){
  505. document.getElementById("OcppSecurityPasswordDiv").style.display="block";
  506. }
  507. else{
  508. document.getElementById("OcppSecurityPasswordDiv").style.display="none";
  509. }
  510. }
  511. function MaintainServerSecurityProfile_changed(){
  512. if(document.getElementById("MaintainServerSecurityProfile").value == "1" || document.getElementById("MaintainServerSecurityProfile").value == "2" || document.getElementById("MaintainServerSecurityProfile").value == "3"){
  513. document.getElementById("MaintainServerSecurityPasswordDiv").style.display="block";
  514. }
  515. else{
  516. document.getElementById("MaintainServerSecurityPasswordDiv").style.display="none";
  517. }
  518. }
  519. <?php if(substr($ModelName,0,2)=="AX" || substr($ModelName,0,2)=="AW" || substr($ModelName,0,1)=="D"){?>
  520. function isEnableLocalPowerSharging_changed(){
  521. /*
  522. if(document.getElementById("isEnableLocalPowerSharging").selectedIndex!=0){
  523. document.getElementById("OcppServerURL").setAttribute("readOnly","true");
  524. document.getElementById("MaintainServerURL").setAttribute("readOnly","true");
  525. document.getElementById("ChargeBoxId").setAttribute("readOnly","true");
  526. document.getElementById("chargePointVendor").setAttribute("readOnly","true");
  527. }
  528. else{
  529. document.getElementById("OcppServerURL").removeAttribute("readOnly");
  530. document.getElementById("MaintainServerURL").removeAttribute("readOnly");
  531. document.getElementById("ChargeBoxId").removeAttribute("readOnly");
  532. document.getElementById("chargePointVendor").removeAttribute("readOnly");
  533. }*/
  534. if(document.getElementById("isEnableLocalPowerSharging").selectedIndex==1)
  535. {
  536. document.getElementById("PowerSharingCapacityDiv").style.display="block";
  537. document.getElementById("PowerSharingServerIPDiv").style.display="none";
  538. }
  539. else if(document.getElementById("isEnableLocalPowerSharging").selectedIndex==2)
  540. {
  541. document.getElementById("PowerSharingCapacityDiv").style.display="none";
  542. document.getElementById("PowerSharingServerIPDiv").style.display="block";
  543. }
  544. else
  545. {
  546. document.getElementById("PowerSharingCapacityDiv").style.display="none";
  547. document.getElementById("PowerSharingServerIPDiv").style.display="none";
  548. }
  549. }
  550. <?php } ?>
  551. <?php if(substr($ModelName,0,1)=="D" && substr($ModelName,3,1)=="C"){?>
  552. function isEnableTTIAChecked(){
  553. if(document.getElementById("isEnableTTIA").checked){
  554. document.getElementById("server_addrDiv").style.display="block";
  555. document.getElementById("server_portDiv").style.display="block";
  556. document.getElementById("busVenderIdDiv").style.display="block";
  557. document.getElementById("EquipmentProviderDiv").style.display="block";
  558. document.getElementById("TransportationCompanyNoDiv").style.display="block";
  559. document.getElementById("ChargeBoxIdDiv").style.display="block";
  560. document.getElementById("evseStationDiv").style.display="block";
  561. }
  562. else{
  563. document.getElementById("server_addrDiv").style.display="none";
  564. document.getElementById("server_portDiv").style.display="none";
  565. document.getElementById("busVenderIdDiv").style.display="none";
  566. document.getElementById("EquipmentProviderDiv").style.display="none";
  567. document.getElementById("TransportationCompanyNoDiv").style.display="none";
  568. document.getElementById("ChargeBoxIdDiv").style.display="none";
  569. document.getElementById("evseStationDiv").style.display="none";
  570. }
  571. }
  572. <?php } ?>
  573. function isNumberKey(evt)
  574. {
  575. var charCode = (evt.which) ? evt.which : event.keyCode
  576. if (charCode > 31 && (charCode < 48 || charCode > 57) && (charCode != 46))
  577. return false;
  578. return true;
  579. }
  580. function UTF8Length(tx){
  581. var str = encodeURIComponent(tx);
  582. len = str.replace(/%[A-F\d]{2}/g, 'U').length;
  583. return len;
  584. }
  585. function escapeHtml(text) {
  586. var map = {
  587. '&': '&amp;',
  588. '<': '&lt;',
  589. '>': '&gt;',
  590. '"': '&quot;',
  591. "'": '&#039;'
  592. };
  593. return text.replace(/[&<>"']/g, function(m) { return map[m]; });
  594. }
  595. </script>
  596. </html>