set_backend.php 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716
  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="password" name="OcppSecurityPassword" id="OcppSecurityPassword" class="form-control floatingPassword" value="<?php echo htmlspecialchars($obj->{'OcppSecurityPassword'});?>">
  239. <i id="checkEye1" class="fa fa-eye" style="opacity: 0.5;color: red;"></i>
  240. </div>
  241. <div id="TLSwithClientSideCertificatesDiv" class="form-group file-upload" style="display:<?php echo $am101;?>">
  242. <div class="file-upload">
  243. <label><?php echo $lang->showWord("private_key_file"); ?> sha256 hash: <font color="#ff0000">(<?php echo strlen($obj->{'ChargePointPrivateKey'})>0?$obj->{'ChargePointPrivateKey'}:'File not found'?>)</font></label>
  244. <div class="file-loading">
  245. <input name="private_key" id="private_key" type="file" class="file" data-show-preview="false" data-show-upload="false" accept=".key">
  246. </div>
  247. </div>
  248. <div class="file-upload">
  249. <label><?php echo $lang->showWord("certificate_file"); ?> sha256 hash: <font color="#ff0000">(<?php echo strlen($obj->{'ChargePointCertificate'})>0?$obj->{'ChargePointCertificate'}:"File not found"?>)</font></label>
  250. <div class="file-loading">
  251. <input name="certificate" id="certificate" type="file" class="file" data-show-preview="false" data-show-upload="false" accept=".pem">
  252. </div>
  253. </div>
  254. <div class="file-upload">
  255. <label><?php echo $lang->showWord("MORootCertificate_file"); ?> sha256 hash: <font color="#ff0000">(<?php echo strlen($obj->{'MORootCertificate'})>0?$obj->{'MORootCertificate'}:"File not found"?>)</font></label>
  256. <div class="file-loading">
  257. <input name="MORootCertificate" id="MORootCertificate" type="file" class="file" data-show-preview="false" data-show-upload="false" accept=".pem">
  258. </div>
  259. </div>
  260. <div class="file-upload">
  261. <label><?php echo $lang->showWord("CSRootCertificate_file"); ?> sha256 hash: <font color="#ff0000">(<?php echo strlen($obj->{'CSRootCertificate'})>0?$obj->{'CSRootCertificate'}:"File not found"?>)</font></label>
  262. <div class="file-loading">
  263. <input name="CSRootCertificate" id="CSRootCertificate" type="file" class="file" data-show-preview="false" data-show-upload="false" accept=".pem">
  264. </div>
  265. </div>
  266. <div class="file-upload">
  267. <label><?php echo $lang->showWord("ManufacturerRootCertificate_file"); ?> sha256 hash: <font color="#ff0000">(<?php echo strlen($obj->{'ManufacturerRootCertificate'})>0?$obj->{'ManufacturerRootCertificate'}:"File not found"?>)</font></label>
  268. <div class="file-loading">
  269. <input name="ManufacturerRootCertificate" id="ManufacturerRootCertificate" type="file" class="file" data-show-preview="false" data-show-upload="false" accept=".pem">
  270. </div>
  271. </div>
  272. </div>
  273. <?php if(substr($ModelName,0,2)=="AX" || substr($ModelName,0,1)=="D"){?>
  274. <div class="form-group" style="display:block">
  275. <label><?php echo $lang->showWord("ocpp_receipt_url"); ?></label>
  276. <input type="text" name="OcppReceiptrURL" id="OcppReceiptrURL" class="form-control" value="<?php echo $obj->{'OcppReceiptrURL'};?>">
  277. </div>
  278. <?php } ?>
  279. <?php if(substr($ModelName,0,2)=="AX" || substr($ModelName,0,2)=="AW" || substr($ModelName,0,1)=="D"){?>
  280. <div class="form-group" style="display:block">
  281. <label><?php echo $lang->showWord("local_loading_balance"); ?></label>
  282. <select class="form-control" id="isEnableLocalPowerSharging" name="isEnableLocalPowerSharging" onChange="isEnableLocalPowerSharging_changed()">
  283. <option value="0" <?php echo $obj->{'isEnableLocalPowerSharging'}=="0"?"selected":""?>><?php echo $lang->showWord("disable"); ?></option>
  284. <option value="1" <?php echo $obj->{'isEnableLocalPowerSharging'}=="1"?"selected":""?>><?php echo $lang->showWord("master"); ?></option>
  285. <option value="2" <?php echo $obj->{'isEnableLocalPowerSharging'}=="2"?"selected":""?>><?php echo $lang->showWord("slave"); ?></option>
  286. </select>
  287. </div>
  288. <div id="PowerSharingCapacityDiv" class="form-group" style="display:<?php echo $am101;?>">
  289. <label>Power Sharing Capacity</label><small class="form-text text-muted-red"> W</small>
  290. <input type="number" min="0" max="5000000" name="PowerSharingCapacity" id="PowerSharingCapacity" class="form-control" value="<?php echo $obj->{'PowerSharingCapacity'};?>">
  291. <small class="form-text text-muted-red">'0' means follow rating power from model name</small>
  292. </div>
  293. <div id="PowerSharingServerIPDiv" class="form-group" style="display:<?php echo $am101;?>">
  294. <label><?php echo $lang->showWord("power_sharing_server_ip"); ?></label>
  295. <input type="text" name="PowerSharingServerIP" id="PowerSharingServerIP" class="form-control" value="<?php echo $obj->{'PowerSharingServerIP'};?>">
  296. </div>
  297. <?php } ?>
  298. <div class="form-group" style="display:<?php echo $am101;?>">
  299. <label><?php echo $lang->showWord("maintain_server_connection_status"); ?></label>
  300. <input type="text" readonly class="form-control" placeholder="<?php echo $MaintainServerConnStatus;?>">
  301. <input type="hidden" name="MaintainServerConnStatus" id="MaintainServerConnStatus" value="<?php echo $obj->{'MaintainServerConnStatus'};?>">
  302. </div>
  303. <div class="form-group" style="display:<?php echo $am101;?>">
  304. <label><?php echo $lang->showWord("maintain_server_url"); ?></label>
  305. <input type="text" name="MaintainServerURL" id="MaintainServerURL" class="form-control" value="<?php echo $obj->{'MaintainServerURL'};?>">
  306. </div>
  307. <div class="form-group" style="display:<?php echo $am101;?>">
  308. <label><?php echo $lang->showWord("maintain_server_security_profile"); ?></label>
  309. <select class="form-control" id="MaintainServerSecurityProfile" name="MaintainServerSecurityProfile" onchange="MaintainServerSecurityProfile_changed()">
  310. <option value="0" <?php echo $obj->{'MaintainServerSecurityProfile'}=="0"?"selected":""?>><?php echo $lang->showWord("none_security"); ?></option>
  311. <option value="1" <?php echo $obj->{'MaintainServerSecurityProfile'}=="1"?"selected":""?>><?php echo $lang->showWord("unsecured_transport_with_basic_atuentication"); ?></option>
  312. <option value="2" <?php echo $obj->{'MaintainServerSecurityProfile'}=="2"?"selected":""?>><?php echo $lang->showWord("tls_with_basic_authentication"); ?></option>
  313. <!--<option value="3" <?php echo $obj->{'MaintainServerSecurityProfile'}=="3"?"selected":""?>><?php echo $lang->showWord("tls_with_client_side_certificates"); ?></option>-->
  314. </select>
  315. </div>
  316. <div id="MaintainServerSecurityPasswordDiv" class="form-group" style="display:<?php echo $am101;?>">
  317. <label><?php echo $lang->showWord("maintain_server_security_password"); ?></label>
  318. <input type="password" name="MaintainServerSecurityPassword" id="MaintainServerSecurityPassword" class="form-control floatingPassword" value="<?php echo htmlspecialchars($obj->{'MaintainServerSecurityPassword'});?>">
  319. <i id="checkEye2" class="fa fa-eye" style="opacity: 0.5;color: red;"></i>
  320. </div>
  321. </section>
  322. </article>
  323. <?php if(substr($ModelName,0,1)=="D" && substr($ModelName,3,1)=="C"){ ?>
  324. <!--TTIA-->
  325. <article class="envor-sorting-item css">
  326. <header>TTIA<i class="fa fa-plus"></i></header>
  327. <section>
  328. <div class="form-group" style="display:<?php echo $am101;?>">
  329. <label>TTIA</label>
  330. <label class="toggle-switchy" for="isEnableTTIA" data-size="" data-style="rounded">
  331. <input type="checkbox" id="isEnableTTIA" <?php echo $obj->{'isEnableTTIA'}==1?"checked":"";?> onclick="isEnableTTIAChecked()">
  332. <span class="toggle">
  333. <span class="switch"></span>
  334. </span>
  335. </label>
  336. </div>
  337. <div id="server_addrDiv" class="form-group">
  338. <label>Server Address</label>
  339. <input type="text" name="server_addr" id="server_addr" class="form-control" value="<?php echo $obj->{'server_addr'};?>">
  340. </div>
  341. <div id="server_portDiv" class="form-group">
  342. <label>Server Port</label>
  343. <input type="text" name="server_port" id="server_port" class="form-control" value="<?php echo $obj->{'server_port'};?>">
  344. </div>
  345. <div id="busVenderIdDiv" class="form-group">
  346. <label>Bus Vender Id</label>
  347. <input type="text" name="busVenderId" id="busVenderId" class="form-control" value="<?php echo $obj->{'busVenderId'};?>">
  348. </div>
  349. <div id="EquipmentProviderDiv" class="form-group">
  350. <label>Equipment Provider</label>
  351. <input type="text" name="EquipmentProvider" id="EquipmentProvider" class="form-control" value="<?php echo $obj->{'EquipmentProvider'};?>">
  352. </div>
  353. <div id="TransportationCompanyNoDiv" class="form-group">
  354. <label>TransportationCompanyNo</label>
  355. <input type="text" name="TransportationCompanyNo" id="TransportationCompanyNo" class="form-control" value="<?php echo $obj->{'TransportationCompanyNo'};?>">
  356. </div>
  357. <div id="ChargeBoxIdDiv" class="form-group">
  358. <label>Charge Box Id</label>
  359. <input type="text" name="TTIAChargeBoxId" id="TTIAChargeBoxId" class="form-control" value="<?php echo $obj->{'TTIAChargeBoxId'};?>">
  360. </div>
  361. <div id="evseStationDiv" class="form-group">
  362. <label>EVSE Station</label>
  363. <input type="text" name="evseStation" id="evseStation" class="form-control" value="<?php echo $obj->{'evseStation'};?>">
  364. </div>
  365. </section>
  366. </article>
  367. <?php } ?>
  368. <article class="envor-sorting-item css">
  369. <div align="center"><button id="save"><?php echo $lang->showWord("set")?></button></div>
  370. </article>
  371. </div>
  372. </div>
  373. </div>
  374. </div>
  375. </div>
  376. </section>
  377. </div>
  378. <?php
  379. include 'foot.php';
  380. ?>
  381. <script type="text/JavaScript">
  382. <?php if(substr($ModelName,0,2)=="AX" || substr($ModelName,0,2)=="AW" || substr($ModelName,0,1)=="D"){?>
  383. $(document).ready(function(){
  384. isEnableLocalPowerSharging_changed();
  385. });
  386. <?php } ?>
  387. <?php if(substr($ModelName,0,1)=="D" && substr($ModelName,3,1)=="C"){?>
  388. $(document).ready(function(){
  389. isEnableTTIAChecked();
  390. });
  391. <?php } ?>
  392. OcppSecurityProfile_changed();
  393. MaintainServerSecurityProfile_changed();
  394. document.getElementById("save").onclick = function() {
  395. if(formCheck())
  396. {
  397. window.location="#loadinghref";
  398. document.getElementById("loading").style.display="block";
  399. // 發送 Ajax 查詢請求並處理
  400. var request = new XMLHttpRequest();
  401. request.open("POST", "set_backend_action.php");
  402. // POST 參數須使用 send() 發送
  403. var formData = new FormData();
  404. if(document.getElementById("private_key").value != ""){
  405. var fileInput = document.getElementById('private_key');
  406. var file = fileInput.files[0];
  407. formData.append("private_key", file);
  408. }
  409. if(document.getElementById("certificate").value != ""){
  410. var fileInput = document.getElementById('certificate');
  411. var file = fileInput.files[0];
  412. formData.append("certificate", file);
  413. }
  414. if(document.getElementById("MORootCertificate").value != ""){
  415. var fileInput = document.getElementById('MORootCertificate');
  416. var file = fileInput.files[0];
  417. formData.append("MORootCertificate", file);
  418. }
  419. if(document.getElementById("CSRootCertificate").value != ""){
  420. var fileInput = document.getElementById('CSRootCertificate');
  421. var file = fileInput.files[0];
  422. formData.append("CSRootCertificate", file);
  423. }
  424. if(document.getElementById("ManufacturerRootCertificate").value != ""){
  425. var fileInput = document.getElementById('ManufacturerRootCertificate');
  426. var file = fileInput.files[0];
  427. formData.append("ManufacturerRootCertificate", file);
  428. }
  429. formData.append("BackendConnTimeout", document.getElementById("BackendConnTimeout").value);
  430. formData.append("OfflinePolicy", document.getElementById("OfflinePolicy").value);
  431. formData.append("OfflineMaxChargeEnergy", document.getElementById("OfflineMaxChargeEnergy").value);
  432. formData.append("OfflineMaxChargeDuration", document.getElementById("OfflineMaxChargeDuration").value);
  433. formData.append("OcppServerURL", escapeHtml(document.getElementById("OcppServerURL").value));
  434. formData.append("MaintainServerURL", escapeHtml(document.getElementById("MaintainServerURL").value));
  435. formData.append("ChargeBoxId", escapeHtml(document.getElementById("ChargeBoxId").value));
  436. formData.append("chargePointVendor", escapeHtml(document.getElementById("chargePointVendor").value));
  437. formData.append("OcppSecurityProfile", document.getElementById("OcppSecurityProfile").value);
  438. formData.append("OcppSecurityPassword", escapeHtml(document.getElementById("OcppSecurityPassword").value));
  439. //formData.append("file", file);
  440. formData.append("MaintainServerSecurityProfile", document.getElementById("MaintainServerSecurityProfile").value);
  441. formData.append("MaintainServerSecurityPassword", escapeHtml(document.getElementById("MaintainServerSecurityPassword").value));
  442. <?php if(substr($ModelName,0,2)=="AX" || substr($ModelName,0,2)=="AW" || substr($ModelName,0,1)=="D"){?>
  443. formData.append("isEnableLocalPowerSharging", document.getElementById("isEnableLocalPowerSharging").value);
  444. formData.append("PowerSharingServerIP", document.getElementById("PowerSharingServerIP").value);
  445. formData.append("PowerSharingCapacity", document.getElementById("PowerSharingCapacity").value);
  446. <?php } ?>
  447. <?php if(substr($ModelName,0,2)=="AX" || substr($ModelName,0,1)=="D"){?>
  448. formData.append("OcppReceiptrURL", escapeHtml(document.getElementById("OcppReceiptrURL").value));
  449. <?php } ?>
  450. <?php if(substr($ModelName,0,1)=="D" && substr($ModelName,3,1)=="C"){?>
  451. formData.append("isEnableTTIA", (document.getElementById("isEnableTTIA").checked?"1":"0"));
  452. formData.append("server_addr", document.getElementById("server_addr").value);
  453. formData.append("server_port", document.getElementById("server_port").value);
  454. formData.append("busVenderId", document.getElementById("busVenderId").value);
  455. formData.append("EquipmentProvider", document.getElementById("EquipmentProvider").value);
  456. formData.append("TransportationCompanyNo", document.getElementById("TransportationCompanyNo").value);
  457. formData.append("TTIAChargeBoxId", document.getElementById("TTIAChargeBoxId").value);
  458. formData.append("evseStation", document.getElementById("evseStation").value);
  459. <?php } ?>
  460. // POST 請求必須設置表頭在 open() 下面,send() 上面
  461. // request.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  462. request.send(formData);
  463. request.onreadystatechange = function() {
  464. // 伺服器請求完成
  465. if (request.readyState == 4) {
  466. document.getElementById("loading").style.display="none";
  467. // 伺服器回應成功
  468. if (request.status == 200 && JSON.parse(request.responseText).result=="Success") {
  469. alert("<?php echo $lang->showWord("done")?>");
  470. location.href="set_backend.php";
  471. } else {
  472. alert(JSON.parse(request.responseText).message);
  473. }
  474. request = null;
  475. }
  476. }
  477. }
  478. }
  479. function formCheck()
  480. {
  481. var OcppServerURL = document.getElementById("OcppServerURL").value;
  482. var MaintainServerURL = document.getElementById("MaintainServerURL").value;
  483. var ChargeBoxId = document.getElementById("ChargeBoxId").value;
  484. var chargePointVendor = document.getElementById("chargePointVendor").value;
  485. 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,}))+/;
  486. if(OcppServerURL!=""){
  487. if(OcppServerURL.match(tests)==null){
  488. alert("OcppServerURL format error!");
  489. document.getElementById("OcppServerURL").focus();
  490. return false;
  491. }
  492. }
  493. if(MaintainServerURL!=""){
  494. if(MaintainServerURL.match(tests)==null){
  495. alert("MaintainServerURL format error!");
  496. document.getElementById("MaintainServerURL").focus();
  497. return false;
  498. }
  499. }
  500. if(ChargeBoxId!=""){
  501. if(ChargeBoxId.length>25){
  502. alert("Length of ChargeBoxId should be less than 25!");
  503. document.getElementById("ChargeBoxId").focus();
  504. return false;
  505. }
  506. }
  507. if(chargePointVendor!=""){
  508. if(chargePointVendor.length>20){
  509. alert("Length of chargePointVendor should be less than 20!");
  510. document.getElementById("chargePointVendor").focus();
  511. return false;
  512. }
  513. }
  514. <?php if(substr($ModelName,0,1)=="D" && substr($ModelName,3,1)=="C"){?>
  515. var server_port = document.getElementById("server_port").value;
  516. if(server_port!=""){
  517. if(server_port>65535){
  518. alert("Value of Server Port should be less than 65535!");
  519. document.getElementById("server_port").focus();
  520. return false;
  521. }
  522. }
  523. var busVenderId = document.getElementById("busVenderId").value;
  524. if(busVenderId!=""){
  525. if(busVenderId>65535){
  526. alert("Value of Bus Vender Id should be less than 65535!");
  527. document.getElementById("busVenderId").focus();
  528. return false;
  529. }
  530. }
  531. var EquipmentProvider = document.getElementById("EquipmentProvider").value;
  532. if(EquipmentProvider!=""){
  533. if(UTF8Length(EquipmentProvider)>15){
  534. alert("Length of Equipment Provider should be less than 15(Chinese 5 words)!");
  535. document.getElementById("EquipmentProvider").focus();
  536. return false;
  537. }
  538. }
  539. var evseStation = document.getElementById("evseStation").value;
  540. if(evseStation!=""){
  541. if(UTF8Length(evseStation)>15){
  542. alert("Length of EVSE Station should be less than 15(Chinese 5 words)!");
  543. document.getElementById("evseStation").focus();
  544. return false;
  545. }
  546. }
  547. var TransportationCompanyNo = document.getElementById("TransportationCompanyNo").value;
  548. if(TransportationCompanyNo!=""){
  549. if(TransportationCompanyNo>255){
  550. alert("Value of Transportation Company No should be less than 255!");
  551. document.getElementById("TransportationCompanyNo").focus();
  552. return false;
  553. }
  554. }
  555. var TTIAChargeBoxId = document.getElementById("TTIAChargeBoxId").value;
  556. if(TTIAChargeBoxId!=""){
  557. if(TTIAChargeBoxId>255){
  558. alert("Value of Charge Box Id should be less than 255!");
  559. document.getElementById("TTIAChargeBoxId").focus();
  560. return false;
  561. }
  562. }
  563. <?php } ?>
  564. return true;
  565. }
  566. function OcppSecurityProfile_changed(){
  567. if(document.getElementById("OcppSecurityProfile").value == "1" || document.getElementById("OcppSecurityProfile").value == "2" || document.getElementById("OcppSecurityProfile").value == "3"){
  568. document.getElementById("OcppSecurityPasswordDiv").style.display="block";
  569. if(document.getElementById("OcppSecurityProfile").value == "3"){
  570. document.getElementById("TLSwithClientSideCertificatesDiv").style.display="block";
  571. }
  572. else{
  573. document.getElementById("TLSwithClientSideCertificatesDiv").style.display="none";
  574. }
  575. }
  576. else{
  577. document.getElementById("OcppSecurityPasswordDiv").style.display="none";
  578. document.getElementById("TLSwithClientSideCertificatesDiv").style.display="none";
  579. }
  580. }
  581. function MaintainServerSecurityProfile_changed(){
  582. if(document.getElementById("MaintainServerSecurityProfile").value == "1" || document.getElementById("MaintainServerSecurityProfile").value == "2" || document.getElementById("MaintainServerSecurityProfile").value == "3"){
  583. document.getElementById("MaintainServerSecurityPasswordDiv").style.display="block";
  584. }
  585. else{
  586. document.getElementById("MaintainServerSecurityPasswordDiv").style.display="none";
  587. }
  588. }
  589. <?php if(substr($ModelName,0,2)=="AX" || substr($ModelName,0,2)=="AW" || substr($ModelName,0,1)=="D"){?>
  590. function isEnableLocalPowerSharging_changed(){
  591. /*
  592. if(document.getElementById("isEnableLocalPowerSharging").selectedIndex!=0){
  593. document.getElementById("OcppServerURL").setAttribute("readOnly","true");
  594. document.getElementById("MaintainServerURL").setAttribute("readOnly","true");
  595. document.getElementById("ChargeBoxId").setAttribute("readOnly","true");
  596. document.getElementById("chargePointVendor").setAttribute("readOnly","true");
  597. }
  598. else{
  599. document.getElementById("OcppServerURL").removeAttribute("readOnly");
  600. document.getElementById("MaintainServerURL").removeAttribute("readOnly");
  601. document.getElementById("ChargeBoxId").removeAttribute("readOnly");
  602. document.getElementById("chargePointVendor").removeAttribute("readOnly");
  603. }*/
  604. if(document.getElementById("isEnableLocalPowerSharging").selectedIndex==1)
  605. {
  606. document.getElementById("PowerSharingCapacityDiv").style.display="block";
  607. document.getElementById("PowerSharingServerIPDiv").style.display="none";
  608. }
  609. else if(document.getElementById("isEnableLocalPowerSharging").selectedIndex==2)
  610. {
  611. document.getElementById("PowerSharingCapacityDiv").style.display="none";
  612. document.getElementById("PowerSharingServerIPDiv").style.display="block";
  613. }
  614. else
  615. {
  616. document.getElementById("PowerSharingCapacityDiv").style.display="none";
  617. document.getElementById("PowerSharingServerIPDiv").style.display="none";
  618. }
  619. }
  620. <?php } ?>
  621. <?php if(substr($ModelName,0,1)=="D" && substr($ModelName,3,1)=="C"){?>
  622. function isEnableTTIAChecked(){
  623. if(document.getElementById("isEnableTTIA").checked){
  624. document.getElementById("server_addrDiv").style.display="block";
  625. document.getElementById("server_portDiv").style.display="block";
  626. document.getElementById("busVenderIdDiv").style.display="block";
  627. document.getElementById("EquipmentProviderDiv").style.display="block";
  628. document.getElementById("TransportationCompanyNoDiv").style.display="block";
  629. document.getElementById("ChargeBoxIdDiv").style.display="block";
  630. document.getElementById("evseStationDiv").style.display="block";
  631. }
  632. else{
  633. document.getElementById("server_addrDiv").style.display="none";
  634. document.getElementById("server_portDiv").style.display="none";
  635. document.getElementById("busVenderIdDiv").style.display="none";
  636. document.getElementById("EquipmentProviderDiv").style.display="none";
  637. document.getElementById("TransportationCompanyNoDiv").style.display="none";
  638. document.getElementById("ChargeBoxIdDiv").style.display="none";
  639. document.getElementById("evseStationDiv").style.display="none";
  640. }
  641. }
  642. <?php } ?>
  643. function isNumberKey(evt)
  644. {
  645. var charCode = (evt.which) ? evt.which : event.keyCode
  646. if (charCode > 31 && (charCode < 48 || charCode > 57) && (charCode != 46))
  647. return false;
  648. return true;
  649. }
  650. function UTF8Length(tx){
  651. var str = encodeURIComponent(tx);
  652. len = str.replace(/%[A-F\d]{2}/g, 'U').length;
  653. return len;
  654. }
  655. function escapeHtml(text) {
  656. var map = {
  657. '&': '&amp;',
  658. '<': '&lt;',
  659. '>': '&gt;',
  660. '"': '&quot;',
  661. "'": '&#039;'
  662. };
  663. return text.replace(/[&<>"']/g, function(m) { return map[m]; });
  664. }
  665. $("#checkEye1").click(function () {
  666. if($(this).hasClass('fa-eye')){
  667. $("#OcppSecurityPassword").attr('type', 'text');
  668. }else{
  669. $("#OcppSecurityPassword").attr('type', 'password');
  670. }
  671. $("#checkEye1").toggleClass('fa-eye').toggleClass('fa-eye-slash');
  672. });
  673. $("#checkEye2").click(function () {
  674. if($(this).hasClass('fa-eye')){
  675. $("#MaintainServerSecurityPassword").attr('type', 'text');
  676. }else{
  677. $("#MaintainServerSecurityPassword").attr('type', 'password');
  678. }
  679. $("#checkEye2").toggleClass('fa-eye').toggleClass('fa-eye-slash');
  680. });
  681. </script>
  682. </html>