123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- <?php
- // 設置資料類型 json,編碼格式 utf-8
- header('Content-Type: application/json; charset=UTF-8');
-
- // 判斷如果是 GET 請求,則進行搜尋;如果是 POST 請求,則進行新建
- // $_SERVER['REQUEST_METHOD'] 返回訪問頁面使用的請求方法
- if ($_SERVER['REQUEST_METHOD'] == "GET") {
- create();
- } else if ($_SERVER['REQUEST_METHOD'] == "POST") {
- create();
- }
- // 新建員工
- function create() {
- $pattern="/^(ws|wss):\/\/((([0-9]{1,3}\.){3}[0-9]{1,3})|(([a-zA-Z0-9]+(([\-]?[a-zA-Z0-9]+)*\.)+)*[a-zA-Z]{2,}))+/";
- if($_REQUEST['OcppServerURL']!=""){
- $json['OcppServerURL'] = str_replace("&","&",str_replace(""",'"',str_replace("'","'",str_replace("<","<",str_replace(">",">",$_REQUEST['OcppServerURL'])))));
- if(!preg_match($pattern, $json['OcppServerURL'])){
- $jsone['result'] = "Fail";
- $jsone['message'] = "OcppServerURL format error, fill it with 'ws://' or 'wss://'";
- echo json_encode($jsone);
- return false;
- }
- }
- if($_REQUEST['MaintainServerURL']!=""){
- $json['MaintainServerURL'] = str_replace("&","&",str_replace(""",'"',str_replace("'","'",str_replace("<","<",str_replace(">",">",$_REQUEST['MaintainServerURL'])))));
- if(!preg_match($pattern, $json['MaintainServerURL'])){
- $jsone['result'] = "Fail";
- $jsone['message'] = "MaintainServerURL format error, fill it with 'ws://' or 'wss://'";
- echo json_encode($jsone);
- return false;
- }
- }
- checkValue("OfflinePolicy");
- checkLength("ChargeBoxId",25);
- checkLength("chargePointVendor",20);
- if(isset($_REQUEST['BackendConnTimeout'])){
- $json['BackendConnTimeout'] = (int)$_REQUEST['BackendConnTimeout'];
- }
- if(isset($_REQUEST['OfflinePolicy'])){
- $json['OfflinePolicy'] = (int)$_REQUEST['OfflinePolicy'];
- }
- if(isset($_REQUEST['OfflineMaxChargeEnergy'])){
- $json['OfflineMaxChargeEnergy'] = (int)$_REQUEST['OfflineMaxChargeEnergy'];
- }
- if(isset($_REQUEST['OfflineMaxChargeDuration'])){
- $json['OfflineMaxChargeDuration'] = (int)$_REQUEST['OfflineMaxChargeDuration'];
- }
- if(isset($_REQUEST['OcppServerURL'])){
- $json['OcppServerURL'] = str_replace("&","&",str_replace(""",'"',str_replace("'","'",str_replace("<","<",str_replace(">",">",$_REQUEST['OcppServerURL'])))));
- }
- if(isset($_REQUEST['MaintainServerURL'])){
- $json['MaintainServerURL'] = str_replace("&","&",str_replace(""",'"',str_replace("'","'",str_replace("<","<",str_replace(">",">",$_REQUEST['MaintainServerURL'])))));
- }
- if(isset($_REQUEST['ChargeBoxId'])){
- $json['ChargeBoxId'] = str_replace("&","&",str_replace(""",'"',str_replace("'","'",str_replace("<","<",str_replace(">",">",$_REQUEST['ChargeBoxId'])))));
- }
- if(isset($_REQUEST['chargePointVendor'])){
- $json['chargePointVendor'] = str_replace("&","&",str_replace(""",'"',str_replace("'","'",str_replace("<","<",str_replace(">",">",$_REQUEST['chargePointVendor'])))));
- }
- if(isset($_REQUEST['OcppSecurityProfile'])){
- checkValue("OcppSecurityProfile");
- $json['OcppSecurityProfile'] = (int)$_REQUEST['OcppSecurityProfile'];
- }
- if(isset($_REQUEST['OcppSecurityPassword'])){
- $json['OcppSecurityPassword'] = str_replace("&","&",str_replace(""",'"',str_replace("'","'",str_replace("<","<",str_replace(">",">",$_REQUEST['OcppSecurityPassword'])))));
- }
- if(isset($_REQUEST['MaintainServerSecurityProfile'])){
- checkValue("MaintainServerSecurityProfile");
- $json['MaintainServerSecurityProfile'] = (int)$_REQUEST['MaintainServerSecurityProfile'];
- }
- if(isset($_REQUEST['MaintainServerSecurityPassword'])){
- $json['MaintainServerSecurityPassword'] = str_replace("&","&",str_replace(""",'"',str_replace("'","'",str_replace("<","<",str_replace(">",">",$_REQUEST['MaintainServerSecurityPassword'])))));
- }
- if(isset($_REQUEST['isEnableLocalPowerSharging'])){
- checkValue("isEnableLocalPowerSharging");
- $json['isEnableLocalPowerSharging'] = (int)$_REQUEST['isEnableLocalPowerSharging'];
- }
- if(isset($_REQUEST['PowerSharingCapacity'])){
- $json['PowerSharingCapacity'] = str_replace("&","&",str_replace(""",'"',str_replace("'","'",str_replace("<","<",str_replace(">",">",$_REQUEST['PowerSharingCapacity'])))));
- }
- if(isset($_REQUEST['PowerSharingServerIP'])){
- $json['PowerSharingServerIP'] = str_replace("&","&",str_replace(""",'"',str_replace("'","'",str_replace("<","<",str_replace(">",">",$_REQUEST['PowerSharingServerIP'])))));
- }
- if(isset($_REQUEST['OcppReceiptrURL'])){
- $json['OcppReceiptrURL'] = str_replace("&","&",str_replace(""",'"',str_replace("'","'",str_replace("<","<",str_replace(">",">",$_REQUEST['OcppReceiptrURL'])))));
- }
- if(isset($_REQUEST['isEnableTTIA'])){
- checkValue("isEnableTTIA");
- $json['isEnableTTIA'] = (int)$_REQUEST['isEnableTTIA'];
- }
- if(isset($_REQUEST['server_addr'])){
- $json['server_addr'] = str_replace("&","&",str_replace(""",'"',str_replace("'","'",str_replace("<","<",str_replace(">",">",$_REQUEST['server_addr'])))));
- }
- if(isset($_REQUEST['server_port'])){
- isNumeric("server_port",65535);
- $json['server_port'] = (int)$_REQUEST['server_port'];
- }
- if(isset($_REQUEST['busVenderId'])){
- isNumeric("busVenderId",65535);
- $json['busVenderId'] = (int)$_REQUEST['busVenderId'];
- }
- if(isset($_REQUEST['EquipmentProvider'])){
- checkLength("EquipmentProvider",15);
- $json['EquipmentProvider'] = str_replace("&","&",str_replace(""",'"',str_replace("'","'",str_replace("<","<",str_replace(">",">",$_REQUEST['EquipmentProvider'])))));
- }
- if(isset($_REQUEST['TransportationCompanyNo'])){
- isNumeric("TransportationCompanyNo",255);
- $json['TransportationCompanyNo'] = (int)$_REQUEST['TransportationCompanyNo'];
- }
- if(isset($_REQUEST['TTIAChargeBoxId'])){
- isNumeric("TTIAChargeBoxId",255);
- $json['TTIAChargeBoxId'] = (int)$_REQUEST['TTIAChargeBoxId'];
- }
- if(isset($_REQUEST['evseStation'])){
- checkLength("evseStation",15);
- $json['evseStation'] = str_replace("&","&",str_replace(""",'"',str_replace("'","'",str_replace("<","<",str_replace(">",">",$_REQUEST['evseStation'])))));
- }
- $fCount = empty($_FILES['private_key']['tmp_name'][0]);
- if($fCount!=1){
- if ($_FILES["private_key"]["error"] > 0)
- {
- $jsone['result'] = "Error";
- $jsone['message'] = $_FILES["private_key"]["error"];
- echo json_encode($jsone);
- exit;
- }
- else if(strpos(exec('openssl rsa -noout -modulus -in '.$_FILES['private_key']['tmp_name']),"Modulus")===false){ //unable to load Private Key
- $jsone['result'] = "Error";
- $jsone['message'] = "format of Private Key is incorrect";
- echo json_encode($jsone);
- exit;
- }
- sleep(1);
- move_uploaded_file($_FILES["private_key"]["tmp_name"],"/Storage/OCPP/certCP.key");
- }
- $fCount = empty($_FILES['certificate']['tmp_name'][0]);
- if($fCount!=1){
- if ($_FILES["certificate"]["error"] > 0)
- {
- $jsone['result'] = "Error";
- $jsone['message'] = $_FILES["certificate"]["error"];
- echo json_encode($jsone);
- exit;
- }
- else if(strpos(exec('openssl x509 -noout -modulus -in '.$_FILES['certificate']['tmp_name']),"Modulus")===false){ //unable to load certificate
- $jsone['result'] = "Error";
- $jsone['message'] = "format of Certificate is incorrect";
- echo json_encode($jsone);
- exit;
- }
- sleep(1);
- move_uploaded_file($_FILES["certificate"]["tmp_name"],"/Storage/OCPP/certCP.pem");
- }
- $fCount = empty($_FILES['MORootCertificate']['tmp_name'][0]);
- if($fCount!=1){
- if ($_FILES["MORootCertificate"]["error"] > 0)
- {
- $jsone['result'] = "Error";
- $jsone['message'] = $_FILES["MORootCertificate"]["error"];
- echo json_encode($jsone);
- exit;
- }
- else if(strpos(exec('openssl x509 -noout -modulus -in '.$_FILES['MORootCertificate']['tmp_name']),"Modulus")===false){ //unable to load MORootCertificate
- $jsone['result'] = "Error";
- $jsone['message'] = "format of MO Root Certificate is incorrect";
- echo json_encode($jsone);
- exit;
- }
- sleep(1);
- move_uploaded_file($_FILES["MORootCertificate"]["tmp_name"],"/Storage/rootCaMo.pem");
- }
- $fCount = empty($_FILES['CSRootCertificate']['tmp_name'][0]);
- if($fCount!=1){
- if ($_FILES["CSRootCertificate"]["error"] > 0)
- {
- $jsone['result'] = "Error";
- $jsone['message'] = $_FILES["CSRootCertificate"]["error"];
- echo json_encode($jsone);
- exit;
- }
- else if(strpos(exec('openssl x509 -noout -modulus -in '.$_FILES['CSRootCertificate']['tmp_name']),"Modulus")===false){ //unable to load CSRootCertificate
- $jsone['result'] = "Error";
- $jsone['message'] = "format of CS Root Certificate is incorrect";
- echo json_encode($jsone);
- exit;
- }
- sleep(1);
- move_uploaded_file($_FILES["CSRootCertificate"]["tmp_name"],"/Storage/OCPP/rootCaCs.pem");
- }
- $fCount = empty($_FILES['ManufacturerRootCertificate']['tmp_name'][0]);
- if($fCount!=1){
- if ($_FILES["ManufacturerRootCertificate"]["error"] > 0)
- {
- $jsone['result'] = "Error";
- $jsone['message'] = $_FILES["ManufacturerRootCertificate"]["error"];
- echo json_encode($jsone);
- exit;
- }
- else if(strpos(exec('openssl x509 -noout -modulus -in '.$_FILES['ManufacturerRootCertificate']['tmp_name']),"Modulus")===false){ //unable to load ManufacturerRootCertificate
- $jsone['result'] = "Error";
- $jsone['message'] = "format of Manufacturer Root Certificate is incorrect";
- echo json_encode($jsone);
- exit;
- }
- sleep(1);
- move_uploaded_file($_FILES["ManufacturerRootCertificate"]["tmp_name"],"/Storage/OCPP/rootCaMf.pem");
- }
- // ob_start();
-
- shell_exec('sync;sync;sync');
- chdir("/root");
- $str_json=json_encode($json);//var_dump($str_json);
- exec("'./WebService' '4' '".$str_json."'",$output,$return_var);
- if(count($output)!=0){
- $jsone['result'] = "Success";
- $jsone['message'] = $json;
- echo json_encode($jsone);
- exit;
- }
- else{
- $jsone['result'] = "Error";
- $jsone['message'] = "Something went wrong on machine";
- echo json_encode($jsone);
- return false;
- exit;
- }
- // ob_end_clean();
- }
- function checkValue($id){
- if($_REQUEST[$id] != ""){
- if(strlen($_REQUEST[$id])!=1){
- $jsone['result'] = "Fail";
- $jsone['message'] = "You have entered a wrong value on " . $id . ", it should be numeric";
- echo json_encode($jsone);
- exit;
- }
- if(!is_numeric($_REQUEST[$id])){
- $jsone['result'] = "Fail";
- $jsone['message'] = "You have entered a wrong value on " . $id . ", it should be numeric";
- echo json_encode($jsone);
- exit;
- }
- }
- }
- function checkLength($id,$value){
- if(strlen($_REQUEST[$id])>$value){
- $jsone['result'] = "Fail";
- $jsone['message'] = "Length of " . $id . " should be less than ".$value+"(Chinese 5 words)";
- echo json_encode($jsone);
- exit;
- }
- }
- function isNumeric($id,$value){
- if($_REQUEST[$id] != ""){
- if(!is_numeric($_REQUEST[$id])){
- $jsone['result'] = "Fail";
- $jsone['message'] = "You have entered a wrong value on " . $id . ", it should be numeric";
- echo json_encode($jsone);
- exit;
- }
- if($_REQUEST[$id]>$value){
- $jsone['result'] = "Fail";
- $jsone['message'] = "Value of " . $id . " should be less than ".$value;
- echo json_encode($jsone);
- exit;
- }
- }
- }
- ?>
|