勾选使用协议
This commit is contained in:
@@ -3,73 +3,44 @@
|
||||
namespace app\tencent\controller;
|
||||
|
||||
use fastphp\base\Controller;
|
||||
use Qiniu\Auth;
|
||||
use Qiniu\Storage\UploadManager;
|
||||
use app\tencent\model\Agreement as AgreementModel;
|
||||
use app\user\model\User as UserModel;
|
||||
|
||||
|
||||
class Index extends Controller
|
||||
{
|
||||
private $accessKey = 'AfRhvJoAKL24ftGcHMor1WwSpVdular7L7X97JNY';
|
||||
private $secretKey = 'OyyU-6M45oDZAlVsf8fH0RFALGxTNHAT-yR6cmtU';
|
||||
private $bucket = 'zip9';
|
||||
public function upload()
|
||||
{
|
||||
$username = $this->userinfo['LoginName'];
|
||||
$userid = $this->userinfo['UserId'];
|
||||
$data = $_POST;
|
||||
$agreement_model = new AgreementModel;
|
||||
|
||||
$agreement_data = [
|
||||
'user_id' => $userid,
|
||||
'username' => $username,
|
||||
'status' => 1,
|
||||
'id_code' => $data['id_code'],
|
||||
'describe' => $data['describe'],
|
||||
];
|
||||
|
||||
$xieyi = $_FILES['xieyi'];
|
||||
|
||||
$size_limit = 30 * 1024 * 1024;
|
||||
if ($xieyi['size']>$size_limit) {
|
||||
echo json_encode(['code' => -1,'msg'=>'文件过大,仅限30M']);
|
||||
die;
|
||||
if(!$data['status']) {
|
||||
echo json_encode(['code' => -1,'msg'=>'失败']);die;
|
||||
}
|
||||
|
||||
$auth = new Auth($this->accessKey, $this->secretKey);
|
||||
// 初始化 UploadManager 对象并进行文件的上传。
|
||||
$uploadMgr = new UploadManager();
|
||||
// 需要填写你的 Access Key 和 Secret Key
|
||||
// 构建鉴权对象
|
||||
// 生成上传 Token
|
||||
$token = $auth->uploadToken($this->bucket);
|
||||
// 要上传文件的本地路径
|
||||
$xieyi_filePath = $xieyi['tmp_name'];
|
||||
// 上传到存储后保存的文件名
|
||||
$xieyi_key = $username.'-'.time().'.png';
|
||||
if (isset($_FILES['yewu'])){
|
||||
$yewu = $_FILES['yewu'];
|
||||
if ($yewu['size']>$size_limit) {
|
||||
echo json_encode(['code' => -1,'msg'=>'文件过大,仅限30M']);
|
||||
die;
|
||||
}
|
||||
// 要上传文件的本地路径
|
||||
$filePath = $yewu['tmp_name'];
|
||||
// 上传到存储后保存的文件名
|
||||
$yewu_key = $username.'-'.time().'.mp4';
|
||||
// 调用 UploadManager 的 putFile 方法进行文件的上传。
|
||||
list($ret, $err) = $uploadMgr->putFile($token, $yewu_key, $filePath, null, 'application/octet-stream', true, null, 'v2');
|
||||
$agreement_data['yewu'] = 'http://zip.juip.com/'.$yewu_key;
|
||||
}
|
||||
|
||||
// 调用 UploadManager 的 putFile 方法进行文件的上传。
|
||||
list($ret, $err) = $uploadMgr->putFile($token, $xieyi_key, $xieyi_filePath, null, 'application/octet-stream', true, null, 'v2');
|
||||
$agreement_data['xieyi'] = 'http://zip.juip.com/'.$xieyi_key;
|
||||
|
||||
$agreement_model->add($agreement_data);
|
||||
$user_model = new UserModel;
|
||||
$user_info = $user_model->getOne(['Id' => $userid]);
|
||||
|
||||
//判断用户的身份证号
|
||||
if ($user_info['id_code'] != $data['id_code']) {
|
||||
echo json_encode(['code' => -1,'msg'=>'身份证与实名信息的身份证不符!']);die;
|
||||
}
|
||||
|
||||
$agreement_model = new AgreementModel;
|
||||
$status = $agreement_model->add($agreement_data);
|
||||
|
||||
if ($err !== null) {
|
||||
echo json_encode(['code' => -1,'msg'=>'上传失败']);
|
||||
if ($status) {
|
||||
echo json_encode(['code' => 1,'msg'=>'成功']);
|
||||
} else {
|
||||
echo json_encode(['code' => 1,'msg'=>'上传成功']);
|
||||
echo json_encode(['code' => -1,'msg'=>'失败']);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user