123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- <?php
- /**
- * 易优CMS
- * ============================================================================
- * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
- * 网站地址: http://www.eyoucms.com
- * ----------------------------------------------------------------------------
- * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
- * ============================================================================
- * Author: 小虎哥 <1105415366@qq.com>
- * Date: 2018-4-3
- */
- namespace app\common\logic;
-
- use OSS\OssClient;
- use OSS\Core\OssException;
- use think\Db;
-
- require_once './vendor/aliyun-oss-php-sdk/autoload.php';
-
- /**
- * Class OssLogic
- * 对象存储逻辑类
- */
- class OssLogic
- {
- static private $initConfigFlag = false;
- static private $accessKeyId = '';
- static private $accessKeySecret = '';
- static private $endpoint = '';
- static private $bucket = '';
-
- /** @var \OSS\OssClient */
- static private $ossClient = null;
- static private $errorMsg = '';
-
- static private $waterPos = [
- 1 => 'nw', //标识左上角水印
- 2 => 'north', //标识上居中水印
- 3 => 'ne', //标识右上角水印
- 4 => 'west', //标识左居中水印
- 5 => 'center', //标识居中水印
- 6 => 'east', //标识右居中水印
- 7 => 'sw', //标识左下角水印
- 8 => 'south', //标识下居中水印
- 9 => 'se', //标识右下角水印
- ];
-
- public function __construct()
- {
- self::initConfig();
- }
-
- /**
- * 获取错误信息,一旦其他接口返回false时,可调用此接口查看具体错误信息
- * @return type
- */
- public function getError()
- {
- return self::$errorMsg;
- }
-
- static private function initConfig()
- {
- if (self::$initConfigFlag) {
- return;
- }
-
- $c = [];
- $where = [
- 'name' => ['IN', ['oss_key_id', 'oss_key_secret', 'oss_endpoint','oss_bucket']],
- 'lang' => get_admin_lang()
- ];
- $config = Db::name('config')->field('name, value')->where($where)->select();
- foreach ($config as $v) {
- $c[$v['name']] = $v['value'];
- }
- self::$accessKeyId = !empty($c['oss_key_id']) ? $c['oss_key_id'] : '';
- self::$accessKeySecret = !empty($c['oss_key_secret']) ? $c['oss_key_secret'] : '';
- self::$endpoint = !empty($c['oss_endpoint']) ? $c['oss_endpoint'] : '';
- self::$bucket = !empty($c['oss_bucket']) ? $c['oss_bucket'] : '';
- self::$initConfigFlag = true;
- }
-
- static private function getOssClient()
- {
- if (!self::$ossClient) {
- self::initConfig();
- try {
- self::$ossClient = new OssClient(self::$accessKeyId, self::$accessKeySecret, self::$endpoint, false);
- } catch (OssException $e) {
- self::$errorMsg = "创建oss对象失败,".$e->getMessage();
- return null;
- }
- }
- return self::$ossClient;
- }
-
- public function getSiteUrl()
- {
- $http = config('is_https') ? 'https://' : 'http://';
- $site_url = $http .self::$bucket . "." . self::$endpoint;
-
- $ossConfig = tpCache('oss');
- $oss_domain = $ossConfig['oss_domain'];
- if ($oss_domain) {
- $site_url = $http . $oss_domain;
- }
-
- return $site_url;
- }
-
- public function uploadFile($filePath, $object = null)
- {
- $ossClient = self::getOssClient();
- if (!$ossClient) {
- return false;
- }
-
- if (is_null($object)) {
- $object = $filePath;
- }
-
- try {
- $ossClient->uploadFile(self::$bucket, $object, $filePath);
- } catch (OssException $e) {
- self::$errorMsg = "oss上传文件失败,".$e->getMessage();
- return false;
- }
-
- return $this->getSiteUrl().'/'.$object;
- }
-
- /**
- * 获取产品图片的url
- * @param type $originalImg
- * @param type $width
- * @param type $height
- * @param type $defaultImg
- * @return type
- */
- public function getProductThumbImageUrl($originalImg, $width, $height, $defaultImg = '')
- {
- if (!$this->isOssUrl($originalImg)) {
- return $defaultImg;
- }
-
- // 图片缩放(等比缩放)
- $url = $originalImg."?x-oss-process=image/resize,m_pad,h_$height,w_$width";
-
- $water = tpCache('water');
- if ($water['is_mark']) {
- if ($width > $water['mark_width'] && $height > $water['mark_height']) {
- if ($water['mark_type'] == 'img') {
- if ($this->isOssUrl($water['mark_img'])) {
- $url = $this->withImageWaterUrl($url, $water['mark_img'], $water['mark_degree'], $water['mark_sel']);
- }
- } else {
- $url = $this->withTextWaterUrl($url, $water['mark_txt'], $water['mark_txt_size'], $water['mark_txt_color'], $water['mark_degree'], $water['mark_sel']);
- }
- }
- }
- return $url;
- }
-
- /**
- * 获取产品相册的url
- * @param type $originalImg
- * @param type $width
- * @param type $height
- * @param type $defaultImg
- * @return type
- */
- public function getProductAlbumThumbUrl($originalImg, $width, $height, $defaultImg = '')
- {
- if (!($originalImg && strpos($originalImg, 'http') === 0 && strpos($originalImg, 'aliyuncs.com'))) {
- return $defaultImg;
- }
-
- // 图片缩放(等比缩放)
- $url = $originalImg."?x-oss-process=image/resize,m_pad,h_$height,w_$width";
- return $url;
- }
-
- /**
- * 链接加上文本水印参数(文字水印(方针黑体,黑色))
- * @param string $url
- * @param type $text
- * @param type $size
- * @param type $posSel
- * @return string
- */
- private function withTextWaterUrl($url, $text, $size, $color, $transparency, $posSel)
- {
- $color = $color ?: '#000000';
- if (!preg_match('/^#[0-9a-fA-F]{6}$/', $color)) {
- $color = '#000000';
- }
- $color = ltrim($color, '#');
- $text_encode = urlsafe_b64encode($text);
- $url .= ",image/watermark,text_{$text_encode},type_ZmFuZ3poZW5naGVpdGk,color_{$color},size_{$size},t_{$transparency},g_" . self::$waterPos[$posSel];
- return $url;
- }
-
- /**
- * 链接加上图片水印参数
- * @param string $url
- * @param type $image
- * @param type $transparency
- * @param type $posSel
- * @return string
- */
- private function withImageWaterUrl($url, $image, $transparency, $posSel)
- {
- $image = ltrim(parse_url($image, PHP_URL_PATH), '/');
- $image_encode = urlsafe_b64encode($image);
- $url .= ",image/watermark,image_{$image_encode},t_{$transparency},g_" . self::$waterPos[$posSel];
- return $url;
- }
-
- /**
- * 是否是oss的链接
- * @param type $url
- * @return boolean
- */
- public function isOssUrl($url)
- {
- if ($url && strpos($url, 'http') === 0 && strpos($url, 'aliyuncs.com')) {
- return true;
- }
- return false;
- }
- }
|