namespace Admin\Controller;
use think\Controller;
use Admin\Controller\OssStorageController;
class PictureUploadController extends Controller {
? ? private $Bucket;
? ? private $endpoint;
? ? private $url_prefix ;
? ? public function _initialize()
{
? ? ? ? //獲取oss配置
? ? ? ? $oss_config = M('oss_config')->where('id=1')->find();
? ? ? ? if (empty($oss_config)) {
? ? ? ? ? ? error('未找到oss配置');
? ? ? ? }
? ? ? ? $this->Bucket = $oss_config['bucket'];
? ? ? ? $this->endpoint = $oss_config['endpoint'];
? ? ? ? //獲取oss地址前綴 默認(rèn)使用bjy
? ? ? ? $this->url_prefix = 'https://' . $this->Bucket . '.' . $oss_config['endpoint'] . '/';
? ? }
? ? /** 封裝阿里云OSS上傳的方法
? ? * Created by PhpStorm.
* User: weiyuntao
* Date: 2019/7/18 0007
? ? * Time: 上午 16:10
*/
? ? function uploadImage($dst, $getFile)
{
? ? ? ? #配置OSS基本配置
? ? ? ? $config = array(
? ? ? ? ? ? 'KeyId' => 'LTAIUejVxNYfjCWq',//你的KeyId
? ? ? ? ? ? 'KeySecret' => 'JR0G7dP5axfhKldw6xIXw95J0H7mIt',//你的KeySecret
? ? ? ? ? ? 'Endpoint' => $this->endpoint,//你的Endpoint
? ? ? ? ? ? 'Bucket' => $this->Bucket,//你的Bucket
? ? ? ? );
? ? ? ? $ossClient = new OssClient($config['KeyId'], $config['KeySecret'],$config['Endpoint']);
? ? ? ? #執(zhí)行阿里云上傳
? ? ? ? $result = $ossClient->uploadFile($config['Bucket'], $dst, $getFile);
? ? ? ? #返回
? ? ? ? return $result;
? ? }
? ? /** $imgBase64 圖片base64格式
? ? * Created by PhpStorm.
* User: weiyuntao
* Date: 2019/7/18 0007
? ? * Time: 上午 16:10
*/
? ? public function imageDoAliyunOss()
{
? ? ? ? $imgBase64 = I('POST.imgBase64');
? ? ? ? if(empty($imgBase64)){
? ? ? ? ? ? error('圖片信息傳遞為空');
? ? ? ? }
? ? ? ? #引用阿里云上傳文件
? ? ? ? $oss_storage = new OssStorageController($this->Bucket);
? ? ? ? $push = [];
? ? ? ? foreach($imgBase64 as $key=>$value) {
? ? ? ? ? ? #轉(zhuǎn)化base64編碼圖片
? ? ? ? ? ? if (preg_match('/^(data:\s*image\/(\w+);base64,)/', $value, $res)) {
? ? ? ? ? ? ? ? //獲取圖片類型 png jpg等
? ? ? ? ? ? ? ? $type = $res[2];
? ? ? ? ? ? ? ? //圖片名字
? ? ? ? ? ? ? ? $fileName = md5(microtime()) .mt_rand(1,10000). '.' . $type;
? ? ? ? ? ? ? ? // 臨時文件
? ? ? ? ? ? ? ? $tmpfname = tempnam("/image/", "FOO");
? ? ? ? ? ? ? ? //保存圖片
? ? ? ? ? ? ? ? $handle = fopen($tmpfname, "w");
? ? ? ? ? ? ? ? //阿里云oss上傳的文件目錄
? ? ? ? ? ? ? ? $dst = 'zxnew/';
? ? ? ? ? ? ? ? if (fwrite($handle, base64_decode(str_replace($res[1], '', $value)))) {
? ? ? ? ? ? ? ? ? ? #上傳圖片至阿里云OSS
? ? ? ? ? ? ? ? ? ? $url = $oss_storage->uploadFile($dst . $fileName, $tmpfname);
? ? ? ? ? ? ? ? ? ? #關(guān)閉緩存
? ? ? ? ? ? ? ? ? ? fclose($handle);
? ? ? ? ? ? ? ? ? ? #刪除本地該圖片
? ? ? ? ? ? ? ? ? ? unlink($tmpfname);
? ? ? ? ? ? ? ? ? ? $returnUrl = 'https://' . $this->Bucket . '.' . $this->endpoint . '/' . $dst . $fileName;
? ? ? ? ? ? ? ? ? ? array_push($push, $returnUrl);
? ? ? ? ? ? ? ? ? ? unset($res);//清除
? ? ? ? ? ? ? ? } else {
? ? ? ? ? ? ? ? ? ? continue;
? ? ? ? ? ? ? ? }
}
}
? ? ? ? //返回圖片鏈接
? ? ? ? if($push){
? ? ? ? ? ? echo json_encode(['code'=>200,'status'=>1,'msg'=>'上傳成功','data'=>$push]);
? ? ? ? }else{
? ? ? ? ? ? echo json_encode(['code'=>200,'status'=>0,'msg'=>'上傳失敗']);
? ? ? ? }
}
}