Alioss.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 山西牛酷信息科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com.cn
  8. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用。
  9. * 任何企业和个人不允许对程序代码以任何形式任何目的再发布。
  10. * =========================================================
  11. */
  12. namespace addon\alioss\model;
  13. use app\model\BaseModel;
  14. // 引入Oss类
  15. use \OSS\OssClient;
  16. use \OSS\Core\OssException;
  17. /**
  18. * 阿里云OSS上传
  19. */
  20. class Alioss extends BaseModel
  21. {
  22. /**
  23. * 字节组上传
  24. * @param $data
  25. * @param $key
  26. * @return array
  27. */
  28. public function put($param){
  29. $data = $param["data"];
  30. $key = $param["key"];
  31. $config_model = new Config();
  32. $config_result = $config_model->getAliossConfig();
  33. $config = $config_result["data"];
  34. if($config["is_use"] == 1){
  35. $config = $config["value"];
  36. $access_key_id = $config["access_key_id"];
  37. $access_key_secret = $config["access_key_secret"];
  38. $bucket = $config["bucket"];
  39. $endpoint = $config["endpoint"];
  40. try{
  41. $ossClient = new OssClient($access_key_id, $access_key_secret, $endpoint);
  42. $result = $ossClient->putObject($bucket, $key, $data);
  43. $data = array(
  44. // "path" => $this->subEndpoint($endpoint, $bucket)."/". $key,
  45. "path" => $result["info"]["url"],
  46. "domain" => $endpoint,
  47. "bucket" => $bucket
  48. );
  49. return $this->success($data);
  50. } catch(OssException $e) {
  51. return $this->error($e->getMessage());
  52. }
  53. }
  54. }
  55. /**
  56. * 设置阿里云OSS参数配置
  57. * @param unknown $filePath 上传图片路径
  58. * @param unknown $key 上传到阿里云后保存的文件名
  59. */
  60. public function putFile($param){
  61. $file_path = $param["file_path"];
  62. $key = $param["key"];
  63. $config_model = new Config();
  64. $config_result = $config_model->getAliossConfig();
  65. $config = $config_result["data"];
  66. if($config["is_use"] == 1) {
  67. $config = $config["value"];
  68. $access_key_id = $config["access_key_id"];
  69. $access_key_secret = $config["access_key_secret"];
  70. $bucket = $config["bucket"];
  71. //要上传的空间
  72. $endpoint = $config["endpoint"];
  73. try{
  74. $ossClient = new OssClient($access_key_id, $access_key_secret, $endpoint);
  75. $result = $ossClient->uploadFile($bucket, $key, $file_path);
  76. //返回图片的完整URL
  77. $data = array(
  78. // "path" => $this->subEndpoint($endpoint, $bucket)."/". $key,
  79. "path" => $result["info"]["url"],
  80. "domain" => $endpoint,
  81. "bucket" => $bucket
  82. );
  83. return $this->success($data);
  84. } catch(OssException $e) {
  85. return $this->error($e->getMessage());
  86. }
  87. }
  88. }
  89. public function subEndpoint($endpoint, $bucket){
  90. if (strpos($endpoint, 'http://') === 0 ) {
  91. $temp = "http://";
  92. }else{
  93. $temp = "https://";
  94. }
  95. $temp_array = explode($temp, $endpoint);
  96. return $temp.$bucket.".".$temp_array[1];
  97. }
  98. }