UserBillController.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. <?php
  2. namespace app\api\controller\user;
  3. use app\admin\model\system\SystemAttachment;
  4. use app\models\routine\RoutineCode;
  5. use app\models\routine\RoutineQrcode;
  6. use app\models\store\StoreOrder;
  7. use app\models\user\User;
  8. use app\models\user\UserBill;
  9. use app\models\user\UserExtract;
  10. use app\Request;
  11. use crmeb\services\GroupDataService;
  12. use crmeb\services\QrcodeService;
  13. use crmeb\services\SystemConfigService;
  14. use crmeb\services\UtilService;
  15. use crmeb\services\upload\Upload;
  16. /**
  17. * 账单类
  18. * Class UserBillController
  19. * @package app\api\controller\user
  20. */
  21. class UserBillController
  22. {
  23. /**
  24. * 推广数据 昨天的佣金 累计提现金额 当前佣金
  25. * @param Request $request
  26. * @return mixed
  27. */
  28. public function commission(Request $request)
  29. {
  30. $uid = $request->uid();
  31. $lastDayCount = UserBill::yesterdayCommissionSum($uid);//昨天的佣金
  32. $extractCount = UserExtract::extractSum($uid);//累计提现金额
  33. $commissionCount = UserBill::getBrokerage($uid);//获取总佣金
  34. if ($commissionCount > 0) {
  35. $rechargeCount = UserBill::getRecharge($uid);//累计充值
  36. $orderYuePrice = StoreOrder::getOrderStatusYueSum($uid);//余额累计消费
  37. $systemAdd = UserBill::getSystemAdd($uid);//后台添加余额
  38. $yueCount = bcadd($rechargeCount, $systemAdd, 2);// 后台添加余额 + 累计充值 = 非佣金的总金额
  39. $orderYuePrice = $yueCount > $orderYuePrice ? 0 : bcsub($orderYuePrice, $yueCount, 2);// 余额累计消费(使用佣金消费的金额)
  40. $commissionCount = bcsub($commissionCount, $extractCount, 2);//减去已提现金额
  41. $extractPriceCount = UserExtract::userExtractTotalPrice($uid, 0);
  42. $commissionCount = $extractPriceCount < $commissionCount ? bcsub($commissionCount, $extractPriceCount, 2) : 0;//减去审核中的提现金额
  43. $commissionCount = $commissionCount > $orderYuePrice ? bcsub($commissionCount, $orderYuePrice, 2) : 0;//减掉余额支付
  44. }
  45. $data['lastDayCount'] = $lastDayCount;
  46. $data['extractCount'] = $extractCount;
  47. $data['commissionCount'] = $commissionCount;
  48. return app('json')->successful($data);
  49. }
  50. /**
  51. * 推荐用户
  52. * @param Request $request
  53. * @return mixed
  54. *
  55. * grade == 0 获取一级推荐人
  56. * grade == 1 获取二级推荐人
  57. *
  58. * keyword 会员名称查询
  59. *
  60. * sort childCount ASC/DESC 团队排序 numberCount ASC/DESC 金额排序 orderCount ASC/DESC 订单排序
  61. */
  62. public function spread_people(Request $request)
  63. {
  64. $spreadInfo = UtilService::postMore([
  65. ['page', 1],
  66. ['limit', 20],
  67. ['grade', 0],
  68. ['keyword', ''],
  69. ['sort', ''],
  70. ], $request);
  71. $uid = $request->uid();
  72. $data['list'] = User::getUserSpreadGrade($uid, $spreadInfo['grade'], $spreadInfo['sort'], $spreadInfo['keyword'], $spreadInfo['page'], $spreadInfo['limit']);
  73. $data['total'] = User::getSpreadCount($uid);
  74. $data['totalLevel'] = User::getSpreadLevelCount($uid);
  75. $data['total_count'] = count(get_downline(User::select(), $uid));
  76. return app('json')->successful($data);
  77. }
  78. /**
  79. * 推广订单
  80. * @param Request $request
  81. * @return mixed
  82. */
  83. public function spread_order(Request $request)
  84. {
  85. $orderInfo = UtilService::postMore([
  86. ['page', 1],
  87. ['limit', 20],
  88. ['category', 'now_money'],
  89. ['type', 'brokerage'],
  90. ], $request);
  91. $data['list'] = [];
  92. $data['count'] = 0;
  93. $uid = $request->uid();
  94. $data['list'] = UserBill::getRecordList($uid, $orderInfo['page'], $orderInfo['limit'], $orderInfo['category'], $orderInfo['type']);
  95. $count = UserBill::getRecordOrderCount($uid, $orderInfo['category'], $orderInfo['type']);
  96. $data['count'] = $count ? $count : 0;
  97. if (!count($data['list'])) return app('json')->successful($data);
  98. foreach ($data['list'] as $key => &$value) {
  99. $value['child'] = UserBill::getRecordOrderListDraw($uid, $value['time'], $orderInfo['category'], $orderInfo['type']);
  100. $value['count'] = count($value['child']);
  101. }
  102. return app('json')->successful($data);
  103. }
  104. /**
  105. * 推广佣金明细
  106. * @param Request $request
  107. * @param $type 0 全部 1 消费 2 充值 3 返佣 4 提现
  108. * @return mixed
  109. */
  110. public function spread_commission(Request $request, $type)
  111. {
  112. list($page, $limit) = UtilService::getMore([
  113. ['page', 0],
  114. ['limit', 0],
  115. ], $request, true);
  116. return app('json')->successful(UserBill::getUserBillList($request->uid(), $page, $limit, $type));
  117. }
  118. /**
  119. * 推广 佣金/提现 总和
  120. * @param Request $request
  121. * @param $type 3 佣金 4 提现
  122. * @return mixed
  123. */
  124. public function spread_count(Request $request, $type)
  125. {
  126. $count = 0;
  127. if ($type == 3) {
  128. $count1 = UserBill::getRecordCount($request->uid(), 'now_money', 'brokerage');
  129. $count2 = UserBill::getRecordCount($request->uid(), 'now_money', 'brokerage', '', true);
  130. $count = $count1 - $count2;
  131. } else if ($type == 4) {
  132. $count = UserExtract::userExtractTotalPrice($request->uid());//累计提现
  133. }
  134. $count = $count ? $count : 0;
  135. return app('json')->successful(['count' => $count]);
  136. }
  137. /**
  138. * 分销二维码海报生成
  139. * @param Request $request
  140. * @return mixed
  141. */
  142. public function spread_banner(Request $request)
  143. {
  144. list($type) = UtilService::getMore([
  145. ['type', 2],
  146. ], $request, true);
  147. $user = $request->user();
  148. $rootPath = app()->getRootPath();
  149. try {
  150. $resRoutine = true;//小程序
  151. $resWap = true;//公众号
  152. $siteUrl = sys_config('site_url');
  153. $routineSpreadBanner = sys_data('routine_spread_banner');
  154. if (!count($routineSpreadBanner)) return app('json')->fail('暂无海报');
  155. if ($type == 1) {
  156. //小程序
  157. $name = $user['uid'] . '_' . $user['is_promoter'] . '_user_routine.jpg';
  158. $imageInfo = SystemAttachment::getInfo($name, 'name');
  159. //检测远程文件是否存在
  160. if (isset($imageInfo['att_dir']) && strstr($imageInfo['att_dir'], 'http') !== false && curl_file_exist($imageInfo['att_dir']) === false) {
  161. $imageInfo = null;
  162. SystemAttachment::where(['name' => $name])->delete();
  163. }
  164. if (!$imageInfo) {
  165. $res = RoutineCode::getShareCode($user['uid'], 'spread', '', '');
  166. if (!$res) return app('json')->fail('二维码生成失败');
  167. $uploadType = (int)sys_config('upload_type', 1);
  168. $upload = new Upload($uploadType, [
  169. 'accessKey' => sys_config('accessKey'),
  170. 'secretKey' => sys_config('secretKey'),
  171. 'uploadUrl' => sys_config('uploadUrl'),
  172. 'storageName' => sys_config('storage_name'),
  173. 'storageRegion' => sys_config('storage_region'),
  174. ]);
  175. $uploadRes = $upload->to('routine/spread/code')->validate()->stream($res['res'], $name);
  176. if ($uploadRes === false) {
  177. return app('json')->fail($upload->getError());
  178. }
  179. $imageInfo = $upload->getUploadInfo();
  180. $imageInfo['image_type'] = $uploadType;
  181. SystemAttachment::attachmentAdd($imageInfo['name'], $imageInfo['size'], $imageInfo['type'], $imageInfo['dir'], $imageInfo['thumb_path'], 1, $imageInfo['image_type'], $imageInfo['time'], 2);
  182. RoutineQrcode::setRoutineQrcodeFind($res['id'], ['status' => 1, 'url_time' => time(), 'qrcode_url' => $imageInfo['dir']]);
  183. $urlCode = $imageInfo['dir'];
  184. } else $urlCode = $imageInfo['att_dir'];
  185. if ($imageInfo['image_type'] == 1) $urlCode = $siteUrl . $urlCode;
  186. $siteUrlHttps = set_http_type($siteUrl, 0);
  187. $filelink = [
  188. 'Bold' => 'static' . DS . 'font' . DS . 'Alibaba-PuHuiTi-Regular.otf',
  189. 'Normal' => 'static' . DS . 'font' . DS . 'Alibaba-PuHuiTi-Regular.otf',
  190. ];
  191. if (!file_exists($filelink['Bold'])) return app('json')->fail('缺少字体文件Bold');
  192. if (!file_exists($filelink['Normal'])) return app('json')->fail('缺少字体文件Normal');
  193. foreach ($routineSpreadBanner as $key => &$item) {
  194. $posterInfo = '海报生成失败:(';
  195. $config = array(
  196. 'image' => array(
  197. array(
  198. 'url' => $urlCode, //二维码资源
  199. 'stream' => 0,
  200. 'left' => 220,
  201. 'top' => 910,
  202. 'right' => 0,
  203. 'bottom' => 0,
  204. 'width' => 330,
  205. 'height' => 330,
  206. 'opacity' => 100
  207. )
  208. ),
  209. 'text' => array(
  210. array(
  211. 'text' => $user['nickname'],
  212. 'left' => 250,
  213. 'top' => 840,
  214. 'fontPath' => $rootPath . 'public' . DS . $filelink['Bold'], //字体文件
  215. 'fontSize' => 16, //字号
  216. 'fontColor' => '40,40,40', //字体颜色
  217. 'angle' => 0,
  218. ),
  219. array(
  220. 'text' => '邀请您加入' . sys_config('site_name'),
  221. 'left' => 250,
  222. 'top' => 880,
  223. 'fontPath' => $rootPath . 'public' . DS . $filelink['Normal'], //字体文件
  224. 'fontSize' => 16, //字号
  225. 'fontColor' => '40,40,40', //字体颜色
  226. 'angle' => 0,
  227. )
  228. ),
  229. 'background' => $item['pic']
  230. );
  231. $resRoutine = $resRoutine && $posterInfo = UtilService::setSharePoster($config, 'routine/spread/poster');
  232. if (!is_array($posterInfo)) return app('json')->fail($posterInfo);
  233. SystemAttachment::attachmentAdd($posterInfo['name'], $posterInfo['size'], $posterInfo['type'], $posterInfo['dir'], $posterInfo['thumb_path'], 1, $posterInfo['image_type'], $posterInfo['time'], 2);
  234. if ($resRoutine) {
  235. if ($posterInfo['image_type'] == 1)
  236. $item['poster'] = $siteUrlHttps . $posterInfo['dir'];
  237. else
  238. $item['poster'] = set_http_type($posterInfo['dir'], 0);
  239. $item['poster'] = str_replace('\\', '/', $item['poster']);
  240. }
  241. }
  242. } else if ($type == 2) {
  243. //公众号
  244. $name = $user['uid'] . '_' . $user['is_promoter'] . '_user_wap.jpg';
  245. $imageInfo = SystemAttachment::getInfo($name, 'name');
  246. //检测远程文件是否存在
  247. if (isset($imageInfo['att_dir']) && strstr($imageInfo['att_dir'], 'http') !== false && curl_file_exist($imageInfo['att_dir']) === false) {
  248. $imageInfo = null;
  249. SystemAttachment::where(['name' => $name])->delete();
  250. }
  251. if (!$imageInfo) {
  252. try {
  253. $qr_code = QrcodeService::getForeverQrcode('spread', $user['uid']);
  254. if (isset($qr_code['url'])) {
  255. $urlCode = $qr_code['url'];
  256. } else {
  257. $codeUrl = set_http_type($siteUrl . '?spread=' . $user['uid'], 1);//二维码链接
  258. $imageInfo = UtilService::getQRCodePath($codeUrl, $name);
  259. if (is_string($imageInfo)) return app('json')->fail('二维码生成失败', ['error' => $imageInfo]);
  260. SystemAttachment::attachmentAdd($imageInfo['name'], $imageInfo['size'], $imageInfo['type'], $imageInfo['dir'], $imageInfo['thumb_path'], 1, $imageInfo['image_type'], $imageInfo['time'], 2);
  261. $urlCode = $imageInfo['dir'];
  262. }
  263. } catch (\Exception $e) {
  264. $codeUrl = set_http_type($siteUrl . '?spread=' . $user['uid'], 1);//二维码链接
  265. $imageInfo = UtilService::getQRCodePath($codeUrl, $name);
  266. if (is_string($imageInfo)) return app('json')->fail('二维码生成失败', ['error' => $imageInfo]);
  267. SystemAttachment::attachmentAdd($imageInfo['name'], $imageInfo['size'], $imageInfo['type'], $imageInfo['dir'], $imageInfo['thumb_path'], 1, $imageInfo['image_type'], $imageInfo['time'], 2);
  268. $urlCode = $imageInfo['dir'];
  269. }
  270. } else $urlCode = $imageInfo['att_dir'];
  271. if ($imageInfo['image_type'] == 1) $urlCode = $siteUrl . $urlCode;
  272. $siteUrl = set_http_type($siteUrl, 1);
  273. $filelink = [
  274. 'Bold' => 'static' . DS . 'font' . DS . 'Alibaba-PuHuiTi-Regular.otf',
  275. 'Normal' => 'static' . DS . 'font' . DS . 'Alibaba-PuHuiTi-Regular.otf',
  276. ];
  277. if (!file_exists($filelink['Bold'])) return app('json')->fail('缺少字体文件Bold');
  278. if (!file_exists($filelink['Normal'])) return app('json')->fail('缺少字体文件Normal');
  279. foreach ($routineSpreadBanner as $key => &$item) {
  280. $posterInfo = '海报生成失败:(';
  281. $config = array(
  282. 'image' => array(
  283. array(
  284. 'url' => $urlCode, //二维码资源
  285. 'stream' => 0,
  286. 'left' => 114,
  287. 'top' => 790,
  288. 'right' => 0,
  289. 'bottom' => 0,
  290. 'width' => 120,
  291. 'height' => 120,
  292. 'opacity' => 100
  293. )
  294. ),
  295. 'text' => array(
  296. array(
  297. 'text' => $user['nickname'],
  298. 'left' => 250,
  299. 'top' => 840,
  300. 'fontPath' => $rootPath . 'public' . DS . $filelink['Bold'], //字体文件
  301. 'fontSize' => 16, //字号
  302. 'fontColor' => '40,40,40', //字体颜色
  303. 'angle' => 0,
  304. ),
  305. array(
  306. 'text' => '邀请您加入' . sys_config('site_name'),
  307. 'left' => 250,
  308. 'top' => 880,
  309. 'fontPath' => $rootPath . 'public' . DS . $filelink['Normal'], //字体文件
  310. 'fontSize' => 16, //字号
  311. 'fontColor' => '40,40,40', //字体颜色
  312. 'angle' => 0,
  313. )
  314. ),
  315. 'background' => $item['pic']
  316. );
  317. $resWap = $resWap && $posterInfo = UtilService::setSharePoster($config, 'wap/spread/poster');
  318. if (!is_array($posterInfo)) return app('json')->fail($posterInfo);
  319. SystemAttachment::attachmentAdd($posterInfo['name'], $posterInfo['size'], $posterInfo['type'], $posterInfo['dir'], $posterInfo['thumb_path'], 1, $posterInfo['image_type'], $posterInfo['time'], 2);
  320. if ($resWap) {
  321. if ($posterInfo['image_type'] == 1)
  322. $item['wap_poster'] = $siteUrl . $posterInfo['thumb_path'];
  323. else
  324. $item['wap_poster'] = UtilService::setHttpType($posterInfo['thumb_path'], 1);
  325. }
  326. }
  327. }
  328. if ($resRoutine && $resWap) return app('json')->successful($routineSpreadBanner);
  329. else return app('json')->fail('生成图片失败');
  330. } catch (\Exception $e) {
  331. return app('json')->fail('生成图片时,系统错误', ['line' => $e->getLine(), 'message' => $e->getMessage(), 'file' => $e->getFile()]);
  332. }
  333. }
  334. /**
  335. * 积分记录
  336. * @param Request $request
  337. * @return mixed
  338. * @throws \think\db\exception\DataNotFoundException
  339. * @throws \think\db\exception\ModelNotFoundException
  340. * @throws \think\exception\DbException
  341. */
  342. public function integral_list(Request $request)
  343. {
  344. list($page, $limit, $status) = UtilService::getMore([
  345. ['page', 0], ['limit', 0], ['pm', 0]
  346. ], $request, true);
  347. return app('json')->successful(UserBill::userBillList($request->uid(), $page, $limit, 'integral', ['pm' => $status]));
  348. }
  349. /**
  350. * 积分记录
  351. * @param Request $request
  352. * @return mixed
  353. * @throws \think\db\exception\DataNotFoundException
  354. * @throws \think\db\exception\ModelNotFoundException
  355. * @throws \think\exception\DbException
  356. */
  357. public function now_money_list(Request $request)
  358. {
  359. list($page, $limit, $status) = UtilService::getMore([
  360. ['page', 0], ['limit', 0], ['pm', 0]
  361. ], $request, true);
  362. return app('json')->successful(UserBill::userBillList($request->uid(), $page, $limit, 'now_money', ['pm' => $status]));
  363. }
  364. /**
  365. * 积分记录
  366. * @param Request $request
  367. * @return mixed
  368. * @throws \think\db\exception\DataNotFoundException
  369. * @throws \think\db\exception\ModelNotFoundException
  370. * @throws \think\exception\DbException
  371. */
  372. public function brokerage_list(Request $request)
  373. {
  374. list($page, $limit, $status) = UtilService::getMore([
  375. ['page', 0], ['limit', 0], ['pm', 0]
  376. ], $request, true);
  377. return app('json')->successful(UserBill::userBillList($request->uid(), $page, $limit, 'brokerage', ['pm' => $status]));
  378. }
  379. }