uid(); $lastDayCount = UserBill::yesterdayCommissionSum($uid);//昨天的佣金 $extractCount = UserExtract::extractSum($uid);//累计提现金额 $commissionCount = UserBill::getBrokerage($uid);//获取总佣金 if ($commissionCount > 0) { $rechargeCount = UserBill::getRecharge($uid);//累计充值 $orderYuePrice = StoreOrder::getOrderStatusYueSum($uid);//余额累计消费 $systemAdd = UserBill::getSystemAdd($uid);//后台添加余额 $yueCount = bcadd($rechargeCount, $systemAdd, 2);// 后台添加余额 + 累计充值 = 非佣金的总金额 $orderYuePrice = $yueCount > $orderYuePrice ? 0 : bcsub($orderYuePrice, $yueCount, 2);// 余额累计消费(使用佣金消费的金额) $commissionCount = bcsub($commissionCount, $extractCount, 2);//减去已提现金额 $extractPriceCount = UserExtract::userExtractTotalPrice($uid, 0); $commissionCount = $extractPriceCount < $commissionCount ? bcsub($commissionCount, $extractPriceCount, 2) : 0;//减去审核中的提现金额 $commissionCount = $commissionCount > $orderYuePrice ? bcsub($commissionCount, $orderYuePrice, 2) : 0;//减掉余额支付 } $data['lastDayCount'] = $lastDayCount; $data['extractCount'] = $extractCount; $data['commissionCount'] = $commissionCount; return app('json')->successful($data); } /** * 推荐用户 * @param Request $request * @return mixed * * grade == 0 获取一级推荐人 * grade == 1 获取二级推荐人 * * keyword 会员名称查询 * * sort childCount ASC/DESC 团队排序 numberCount ASC/DESC 金额排序 orderCount ASC/DESC 订单排序 */ public function spread_people(Request $request) { $spreadInfo = UtilService::postMore([ ['page', 1], ['limit', 20], ['grade', 0], ['keyword', ''], ['sort', ''], ], $request); $uid = $request->uid(); $data['list'] = User::getUserSpreadGrade($uid, $spreadInfo['grade'], $spreadInfo['sort'], $spreadInfo['keyword'], $spreadInfo['page'], $spreadInfo['limit']); $data['total'] = User::getSpreadCount($uid); $data['totalLevel'] = User::getSpreadLevelCount($uid); return app('json')->successful($data); } /** * 推广订单 * @param Request $request * @return mixed */ public function spread_order(Request $request) { $orderInfo = UtilService::postMore([ ['page', 1], ['limit', 20], ['category', 'brokerage_price'], ['type', 'spread_award'], ], $request); $data['list'] = []; $data['count'] = 0; $uid = $request->uid(); $data['list'] = UserBill::getRecordList($uid, $orderInfo['page'], $orderInfo['limit'], $orderInfo['category'], $orderInfo['type']); $count = UserBill::getRecordOrderCount($uid, $orderInfo['category'], $orderInfo['type']); $data['count'] = $count ? $count : 0; if (!count($data['list'])) return app('json')->successful($data); foreach ($data['list'] as $key => &$value) { $value['child'] = UserBill::getRecordOrderListDraw($uid, $value['time'], $orderInfo['category'], $orderInfo['type']); $value['count'] = count($value['child']); } return app('json')->successful($data); } /** * 推广佣金明细 * @param Request $request * @param $type 0 全部 1 消费 2 充值 3 返佣 4 提现 * @return mixed */ public function spread_commission(Request $request, $type) { list($page, $limit) = UtilService::getMore([ ['page', 0], ['limit', 0], ], $request, true); return app('json')->successful(UserBill::getUserBillList($request->uid(), $page, $limit, $type)); } /** * 推广 佣金/提现 总和 * @param Request $request * @param $type 3 佣金 4 提现 * @return mixed */ public function spread_count(Request $request, $type) { $count = 0; if ($type == 3) { $count1 = UserBill::getRecordCount($request->uid(), 'now_money', 'brokerage'); $count2 = UserBill::getRecordCount($request->uid(), 'now_money', 'brokerage', '', true); $count = $count1 - $count2; } else if ($type == 4) { $count = UserExtract::userExtractTotalPrice($request->uid());//累计提现 } $count = $count ? $count : 0; return app('json')->successful(['count' => $count]); } /** * 分销二维码海报生成 * @param Request $request * @return mixed */ // public function spread_banner(Request $request) // { // list($type) = UtilService::getMore([ // ['type', 2], // ], $request, true); // $user = $request->user(); // $rootPath = app()->getRootPath(); // try { // $resRoutine = true;//小程序 // $resWap = true;//公众号 // $siteUrl = sys_config('site_url'); // $routineSpreadBanner = sys_data('routine_spread_banner'); // if (!count($routineSpreadBanner)) return app('json')->fail('暂无海报'); // if ($type == 1) { // //小程序 // $name = $user['uid'] . '_' . $user['is_promoter'] . '_user_routine.jpg'; // $imageInfo = SystemAttachment::getInfo($name, 'name'); // //检测远程文件是否存在 // if (isset($imageInfo['att_dir']) && strstr($imageInfo['att_dir'], 'http') !== false && curl_file_exist($imageInfo['att_dir']) === false) { // $imageInfo = null; // SystemAttachment::where(['name' => $name])->delete(); // } // if (!$imageInfo) { // $res = RoutineCode::getShareCode($user['uid'], 'spread', '', ''); // if (!$res) return app('json')->fail('二维码生成失败'); // $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'), // ]); // $uploadRes = $upload->to('routine/spread/code')->validate()->stream($res['res'], $name); // if ($uploadRes === false) { // return app('json')->fail($upload->getError()); // } // $imageInfo = $upload->getUploadInfo(); // $imageInfo['image_type'] = $uploadType; // SystemAttachment::attachmentAdd($imageInfo['name'], $imageInfo['size'], $imageInfo['type'], $imageInfo['dir'], $imageInfo['thumb_path'], 1, $imageInfo['image_type'], $imageInfo['time'], 2); // RoutineQrcode::setRoutineQrcodeFind($res['id'], ['status' => 1, 'url_time' => time(), 'qrcode_url' => $imageInfo['dir']]); // $urlCode = $imageInfo['dir']; // } else $urlCode = $imageInfo['att_dir']; // if ($imageInfo['image_type'] == 1) $urlCode = $siteUrl . $urlCode; // $siteUrlHttps = set_http_type($siteUrl, 0); // $filelink = [ // 'Bold' => 'static' . DS . 'font' . DS . 'Alibaba-PuHuiTi-Regular.otf', // 'Normal' => 'static' . DS . 'font' . DS . 'Alibaba-PuHuiTi-Regular.otf', // ]; // if (!file_exists($filelink['Bold'])) return app('json')->fail('缺少字体文件Bold'); // if (!file_exists($filelink['Normal'])) return app('json')->fail('缺少字体文件Normal'); // $avatar = $user['avatar'] ?? ''; // if (empty($avatar)) { // 可选:返回错误或用默认头像 // return app('json')->fail('用户头像不存在'); // } // $avatarUrl = $avatar; // if (strpos($avatarUrl, 'http') !== 0) { // $avatarUrl = rtrim($siteUrl, '/') . '/' . ltrim($avatarUrl, '/'); // } // $posterWidth = 750; // 公众号海报标准宽,实际调整 // $fontBoldPath = $rootPath . 'public' . DS . $filelink['Bold']; // 注意:原代码两个text都Bold // // 昵称宽高 (Bold, 50pt) // $nickname = $user['nickname']; // $nicknameBox = imagettfbbox(50, 0, $fontBoldPath, $nickname); // $nicknameWidth = abs($nicknameBox[4] - $nicknameBox[6]); // $nicknameLeft = ($posterWidth - $nicknameWidth) / 2; // foreach ($routineSpreadBanner as $key => &$item) { // $posterInfo = '海报生成失败:('; // $config = array( // 'image' => array( //// array( // 圆形头像 //// 'url' => $avatarUrl, //// 'stream' => 0, //// 'left' => 300, // 居中位置:(750-150)/2 = 300 //// 'top' => 400, // 上移:从640改为500 //// 'right' => 0, //// 'bottom' => 0, //// 'width' => 150, //// 'height' => 150, //// 'opacity' => 100, //// 'circle' => true // 圆形蒙版 //// ), // array( // 'url' => $urlCode, //二维码资源 // 'stream' => 0, // 'left' => 195, // 'top' => 810, // 'right' => 0, // 'bottom' => 0, // 'width' => 360, // 'height' => 360, // 'opacity' => 100 // ), // ), // 'text' => array( // array( // 'text' => $nickname, // 'left' => 300, // 与头像左边对齐 // 'top' => 640, // 头像上方20px // 'fontPath' => $fontBoldPath, // 'fontSize' => 50, // 'fontColor' => '40,40,40', // 'angle' => 0, // ), // array( // 'text' => '邀请您加入' . sys_config('site_name'), // 'left' => 120, // 'top' => 720, // 'fontPath' => $rootPath . 'public' . DS . $filelink['Bold'], // 'fontSize' => 40, // 'fontColor' => '40,40,40', // 'angle' => 0, // ) // ), // 'background' => $item['pic'] // ); // $resRoutine = $resRoutine && $posterInfo = UtilService::setSharePoster($config, 'routine/spread/poster'); // if (!is_array($posterInfo)) return app('json')->fail($posterInfo); // SystemAttachment::attachmentAdd($posterInfo['name'], $posterInfo['size'], $posterInfo['type'], $posterInfo['dir'], $posterInfo['thumb_path'], 1, $posterInfo['image_type'], $posterInfo['time'], 2); // if ($resRoutine) { // if ($posterInfo['image_type'] == 1) // $item['poster'] = $siteUrlHttps . $posterInfo['dir']; // else // $item['poster'] = set_http_type($posterInfo['dir'], 0); // $item['poster'] = str_replace('\\', '/', $item['poster']); // } // } // } else if ($type == 2) { // //公众号 // $name = $user['uid'] . '_' . $user['is_promoter'] . '_user_wap.jpg'; // $imageInfo = SystemAttachment::getInfo($name, 'name'); // //检测远程文件是否存在 // if (isset($imageInfo['att_dir']) && strstr($imageInfo['att_dir'], 'http') !== false && curl_file_exist($imageInfo['att_dir']) === false) { // $imageInfo = null; // SystemAttachment::where(['name' => $name])->delete(); // } // if (!$imageInfo) { // try { // $qr_code = QrcodeService::getForeverQrcode('spread', $user['uid']); // if (isset($qr_code['url'])) { // $urlCode = $qr_code['url']; // } else { // $codeUrl = set_http_type($siteUrl . '?spread=' . $user['uid'], 1);//二维码链接 // $imageInfo = UtilService::getQRCodePath($codeUrl, $name); // if (is_string($imageInfo)) return app('json')->fail('二维码生成失败', ['error' => $imageInfo]); // SystemAttachment::attachmentAdd($imageInfo['name'], $imageInfo['size'], $imageInfo['type'], $imageInfo['dir'], $imageInfo['thumb_path'], 1, $imageInfo['image_type'], $imageInfo['time'], 2); // $urlCode = $imageInfo['dir']; // } // } catch (\Exception $e) { // $codeUrl = set_http_type($siteUrl . '?spread=' . $user['uid'], 1);//二维码链接 // $imageInfo = UtilService::getQRCodePath($codeUrl, $name); // if (is_string($imageInfo)) return app('json')->fail('二维码生成失败', ['error' => $imageInfo]); // SystemAttachment::attachmentAdd($imageInfo['name'], $imageInfo['size'], $imageInfo['type'], $imageInfo['dir'], $imageInfo['thumb_path'], 1, $imageInfo['image_type'], $imageInfo['time'], 2); // $urlCode = $imageInfo['dir']; // } // } else $urlCode = $imageInfo['att_dir']; // if ($imageInfo['image_type'] == 1) $urlCode = $siteUrl . $urlCode; // $siteUrl = set_http_type($siteUrl, 1); // $filelink = [ // 'Bold' => 'static' . DS . 'font' . DS . 'Alibaba-PuHuiTi-Regular.otf', // 'Normal' => 'static' . DS . 'font' . DS . 'Alibaba-PuHuiTi-Regular.otf', // ]; // if (!file_exists($filelink['Bold'])) return app('json')->fail('缺少字体文件Bold'); // if (!file_exists($filelink['Normal'])) return app('json')->fail('缺少字体文件Normal'); // $avatar = $user['avatar'] ?? ''; // if (empty($avatar)) { // return app('json')->fail('用户头像不存在'); // } // $avatarUrl = $avatar; // if (strpos($avatarUrl, 'http') !== 0) { // $avatarUrl = rtrim($siteUrl, '/', '\\') . '/' . ltrim($avatarUrl, '/'); // } // $posterWidth = 783; // 公众号海报标准宽,实际调整 // $fontBoldPath = $rootPath . 'public' . DS . $filelink['Bold']; // 注意:原代码两个text都Bold // // 昵称宽高 (Bold, 50pt) // $nickname = $user['nickname']; // $nicknameBox = imagettfbbox(50, 0, $fontBoldPath, $nickname); // $nicknameWidth = abs($nicknameBox[4] - $nicknameBox[6]); // $nicknameLeft = ($posterWidth - $nicknameWidth) / 2; // foreach ($routineSpreadBanner as $key => &$item) { // $posterInfo = '海报生成失败:('; // $config = array( // 'image' => array( //// array( // 圆形头像 //// 'url' => $avatarUrl, //// 'stream' => 0, //// 'left' => 300, // 居中位置:(750-150)/2 = 300 //// 'top' => 400, // 上移:从640改为500 //// 'right' => 0, //// 'bottom' => 0, //// 'width' => 150, //// 'height' => 150, //// 'opacity' => 100, //// 'circle' => true // 圆形蒙版 //// ), // array( // 'url' => $urlCode, //二维码资源 // 'stream' => 0, // 'left' => 195, // 'top' => 810, // 'right' => 0, // 'bottom' => 0, // 'width' => 360, // 'height' => 360, // 'opacity' => 100 // ), // ), // 'text' => array( // array( // 'text' => $nickname, // 'left' => 300, // 与头像左边对齐 // 'top' => 640, // 头像上方20px // 'fontPath' => $fontBoldPath, // 'fontSize' => 50, // 'fontColor' => '40,40,40', // 'angle' => 0, // ), // array( // 'text' => '邀请您加入' . sys_config('site_name'), // 'left' => 120, // 'top' => 720, // 'fontPath' => $rootPath . 'public' . DS . $filelink['Bold'], // 'fontSize' => 40, // 'fontColor' => '40,40,40', // 'angle' => 0, // ) // ), // 'background' => $item['pic'] // ); // $resWap = $resWap && $posterInfo = UtilService::setSharePoster($config, 'wap/spread/poster'); // if (!is_array($posterInfo)) return app('json')->fail($posterInfo); // SystemAttachment::attachmentAdd($posterInfo['name'], $posterInfo['size'], $posterInfo['type'], $posterInfo['dir'], $posterInfo['thumb_path'], 1, $posterInfo['image_type'], $posterInfo['time'], 2); // if ($resWap) { // if ($posterInfo['image_type'] == 1) // $item['wap_poster'] = $siteUrl . $posterInfo['thumb_path']; // else // $item['wap_poster'] = UtilService::setHttpType($posterInfo['thumb_path'], 1); // } // } // } // if ($resRoutine && $resWap) return app('json')->successful($routineSpreadBanner); // else return app('json')->fail('生成图片失败'); // } catch (\Exception $e) { // @file_put_contents('quanju.txt', json_encode(['line' => $e->getLine(), 'message' => $e->getMessage(), 'file' => $e->getFile()]) . "-报错内容\r\n", 8); // return app('json')->fail('生成图片时,系统错误', ['line' => $e->getLine(), 'message' => $e->getMessage(), 'file' => $e->getFile()]); // } // } public static function setSharePoster($config = array(), $path) { try { $imageDefault = array( 'left' => 0, 'top' => 0, 'right' => 0, 'bottom' => 0, 'width' => 100, 'height' => 100, 'opacity' => 100, 'circle' => false // 是否裁剪为圆形 ); $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); } // 检查背景图片是否存在 if (!file_exists($background) && !filter_var($background, FILTER_VALIDATE_URL)) { throw new \Exception('背景图片不存在: ' . $background); } $backgroundInfo = getimagesize($background); if ($backgroundInfo === false) { throw new \Exception('无法获取背景图片信息'); } $backgroundContent = file_get_contents($background); if ($backgroundContent === false) { throw new \Exception('无法读取背景图片'); } $background = imagecreatefromstring($backgroundContent); if ($background === false) { throw new \Exception('无法创建背景图片资源'); } $backgroundWidth = $backgroundInfo[0]; //背景宽度 $backgroundHeight = $backgroundInfo[1]; //背景高度 // 创建主图像,支持透明度 $imageRes = imageCreatetruecolor($backgroundWidth, $backgroundHeight); // 设置透明背景 imagealphablending($imageRes, false); imagesavealpha($imageRes, true); $transparent = imagecolorallocatealpha($imageRes, 255, 255, 255, 127); imagefilledrectangle($imageRes, 0, 0, $backgroundWidth, $backgroundHeight, $transparent); // 复制背景图片 imagecopyresampled($imageRes, $background, 0, 0, 0, 0, imagesx($background), imagesy($background), imagesx($background), imagesy($background)); // 恢复混合模式 imagealphablending($imageRes, true); if (!empty($config['image'])) { foreach ($config['image'] as $key => $val) { $val = array_merge($imageDefault, $val); // 检查图片URL是否存在 if (empty($val['url'])) { continue; // 跳过空的图片URL } // 处理URL:如果是相对路径,转换为绝对路径 $imageUrl = $val['url']; if (!filter_var($imageUrl, FILTER_VALIDATE_URL) && file_exists($imageUrl)) { // 如果是本地文件路径,直接使用 $imageContent = file_get_contents($imageUrl); } else { // 尝试获取远程图片 $imageContent = @file_get_contents($imageUrl); } if ($imageContent === false) { // 如果无法获取图片,跳过 continue; } $res = imagecreatefromstring($imageContent); if ($res === false) { // 如果无法创建图片资源,跳过 continue; } $resWidth = imagesx($res); $resHeight = imagesy($res); // 如果是圆形,创建圆形图片 if ($val['circle']) { // 创建一个支持透明的画布 $canvas = imagecreatetruecolor($val['width'], $val['height']); // 设置透明背景 imagealphablending($canvas, false); imagesavealpha($canvas, true); $transparent = imagecolorallocatealpha($canvas, 255, 255, 255, 127); imagefilledrectangle($canvas, 0, 0, $val['width'], $val['height'], $transparent); // 将原图缩放到指定大小 $sourceResized = imagecreatetruecolor($val['width'], $val['height']); imagecopyresampled($sourceResized, $res, 0, 0, 0, 0, $val['width'], $val['height'], $resWidth, $resHeight); // 创建圆形:只复制圆形区域内的像素 $centerX = $val['width'] / 2; $centerY = $val['height'] / 2; $radius = min($val['width'], $val['height']) / 2; // 恢复混合模式 imagealphablending($canvas, true); for ($x = 0; $x < $val['width']; $x++) { for ($y = 0; $y < $val['height']; $y++) { $distance = sqrt(pow($x - $centerX, 2) + pow($y - $centerY, 2)); if ($distance <= $radius) { $pixelColor = imagecolorat($sourceResized, $x, $y); imagesetpixel($canvas, $x, $y, $pixelColor); } } } imagedestroy($sourceResized); imagedestroy($res); } else { // 非圆形,按原逻辑处理 $canvas = imagecreatetruecolor($val['width'], $val['height']); $bgColor = imagecolorallocate($canvas, 255, 255, 255); imagefill($canvas, 0, 0, $bgColor); imagecopyresampled($canvas, $res, 0, 0, 0, 0, $val['width'], $val['height'], $resWidth, $resHeight); imagedestroy($res); } $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']; // 合并到主图像 if ($val['circle']) { // 对于圆形图片,使用imagecopy以支持透明度 imagecopy($imageRes, $canvas, $val['left'], $val['top'], 0, 0, $val['width'], $val['height']); } else { // 对于普通图片,使用imagecopymerge imagecopymerge($imageRes, $canvas, $val['left'], $val['top'], 0, 0, $val['width'], $val['height'], $val['opacity']); } imagedestroy($canvas); } } 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']); } } // 输出图片前再次确保保存alpha通道 imagesavealpha($imageRes, true); ob_start(); imagejpeg($imageRes, null, 90); // 使用较高质量 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; } } catch (\Exception $e) { @file_put_contents('quanju.txt', json_encode(['line' => $e->getLine(), 'message' => $e->getMessage(), 'file' => $e->getFile()]) . "-报错内容\r\n", 8); return '生成图片时,系统错误: ' . $e->getMessage(); } } /** * 辅助函数:带透明度的图像复制 * 注意:这个函数在PHP 5.5+中可能不需要,因为imagecopy已经支持透明度 */ function imagecopymerge_alpha($dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $src_w, $src_h, $pct) { // 创建一个临时图像 $tmp = imagecreatetruecolor($src_w, $src_h); // 复制源图像到临时图像 imagecopy($tmp, $dst_im, 0, 0, $dst_x, $dst_y, $src_w, $src_h); // 合并源图像到临时图像 imagecopy($tmp, $src_im, 0, 0, $src_x, $src_y, $src_w, $src_h); // 合并临时图像到目标图像 imagecopymerge($dst_im, $tmp, $dst_x, $dst_y, 0, 0, $src_w, $src_h, $pct); // 销毁临时图像 imagedestroy($tmp); } /** * 积分记录 * @param Request $request * @return mixed * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ public function integral_list(Request $request) { list($page, $limit, $status) = UtilService::getMore([ ['page', 0], ['limit', 0], ['pm', 0] ], $request, true); return app('json')->successful(UserBill::userBillList($request->uid(), $page, $limit, 'integral', ['pm' => $status])); } }