去除基廷成员验证
This commit is contained in:
@@ -0,0 +1,129 @@
|
||||
<?php
|
||||
|
||||
namespace App\Controller;
|
||||
|
||||
use App\Constants\HttpEnumCode;
|
||||
use App\Model\DoctorPharmacistCert;
|
||||
use Extend\Alibaba\Oss;
|
||||
use Extend\Ca\Ca;
|
||||
|
||||
class TestController extends AbstractController
|
||||
{
|
||||
public function test(){
|
||||
$this->test_4();
|
||||
}
|
||||
|
||||
// 获取云证书-首次
|
||||
public function test_1(){
|
||||
$ca = new Ca();
|
||||
|
||||
$data = array();
|
||||
$data['user_id'] = "491925054435950592";
|
||||
$data['card_num'] = "410323199603261241";
|
||||
$result = $ca->getCloudCert($data);
|
||||
|
||||
$data = array();
|
||||
$data['user_id'] = "491925054435950592";
|
||||
$data['cert_base64'] = $result['certBase64'];
|
||||
$data['cert_chain_p7'] = $result['certP7'];
|
||||
$data['cert_serial_number'] = $result['certSerialnumber'];
|
||||
$data['ca_pin'] = "491925054435950592";
|
||||
$doctor_pharmacist_cert = DoctorPharmacistCert::addDoctorPharmacistCert($data);
|
||||
if (empty($doctor_pharmacist_cert)){
|
||||
return fail();
|
||||
}
|
||||
}
|
||||
|
||||
// 获取用户云证书数据-验证PKCS7签名
|
||||
public function test_2(){
|
||||
$ca = new Ca();
|
||||
|
||||
$params = array();
|
||||
$params['user_id'] = "491925054435950592";
|
||||
$doctor_pharmacist_cert = DoctorPharmacistCert::getOne($params);
|
||||
if (empty($doctor_pharmacist_cert)){
|
||||
return fail(HttpEnumCode::HTTP_ERROR,"用户数据错误");
|
||||
}
|
||||
|
||||
// 获取云证书签名
|
||||
$data = array();
|
||||
$data['created_at'] = date('Y-m-d H:i:s',time());
|
||||
$data['department_custom_name'] = "外科";
|
||||
$data['user_name'] = "测试用户1";
|
||||
$data['sex'] = "男";
|
||||
$data['age'] = 19;
|
||||
$data['allergy_history'] = "无";
|
||||
$data['icd_name'] = "感冒";
|
||||
$data['doctor_advice'] = "多吃药";
|
||||
$data['product'] = [
|
||||
[
|
||||
"product_name" => "感冒药1",
|
||||
"single_unit" => "一次一包",
|
||||
"frequency_use" => "1天3次",
|
||||
"single_use" => "口服",
|
||||
"prescription_product_num" => "X1盒",
|
||||
],
|
||||
[
|
||||
"product_name" => "感冒药2",
|
||||
"single_unit" => "一次一包",
|
||||
"frequency_use" => "1天3次",
|
||||
"single_use" => "口服",
|
||||
"prescription_product_num" => "X1盒",
|
||||
]
|
||||
];
|
||||
|
||||
$result = $ca->getCertSign("491925054435950592","491925054435950592",$data);
|
||||
|
||||
// 验证PKCS7签名-验证无需处理,只要不返回错误即可
|
||||
$ca->verifyPkcs7($result['signP7'],$data);
|
||||
}
|
||||
|
||||
// 添加签章配置(首次)
|
||||
public function test_3(){
|
||||
$ca = new Ca();
|
||||
|
||||
// 下载阿里云图片
|
||||
$oss = new Oss();
|
||||
|
||||
$filename = "applet/doctor/cert/67d7396d-0fc3-464d-9582-3501229ed188.png";
|
||||
|
||||
$style = "image/resize,m_lfit,w_100,h_350/rotate,270";
|
||||
|
||||
$sign_image = $oss->getCusTomObjectToRAM($filename,$style);
|
||||
$sign_image = base64_encode($sign_image);
|
||||
if (!$sign_image){
|
||||
return fail(HttpEnumCode::SERVER_ERROR);
|
||||
}
|
||||
|
||||
$sign_image = urlencode($sign_image);
|
||||
|
||||
$sign_param = [
|
||||
[
|
||||
"llx"=> 700, // 左边底部X坐标
|
||||
"lly"=>2985, // 左边底部Y坐标
|
||||
"urx"=>1101, // 右边上部x坐标
|
||||
"ury"=>2896, // 右边上部y坐标
|
||||
"pageList"=>[1],
|
||||
"sealImg"=>$sign_image
|
||||
]
|
||||
];
|
||||
$data = array();
|
||||
$data['sign_param'] = json_encode($sign_param,JSON_UNESCAPED_UNICODE);
|
||||
$data['seal_img'] = $sign_image;
|
||||
|
||||
$result = $ca->addUserSignConfig("491925054435950592","410323199603261241",$data);
|
||||
}
|
||||
|
||||
// 获取用户签章图片
|
||||
public function test_4(){
|
||||
$ca = new Ca();
|
||||
$result = $ca->getFetchUserSeal("491925054435950592");
|
||||
$data = urldecode($result[0]['sealImg']);
|
||||
dump($data);
|
||||
}
|
||||
|
||||
// 处理处方pdf图片
|
||||
public function test_5(){
|
||||
|
||||
}
|
||||
}
|
||||
@@ -15,6 +15,7 @@ use App\Services\UserDoctorService;
|
||||
use App\Services\UserService;
|
||||
use App\Utils\Http;
|
||||
use App\Utils\Log;
|
||||
use Extend\Alibaba\Oss;
|
||||
use Extend\Ca\Ca;
|
||||
use Extend\Prescription\Prescription;
|
||||
use Extend\TencentIm\Account;
|
||||
@@ -359,64 +360,13 @@ class UserController extends AbstractController
|
||||
|
||||
$ca = new Ca();
|
||||
|
||||
// 获取云证书-首次
|
||||
// $data = array();
|
||||
// $data['user_id'] = "491925054435950592";
|
||||
// $data['card_num'] = "410323199603261241";
|
||||
// $result = $ca->getCloudCert($data);
|
||||
//
|
||||
// $data = array();
|
||||
// $data['user_id'] = "491925054435950592";
|
||||
// $data['cert_base64'] = $result['certBase64'];
|
||||
// $data['cert_chain_p7'] = $result['certP7'];
|
||||
// $data['cert_serial_number'] = $result['certSerialnumber'];
|
||||
// $data['ca_pin'] = "491925054435950592";
|
||||
// $doctor_pharmacist_cert = DoctorPharmacistCert::addDoctorPharmacistCert($data);
|
||||
// if (empty($doctor_pharmacist_cert)){
|
||||
// return fail();
|
||||
// }
|
||||
|
||||
// 获取用户云证书数据
|
||||
$params = array();
|
||||
$params['user_id'] = "491925054435950592";
|
||||
$doctor_pharmacist_cert = DoctorPharmacistCert::getOne($params);
|
||||
if (empty($doctor_pharmacist_cert)){
|
||||
return fail(HttpEnumCode::HTTP_ERROR,"用户数据错误");
|
||||
}
|
||||
|
||||
// 获取云证书签名
|
||||
$data = array();
|
||||
$data['created_at'] = date('Y-m-d H:i:s',time());
|
||||
$data['department_custom_name'] = "外科";
|
||||
$data['user_name'] = "测试用户1";
|
||||
$data['sex'] = "男";
|
||||
$data['age'] = 19;
|
||||
$data['allergy_history'] = "无";
|
||||
$data['icd_name'] = "感冒";
|
||||
$data['doctor_advice'] = "多吃药";
|
||||
$data['product'] = [
|
||||
[
|
||||
"product_name" => "感冒药1",
|
||||
"single_unit" => "一次一包",
|
||||
"frequency_use" => "1天3次",
|
||||
"single_use" => "口服",
|
||||
"prescription_product_num" => "X1盒",
|
||||
],
|
||||
[
|
||||
"product_name" => "感冒药2",
|
||||
"single_unit" => "一次一包",
|
||||
"frequency_use" => "1天3次",
|
||||
"single_use" => "口服",
|
||||
"prescription_product_num" => "X1盒",
|
||||
]
|
||||
];
|
||||
|
||||
$result = $ca->getCertSign("491925054435950592","491925054435950592",$data);
|
||||
|
||||
// 验证PKCS7签名-验证无需处理,只要不返回错误即可
|
||||
$ca->verifyPkcs7($result['signP7'],$data);
|
||||
|
||||
// 添加签章配置(首次)
|
||||
|
||||
dump($result);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user