123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
- /**
- * Niushop商城系统 - 团队十年电商经验汇集巨献!
- * =========================================================
- * Copy right 2019-2029 山西牛酷信息科技有限公司, 保留所有权利。
- * ----------------------------------------------
- * 官方网址: https://www.niushop.com.cn
- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用。
- * 任何企业和个人不允许对程序代码以任何形式任何目的再发布。
- * =========================================================
- */
- namespace addon\alioss\model;
- use app\model\BaseModel;
- // 引入Oss类
- use \OSS\OssClient;
- use \OSS\Core\OssException;
- /**
- * 阿里云OSS上传
- */
- class Alioss extends BaseModel
- {
- /**
- * 字节组上传
- * @param $data
- * @param $key
- * @return array
- */
- public function put($param){
- $data = $param["data"];
- $key = $param["key"];
- $config_model = new Config();
- $config_result = $config_model->getAliossConfig();
- $config = $config_result["data"];
- if($config["is_use"] == 1){
- $config = $config["value"];
- $access_key_id = $config["access_key_id"];
- $access_key_secret = $config["access_key_secret"];
- $bucket = $config["bucket"];
- $endpoint = $config["endpoint"];
- try{
- $ossClient = new OssClient($access_key_id, $access_key_secret, $endpoint);
- $result = $ossClient->putObject($bucket, $key, $data);
- $data = array(
- // "path" => $this->subEndpoint($endpoint, $bucket)."/". $key,
- "path" => $result["info"]["url"],
- "domain" => $endpoint,
- "bucket" => $bucket
- );
- return $this->success($data);
- } catch(OssException $e) {
- return $this->error($e->getMessage());
- }
- }
- }
- /**
- * 设置阿里云OSS参数配置
- * @param unknown $filePath 上传图片路径
- * @param unknown $key 上传到阿里云后保存的文件名
- */
- public function putFile($param){
- $file_path = $param["file_path"];
- $key = $param["key"];
- $config_model = new Config();
- $config_result = $config_model->getAliossConfig();
- $config = $config_result["data"];
- if($config["is_use"] == 1) {
- $config = $config["value"];
- $access_key_id = $config["access_key_id"];
- $access_key_secret = $config["access_key_secret"];
- $bucket = $config["bucket"];
- //要上传的空间
- $endpoint = $config["endpoint"];
- try{
- $ossClient = new OssClient($access_key_id, $access_key_secret, $endpoint);
- $result = $ossClient->uploadFile($bucket, $key, $file_path);
- //返回图片的完整URL
- $data = array(
- // "path" => $this->subEndpoint($endpoint, $bucket)."/". $key,
- "path" => $result["info"]["url"],
- "domain" => $endpoint,
- "bucket" => $bucket
- );
- return $this->success($data);
- } catch(OssException $e) {
- return $this->error($e->getMessage());
- }
- }
- }
- public function subEndpoint($endpoint, $bucket){
- if (strpos($endpoint, 'http://') === 0 ) {
- $temp = "http://";
- }else{
- $temp = "https://";
- }
- $temp_array = explode($temp, $endpoint);
- return $temp.$bucket.".".$temp_array[1];
- }
- }
|