Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

OssLogic.php 7.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\common\logic;
  14. use OSS\OssClient;
  15. use OSS\Core\OssException;
  16. use think\Db;
  17. require_once './vendor/aliyun-oss-php-sdk/autoload.php';
  18. /**
  19. * Class OssLogic
  20. * 对象存储逻辑类
  21. */
  22. class OssLogic
  23. {
  24. static private $initConfigFlag = false;
  25. static private $accessKeyId = '';
  26. static private $accessKeySecret = '';
  27. static private $endpoint = '';
  28. static private $bucket = '';
  29. /** @var \OSS\OssClient */
  30. static private $ossClient = null;
  31. static private $errorMsg = '';
  32. static private $waterPos = [
  33. 1 => 'nw', //标识左上角水印
  34. 2 => 'north', //标识上居中水印
  35. 3 => 'ne', //标识右上角水印
  36. 4 => 'west', //标识左居中水印
  37. 5 => 'center', //标识居中水印
  38. 6 => 'east', //标识右居中水印
  39. 7 => 'sw', //标识左下角水印
  40. 8 => 'south', //标识下居中水印
  41. 9 => 'se', //标识右下角水印
  42. ];
  43. public function __construct()
  44. {
  45. self::initConfig();
  46. }
  47. /**
  48. * 获取错误信息,一旦其他接口返回false时,可调用此接口查看具体错误信息
  49. * @return type
  50. */
  51. public function getError()
  52. {
  53. return self::$errorMsg;
  54. }
  55. static private function initConfig()
  56. {
  57. if (self::$initConfigFlag) {
  58. return;
  59. }
  60. $c = [];
  61. $where = [
  62. 'name' => ['IN', ['oss_key_id', 'oss_key_secret', 'oss_endpoint','oss_bucket']],
  63. 'lang' => get_admin_lang()
  64. ];
  65. $config = Db::name('config')->field('name, value')->where($where)->select();
  66. foreach ($config as $v) {
  67. $c[$v['name']] = $v['value'];
  68. }
  69. self::$accessKeyId = !empty($c['oss_key_id']) ? $c['oss_key_id'] : '';
  70. self::$accessKeySecret = !empty($c['oss_key_secret']) ? $c['oss_key_secret'] : '';
  71. self::$endpoint = !empty($c['oss_endpoint']) ? $c['oss_endpoint'] : '';
  72. self::$bucket = !empty($c['oss_bucket']) ? $c['oss_bucket'] : '';
  73. self::$initConfigFlag = true;
  74. }
  75. static private function getOssClient()
  76. {
  77. if (!self::$ossClient) {
  78. self::initConfig();
  79. try {
  80. self::$ossClient = new OssClient(self::$accessKeyId, self::$accessKeySecret, self::$endpoint, false);
  81. } catch (OssException $e) {
  82. self::$errorMsg = "创建oss对象失败,".$e->getMessage();
  83. return null;
  84. }
  85. }
  86. return self::$ossClient;
  87. }
  88. public function getSiteUrl()
  89. {
  90. $http = config('is_https') ? 'https://' : 'http://';
  91. $site_url = $http .self::$bucket . "." . self::$endpoint;
  92. $ossConfig = tpCache('oss');
  93. $oss_domain = $ossConfig['oss_domain'];
  94. if ($oss_domain) {
  95. $site_url = $http . $oss_domain;
  96. }
  97. return $site_url;
  98. }
  99. public function uploadFile($filePath, $object = null)
  100. {
  101. $ossClient = self::getOssClient();
  102. if (!$ossClient) {
  103. return false;
  104. }
  105. if (is_null($object)) {
  106. $object = $filePath;
  107. }
  108. try {
  109. $ossClient->uploadFile(self::$bucket, $object, $filePath);
  110. } catch (OssException $e) {
  111. self::$errorMsg = "oss上传文件失败,".$e->getMessage();
  112. return false;
  113. }
  114. return $this->getSiteUrl().'/'.$object;
  115. }
  116. /**
  117. * 获取产品图片的url
  118. * @param type $originalImg
  119. * @param type $width
  120. * @param type $height
  121. * @param type $defaultImg
  122. * @return type
  123. */
  124. public function getProductThumbImageUrl($originalImg, $width, $height, $defaultImg = '')
  125. {
  126. if (!$this->isOssUrl($originalImg)) {
  127. return $defaultImg;
  128. }
  129. // 图片缩放(等比缩放)
  130. $url = $originalImg."?x-oss-process=image/resize,m_pad,h_$height,w_$width";
  131. $water = tpCache('water');
  132. if ($water['is_mark']) {
  133. if ($width > $water['mark_width'] && $height > $water['mark_height']) {
  134. if ($water['mark_type'] == 'img') {
  135. if ($this->isOssUrl($water['mark_img'])) {
  136. $url = $this->withImageWaterUrl($url, $water['mark_img'], $water['mark_degree'], $water['mark_sel']);
  137. }
  138. } else {
  139. $url = $this->withTextWaterUrl($url, $water['mark_txt'], $water['mark_txt_size'], $water['mark_txt_color'], $water['mark_degree'], $water['mark_sel']);
  140. }
  141. }
  142. }
  143. return $url;
  144. }
  145. /**
  146. * 获取产品相册的url
  147. * @param type $originalImg
  148. * @param type $width
  149. * @param type $height
  150. * @param type $defaultImg
  151. * @return type
  152. */
  153. public function getProductAlbumThumbUrl($originalImg, $width, $height, $defaultImg = '')
  154. {
  155. if (!($originalImg && strpos($originalImg, 'http') === 0 && strpos($originalImg, 'aliyuncs.com'))) {
  156. return $defaultImg;
  157. }
  158. // 图片缩放(等比缩放)
  159. $url = $originalImg."?x-oss-process=image/resize,m_pad,h_$height,w_$width";
  160. return $url;
  161. }
  162. /**
  163. * 链接加上文本水印参数(文字水印(方针黑体,黑色))
  164. * @param string $url
  165. * @param type $text
  166. * @param type $size
  167. * @param type $posSel
  168. * @return string
  169. */
  170. private function withTextWaterUrl($url, $text, $size, $color, $transparency, $posSel)
  171. {
  172. $color = $color ?: '#000000';
  173. if (!preg_match('/^#[0-9a-fA-F]{6}$/', $color)) {
  174. $color = '#000000';
  175. }
  176. $color = ltrim($color, '#');
  177. $text_encode = urlsafe_b64encode($text);
  178. $url .= ",image/watermark,text_{$text_encode},type_ZmFuZ3poZW5naGVpdGk,color_{$color},size_{$size},t_{$transparency},g_" . self::$waterPos[$posSel];
  179. return $url;
  180. }
  181. /**
  182. * 链接加上图片水印参数
  183. * @param string $url
  184. * @param type $image
  185. * @param type $transparency
  186. * @param type $posSel
  187. * @return string
  188. */
  189. private function withImageWaterUrl($url, $image, $transparency, $posSel)
  190. {
  191. $image = ltrim(parse_url($image, PHP_URL_PATH), '/');
  192. $image_encode = urlsafe_b64encode($image);
  193. $url .= ",image/watermark,image_{$image_encode},t_{$transparency},g_" . self::$waterPos[$posSel];
  194. return $url;
  195. }
  196. /**
  197. * 是否是oss的链接
  198. * @param type $url
  199. * @return boolean
  200. */
  201. public function isOssUrl($url)
  202. {
  203. if ($url && strpos($url, 'http') === 0 && strpos($url, 'aliyuncs.com')) {
  204. return true;
  205. }
  206. return false;
  207. }
  208. }