123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361 |
- <?php
- /**
- *
- * @author: xaboy<365615158@qq.com>
- * @day: 2017/11/02
- */
- namespace crmeb\services;
- use think\facade\Config;
- use dh2y\qrcode\QRcode;
- use crmeb\services\upload\Upload;
- class UtilService
- {
- /**
- * 获取POST请求的数据
- * @param $params
- * @param null $request
- * @param bool $suffix
- * @return array
- */
- public static function postMore($params, $request = null, $suffix = false)
- {
- if ($request === null) $request = app('request');
- $p = [];
- $i = 0;
- foreach ($params as $param) {
- if (!is_array($param)) {
- $p[$suffix == true ? $i++ : $param] = $request->param($param);
- } else {
- if (!isset($param[1])) $param[1] = null;
- if (!isset($param[2])) $param[2] = '';
- if (is_array($param[0])) {
- $name = is_array($param[1]) ? $param[0][0] . '/a' : $param[0][0] . '/' . $param[0][1];
- $keyName = $param[0][0];
- } else {
- $name = is_array($param[1]) ? $param[0] . '/a' : $param[0];
- $keyName = $param[0];
- }
- $p[$suffix == true ? $i++ : (isset($param[3]) ? $param[3] : $keyName)] = $request->param($name, $param[1], $param[2]);
- }
- }
- return $p;
- }
- /**
- * 获取请求的数据
- * @param $params
- * @param null $request
- * @param bool $suffix
- * @return array
- */
- public static function getMore($params, $request = null, $suffix = false)
- {
- if ($request === null) $request = app('request');
- $p = [];
- $i = 0;
- foreach ($params as $param) {
- if (!is_array($param)) {
- $p[$suffix == true ? $i++ : $param] = $request->param($param);
- } else {
- if (!isset($param[1])) $param[1] = null;
- if (!isset($param[2])) $param[2] = '';
- if (is_array($param[0])) {
- $name = is_array($param[1]) ? $param[0][0] . '/a' : $param[0][0] . '/' . $param[0][1];
- $keyName = $param[0][0];
- } else {
- $name = is_array($param[1]) ? $param[0] . '/a' : $param[0];
- $keyName = $param[0];
- }
- $p[$suffix == true ? $i++ : (isset($param[3]) ? $param[3] : $keyName)] = $request->param($name, $param[1], $param[2]);
- }
- }
- return $p;
- }
- /**
- * TODO 砍价 拼团 分享海报生成
- * @param array $data
- * @param $path
- * @return array|bool|string
- * @throws \Exception
- */
- public static function setShareMarketingPoster($data = array(), $path)
- {
- if (!@fopen($data['image'], 'r')) exception('缺少商品图片');
- if (!@fopen($data['url'], 'r')) exception('缺少二维码图片');
- $config = array(
- 'text' => array(
- array(
- 'text' => $data['price'],//TODO 价格
- 'left' => 116,
- 'top' => 200,
- 'fontPath' => app()->getRootPath() . 'public/static/font/Alibaba-PuHuiTi-Regular.otf', //字体文件
- 'fontSize' => 50, //字号
- 'fontColor' => '255,0,0', //字体颜色
- 'angle' => 0,
- ),
- array(
- 'text' => $data['label'],//TODO 标签
- 'left' => 450,
- 'top' => 188,
- 'fontPath' => app()->getRootPath() . 'public/static/font/Alibaba-PuHuiTi-Regular.otf', //字体文件
- 'fontSize' => 24, //字号
- 'fontColor' => '255,255,255', //字体颜色
- 'angle' => 0,
- ),
- array(
- 'text' => $data['msg'],//TODO 简述
- 'left' => 80,
- 'top' => 270,
- 'fontPath' => app()->getRootPath() . 'public/static/font/Alibaba-PuHuiTi-Regular.otf', //字体文件
- 'fontSize' => 22, //字号
- 'fontColor' => '40,40,40', //字体颜色
- 'angle' => 0,
- )
- ),
- 'image' => array(
- array(
- 'url' => $data['image'], //图片
- 'stream' => 0,
- 'left' => 120,
- 'top' => 340,
- 'right' => 0,
- 'bottom' => 0,
- 'width' => 450,
- 'height' => 450,
- 'opacity' => 100
- ),
- array(
- 'url' => $data['url'], //二维码资源
- 'stream' => 0,
- 'left' => 260,
- 'top' => 890,
- 'right' => 0,
- 'bottom' => 0,
- 'width' => 160,
- 'height' => 160,
- 'opacity' => 100
- )
- ),
- 'background' => 'static/poster/poster.jpg'
- );
- if (!file_exists($config['background'])) exception('缺少系统预设背景图片');
- if (strlen($data['title']) < 36) {
- $text = array(
- 'text' => $data['title'],//TODO 标题
- 'left' => 76,
- 'top' => 100,
- 'fontPath' => app()->getRootPath() . 'public/static/font/Alibaba-PuHuiTi-Regular.otf', //字体文件
- 'fontSize' => 32, //字号
- 'fontColor' => '0,0,0', //字体颜色
- 'angle' => 0,
- );
- array_push($config['text'], $text);
- } else {
- $titleOne = array(
- 'text' => mb_strimwidth($data['title'], 0, 24),//TODO 标题
- 'left' => 76,
- 'top' => 70,
- 'fontPath' => app()->getRootPath() . 'public/static/font/Alibaba-PuHuiTi-Regular.otf', //字体文件
- 'fontSize' => 32, //字号
- 'fontColor' => '0,0,0', //字体颜色
- 'angle' => 0,
- );
- $titleTwo = array(
- 'text' => mb_strimwidth($data['title'], mb_strlen(mb_strimwidth($data['title'], 0, 24)), 24),//TODO 标题
- 'left' => 76,
- 'top' => 120,
- 'fontPath' => app()->getRootPath() . 'public/static/font/Alibaba-PuHuiTi-Regular.otf', //字体文件
- 'fontSize' => 32, //字号
- 'fontColor' => '0,0,0', //字体颜色
- 'angle' => 0,
- );
- array_push($config['text'], $titleOne);
- array_push($config['text'], $titleTwo);
- }
- return self::setSharePoster($config, $path);
- }
- /**
- * TODO 生成分享二维码图片
- * @param array $config
- * @param $path
- * @return array|bool|string
- * @throws \Exception
- */
- public static function setSharePoster($config = array(), $path)
- {
- $imageDefault = array(
- 'left' => 0,
- 'top' => 0,
- 'right' => 0,
- 'bottom' => 0,
- 'width' => 100,
- 'height' => 100,
- 'opacity' => 100
- );
- $textDefault = array(
- 'text' => '',
- 'left' => 0,
- 'top' => 0,
- 'fontSize' => 32, //字号
- 'fontColor' => '255,255,255', //字体颜色
- 'angle' => 0,
- );
- $background = $config['background'];//海报最底层得背景
- if (substr($background, 0, 1) === '/') {
- $background = substr($background, 1);
- }
- $backgroundInfo = getimagesize($background);
- $background = imagecreatefromstring(file_get_contents($background));
- $backgroundWidth = $backgroundInfo[0]; //背景宽度
- $backgroundHeight = $backgroundInfo[1]; //背景高度
- $imageRes = imageCreatetruecolor($backgroundWidth, $backgroundHeight);
- $color = imagecolorallocate($imageRes, 0, 0, 0);
- imagefill($imageRes, 0, 0, $color);
- imagecopyresampled($imageRes, $background, 0, 0, 0, 0, imagesx($background), imagesy($background), imagesx($background), imagesy($background));
- if (!empty($config['image'])) {
- foreach ($config['image'] as $key => $val) {
- $val = array_merge($imageDefault, $val);
- $info = getimagesize($val['url']);
- $function = 'imagecreatefrom' . image_type_to_extension($info[2], false);
- if ($val['stream']) {
- $info = getimagesizefromstring($val['url']);
- $function = 'imagecreatefromstring';
- }
- $res = $function($val['url']);
- $resWidth = $info[0];
- $resHeight = $info[1];
- $canvas = imagecreatetruecolor($val['width'], $val['height']);
- imagefill($canvas, 0, 0, $color);
- imagecopyresampled($canvas, $res, 0, 0, 0, 0, $val['width'], $val['height'], $resWidth, $resHeight);
- $val['left'] = $val['left'] < 0 ? $backgroundWidth - abs($val['left']) - $val['width'] : $val['left'];
- $val['top'] = $val['top'] < 0 ? $backgroundHeight - abs($val['top']) - $val['height'] : $val['top'];
- imagecopymerge($imageRes, $canvas, $val['left'], $val['top'], $val['right'], $val['bottom'], $val['width'], $val['height'], $val['opacity']);//左,上,右,下,宽度,高度,透明度
- }
- }
- if (isset($config['text']) && !empty($config['text'])) {
- foreach ($config['text'] as $key => $val) {
- $val = array_merge($textDefault, $val);
- list($R, $G, $B) = explode(',', $val['fontColor']);
- $fontColor = imagecolorallocate($imageRes, $R, $G, $B);
- $val['left'] = $val['left'] < 0 ? $backgroundWidth - abs($val['left']) : $val['left'];
- $val['top'] = $val['top'] < 0 ? $backgroundHeight - abs($val['top']) : $val['top'];
- imagettftext($imageRes, $val['fontSize'], $val['angle'], $val['left'], $val['top'], $fontColor, $val['fontPath'], $val['text']);
- }
- }
- ob_start();
- imagejpeg($imageRes);
- imagedestroy($imageRes);
- $res = ob_get_contents();
- ob_end_clean();
- $key = substr(md5(rand(0, 9999)), 0, 5) . date('YmdHis') . rand(0, 999999) . '.jpg';
- $uploadType = (int)sys_config('upload_type', 1);
- $upload = new Upload($uploadType, [
- 'accessKey' => sys_config('accessKey'),
- 'secretKey' => sys_config('secretKey'),
- 'uploadUrl' => sys_config('uploadUrl'),
- 'storageName' => sys_config('storage_name'),
- 'storageRegion' => sys_config('storage_region'),
- ]);
- $res = $upload->to($path)->validate()->stream($res, $key);
- if ($res === false) {
- return $upload->getError();
- } else {
- $info = $upload->getUploadInfo();
- $info['image_type'] = $uploadType;
- return $info;
- }
- }
- /**
- * TODO 获取小程序二维码是否生成
- * @param $url
- * @return array
- */
- public static function remoteImage($url)
- {
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_URL, $url);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
- $result = curl_exec($curl);
- $result = json_decode($result, true);
- if (is_array($result)) return ['status' => false, 'msg' => $result['errcode'] . '---' . $result['errmsg']];
- return ['status' => true];
- }
- /**
- * TODO 修改 https 和 http 移动到common
- * @param $url $url 域名
- * @param int $type 0 返回https 1 返回 http
- * @return string
- */
- public static function setHttpType($url, $type = 0)
- {
- $domainTop = substr($url, 0, 5);
- if ($type) {
- if ($domainTop == 'https') $url = 'http' . substr($url, 5, strlen($url));
- } else {
- if ($domainTop != 'https') $url = 'https:' . substr($url, 5, strlen($url));
- }
- return $url;
- }
- /**
- * 获取二维码
- * @param $url
- * @param $name
- * @return array|bool|string
- */
- public static function getQRCodePath($url, $name)
- {
- if (!strlen(trim($url)) || !strlen(trim($name))) return false;
- try {
- $uploadType = sys_config('upload_type');
- //TODO 没有选择默认使用本地上传
- if (!$uploadType) $uploadType = 1;
- $uploadType = (int)$uploadType;
- $siteUrl = sys_config('site_url');
- if (!$siteUrl) return '请前往后台设置->系统设置->网站域名 填写您的域名格式为:http://域名';
- $info = [];
- $outfile = Config::get('qrcode.cache_dir');
- $code = new QRcode();
- $wapCodePath = $code->png($url, $outfile . '/' . $name)->getPath(); //获取二维码生成的地址
- $content = file_get_contents('.' . $wapCodePath);
- if ($uploadType === 1) {
- $info["code"] = 200;
- $info["name"] = $name;
- $info["dir"] = $wapCodePath;
- $info["time"] = time();
- $info['size'] = 0;
- $info['type'] = 'image/png';
- $info["image_type"] = 1;
- $info['thumb_path'] = $wapCodePath;
- return $info;
- } else {
- $upload = new Upload($uploadType, [
- 'accessKey' => sys_config('accessKey'),
- 'secretKey' => sys_config('secretKey'),
- 'uploadUrl' => sys_config('uploadUrl'),
- 'storageName' => sys_config('storage_name'),
- 'storageRegion' => sys_config('storage_region'),
- ]);
- $res = $upload->to($outfile)->validate()->stream($content, $name);
- if ($res === false) {
- return $upload->getError();
- }
- $info = $upload->getUploadInfo();
- $info['image_type'] = $uploadType;
- return $info;
- }
- } catch (\Exception $e) {
- return $e->getMessage();
- }
- }
- }
|