common.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  1. <?php
  2. /**
  3. * @param string $address 地址
  4. * @return array
  5. */
  6. use EasyWeChat\Factory;
  7. use think\Db;
  8. use Dm\Request\V20151123 as Dm;
  9. use think\facade\Request;
  10. /**
  11. * 秒转换为天
  12. */
  13. function get_stay_time($remain_time, $is_hour = 1, $is_minutes = 1)
  14. {
  15. $day = floor($remain_time / (3600 * 24));
  16. $day = $day > 0 ? $day . '天' : '';
  17. $hour = floor(($remain_time % (3600 * 24)) / 3600);
  18. $hour = $hour > 0 ? $hour . '小时' : '';
  19. if ($is_hour && $is_minutes) {
  20. $minutes = floor((($remain_time % (3600 * 24)) % 3600) / 60);
  21. $minutes = $minutes > 0 ? $minutes . '分钟' : '';
  22. return $day . $hour . $minutes;
  23. }
  24. if ($hour) {
  25. return $day . $hour;
  26. }
  27. return $day;
  28. }
  29. function getTime($second)
  30. {
  31. $day = floor($second / (3600 * 24));
  32. $second = $second % (3600 * 24);//除去整天之后剩余的时间
  33. $hour = floor($second / 3600);
  34. $second = $second % 3600;//除去整小时之后剩余的时间
  35. $minute = floor($second / 60);
  36. $second = $second % 60;//除去整分钟之后剩余的时间
  37. //返回字符串
  38. return $hour . '小时' . $minute . '分' . $second . '秒';
  39. }
  40. function getDay($second)
  41. {
  42. $day = floor($second / (3600 * 24));
  43. $second = $second % (3600 * 24);//除去整天之后剩余的时间
  44. $hour = floor($second / 3600);
  45. $second = $second % 3600;//除去整小时之后剩余的时间
  46. $minute = floor($second / 60);
  47. $second = $second % 60;//除去整分钟之后剩余的时间
  48. //返回字符串
  49. return $day;
  50. }
  51. /**
  52. * get请求
  53. * @param $url
  54. * @param string $msg
  55. * @return mixed
  56. */
  57. function requestGet($url, $msg = '')
  58. {
  59. // 1. 初始化一个cURL会话
  60. $ch = curl_init();
  61. //设置选项,包括URL
  62. curl_setopt($ch, CURLOPT_URL, $url);
  63. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  64. curl_setopt($ch, CURLOPT_HEADER, 0);
  65. //执行并获取HTML文档内容
  66. $response = curl_exec($ch);
  67. // 4. 释放cURL句柄,关闭一个cURL会话
  68. curl_close($ch);
  69. return $response;
  70. }
  71. //获取全图片地址 $image_data
  72. function image_path($image_data)
  73. {
  74. if (empty($image_data)) {
  75. return $image_data;
  76. }
  77. if (strpos($image_data, '|') !== false) {
  78. $image_res = explode('|', $image_data);
  79. } elseif (strpos($image_data, ',') !== false) {
  80. $image_res = explode(',', $image_data);
  81. } else {
  82. $image_res = array($image_data);
  83. }
  84. return $image_res;
  85. }
  86. function get_order_sn()
  87. {
  88. $order_id_main = date('YmdHis') . rand(10000000, 99999999);
  89. $order_id_len = strlen($order_id_main);
  90. $order_id_sum = 0;
  91. for ($i = 0; $i < $order_id_len; $i++) {
  92. $order_id_sum += (int)(substr($order_id_main, $i, 1));
  93. }
  94. $osn = $order_id_main . str_pad((100 - $order_id_sum % 100) % 100, 2, '0', STR_PAD_LEFT);
  95. return $osn;
  96. }
  97. //通过服务类型,手机型号获取价格
  98. function get_goods_price($goods_id, $serve_type_id, $phone_type_id = 0)
  99. {
  100. $goods_info = Db::name('store_goods')->field('id,cate_id')->where('status', 1)->where('id', $goods_id)->where('is_deleted', 0)->find();
  101. if (empty($goods_info)) {
  102. $this->error('服务信息有误');
  103. }
  104. $data = array('code' => 1, 'msg' => '获取成功');
  105. if ($goods_info['cate_id'] == 0) { //金刚区服务
  106. if (empty($phone_type_id)) {
  107. $data['code'] = 0;
  108. $data['msg'] = '参数错误';
  109. }
  110. $serve_type_name = Db::name('store_goods_type')->where('id', $serve_type_id)->value('spec_name');
  111. $phone_type_name = Db::name('store_goods_type')->where('id', $phone_type_id)->value('spec_name');
  112. $goods_price = Db::name('store_goods_list')->where('goods_id', $goods_id)->where('goods_spec', 'like', '%' . $serve_type_name . '%')->where('goods_spec', 'like', '%' . $phone_type_name . '%')->value('price_selling');
  113. } else {
  114. $serve_type_name = Db::name('store_goods_type')->where('id', $serve_type_id)->value('spec_name');
  115. $goods_price = Db::name('store_goods_list')->where('goods_id', $goods_id)->where('goods_spec', 'like', '%' . $serve_type_name . '%')->value('price_selling');
  116. }
  117. if ($goods_price <= 0) {
  118. $data['code'] = 0;
  119. $data['msg'] = '价格信息有误';
  120. }
  121. $data['price'] = $goods_price;
  122. return $data;
  123. }
  124. //邮箱推送
  125. function mail_push($mail_str, $order_id)
  126. {
  127. //查询订单信息
  128. $order_info = Db::name('store_order')->field('goods_id,serve_type,client_tel,client_qq,price_amount,describe,create_at')->where('id', $order_id)->find();
  129. $order_info['goods_title'] = Db::name('store_goods')->where('id', $order_info['goods_id'])->value('title');
  130. $body = "服务类目:" . $order_info['goods_title'] . "<br/>服务类型:" . $order_info['serve_type'] . "<br/>用户手机:" . $order_info['client_tel'] . "<br/>用户QQ:" . $order_info['client_qq'] . "<br/>订单金额:" . $order_info['price_amount'] . "<br/>附加信息:" . $order_info['describe'] . "<br/>下单时间:" . $order_info['create_at'];
  131. require_once env('root_path') . '/vendor/aliyunmail/aliyun-php-sdk-core/Config.php';
  132. //需要设置对应的region名称,如华东1(杭州)设为cn-hangzhou,新加坡Region设为ap-southeast-1,澳洲Region设为ap-southeast-2。
  133. $iClientProfile = DefaultProfile::getProfile("cn-hangzhou", "LTAI5tSMNtYuD3TdEkM65fyp", "lcmARfziFDS4PUJ0K7AKTf3Ytl3Z8O");
  134. $client = new DefaultAcsClient($iClientProfile);
  135. $request = new Dm\SingleSendMailRequest();
  136. $request->setAccountName("feisu@tsguangsu.com");
  137. $request->setFromAlias("飞速");
  138. $request->setAddressType(1);
  139. $request->setTagName("feisu");
  140. $request->setReplyToAddress("true");
  141. $request->setToAddress($mail_str);
  142. $request->setSubject("新订单通知,请及时处理");
  143. $request->setHtmlBody($body);
  144. try {
  145. $client->getAcsResponse($request);
  146. } catch (ClientException $e) {
  147. print_r($e->getErrorCode());
  148. print_r($e->getErrorMessage());
  149. } catch (ServerException $e) {
  150. print_r($e->getErrorCode());
  151. print_r($e->getErrorMessage());
  152. }
  153. }
  154. ///**
  155. // * 获取Token
  156. // */
  157. //function UserToken()
  158. //{
  159. // $token = Request::instance()->header('authorization');
  160. //
  161. // $verify = TokenUtils::verify($token);
  162. // return \app\model\User::where('id', $verify['data']['uid'])->find();
  163. //}
  164. /**
  165. * 判断等级
  166. * * @param int $experience
  167. */
  168. function Grade(int $experience)
  169. {
  170. if ($experience <= 500) return 'lv1';
  171. if ($experience > 500 && $experience <= 550) return 'lv2';
  172. if ($experience > 550 && $experience <= 1300) return 'lv3';
  173. if ($experience > 1300 && $experience <= 4500) return 'lv4';
  174. if ($experience > 4500) return 'lv5';
  175. }
  176. /**
  177. * 实名认证
  178. * * @param string $name
  179. * * @param string $id_num
  180. */
  181. function authentication(string $name, string $id_num)
  182. {
  183. // $name = input('name');
  184. // $id_num = input('id_num');
  185. if (empty($name) || empty($id_num)) {
  186. $this->error('参数错误');
  187. }
  188. $host = "https://99numa.market.alicloudapi.com";
  189. $path = "/dsp-aliyun/api/validate/idcard";
  190. $method = "POST";
  191. $appcode = "f131dd012f244a7f8d5cecd04e7a36d5";
  192. $headers = array();
  193. array_push($headers, "Authorization:APPCODE " . $appcode);
  194. //需要自行安装UUID,需要给X-Ca-Nonce的值生成随机字符串,每次请求不能相同
  195. $chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
  196. $uuidStr = '';
  197. for ($i = 0; $i < 10; $i++) {
  198. $uuidStr .= $chars[mt_rand(0, strlen($chars) - 1)];
  199. }
  200. $name = urlencode($name);
  201. array_push($headers, "X-Ca-Nonce:" . $uuidStr);
  202. $querys = "chName=" . $name . "&idNum=" . $id_num;
  203. $url = $host . $path . "?" . $querys;
  204. $curl = curl_init();
  205. curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
  206. curl_setopt($curl, CURLOPT_URL, $url);
  207. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  208. curl_setopt($curl, CURLOPT_FAILONERROR, false);
  209. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  210. curl_setopt($curl, CURLOPT_HEADER, false);
  211. if (1 == strpos("$" . $host, "https://")) {
  212. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  213. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
  214. }
  215. $res = curl_exec($curl);
  216. $res = json_decode($res, true);
  217. if ($res['respCode'] == '00000000') {
  218. return true;
  219. } else {
  220. return false;
  221. }
  222. }
  223. /**
  224. * 获取小程序码
  225. * */
  226. function qr_code(int $uid)
  227. {
  228. $scene = $uid;
  229. $app = Factory::miniProgram(Config('mini_program'));
  230. $response = $app->app_code->getUnlimit($scene, [
  231. 'page' => 'pages/index/index',
  232. 'width' => 600,
  233. 'check_path' => false,
  234. 'env_version' => 'trial'
  235. ]);
  236. $root_path = env('root_path') . 'public';
  237. $path = '/qr_code/' . date('YmdH');
  238. $code_path = $root_path . $path;
  239. $code_name = md5(time() . rand('10000', '99999')) . '.png';
  240. if ($response instanceof \EasyWeChat\Kernel\Http\StreamResponse) {
  241. $filename = $response->saveAs($code_path, $code_name);
  242. if ($filename) {
  243. return 'https://' . $_SERVER['SERVER_NAME'] . $path . '/' . $code_name;
  244. } else {
  245. return false;
  246. }
  247. } else {
  248. return false;
  249. }
  250. }
  251. /**
  252. * 根据金额返回经验和积分和佣金
  253. * * @param int $transactionPrice
  254. * * @param int $id
  255. */
  256. function ComputationalExperience(int $transactionPrice, int $id)
  257. {
  258. $user = Db::name('release_user')->find($id);
  259. if ($user['grade'] == 'lv0') {
  260. $info = [
  261. 'experience' => 0,
  262. 'integral' => 0,
  263. 'grade' => 'lv0'
  264. ];
  265. return $info;
  266. }
  267. if ($user['grade'] == 'lv1') {
  268. $info = [
  269. 'experience' => $transactionPrice / 10,
  270. 'integral' => $transactionPrice,
  271. 'grade' => Grade($user['experience'] + $transactionPrice / 10)
  272. ];
  273. return $info;
  274. } else {
  275. $release_member = Db::name('release_member')->where('grade', $user['grade'])->find();
  276. $info['experience'] = $release_member['basic_experience'] * $release_member['empirical_ratio'];
  277. $info['integral'] = $release_member['basic_integral'] * $release_member['integral_magnification'];
  278. $info['grade'] = Grade($user['experience'] + $info['experience']);
  279. }
  280. return $info;
  281. }
  282. /**
  283. * 根据金额返回佣金
  284. * * @param int $favorablePrice
  285. * * @param int $id
  286. * * @param int $orderId
  287. */
  288. function commission(int $id, int $favorablePrice, int $orderId)
  289. {
  290. // dump(NewUserCommission($orderId, $favorablePrice)[0]);
  291. // return RecommenderCommission($id, $orderId, $favorablePrice);
  292. return [
  293. 'userMoney' => NewUserCommission($orderId, $favorablePrice),
  294. 'superiorMoney' => RecommenderCommission($id, $orderId, $favorablePrice),
  295. ];
  296. }
  297. /**
  298. * 新用户下单获取佣金
  299. * * @param int $favorablePrice
  300. * * @param int $orderId
  301. */
  302. function NewUserCommission(int $orderId, int $favorablePrice)
  303. {
  304. $proportion = Db::name('release_proportion')->find(1);
  305. $orderInfo = Db::name('release_order')->find($orderId);
  306. $user_info = Db::name('release_user')->find($orderInfo['user_id']);
  307. // $result = \app\model\Order::where([
  308. // 'payment_status' => 4,
  309. // 'user_id' => $orderInfo['user_id']
  310. // ])->min('id');
  311. $time = time() - strtotime($user_info['create_time']);
  312. $result = $time / 86400 < 60;
  313. if ($result) {
  314. return [$favorablePrice * $proportion['user_proportion']];
  315. } else {
  316. return [0];
  317. }
  318. }
  319. /**
  320. * 工作人员
  321. * * @param int $id
  322. * * @param string $amount
  323. */
  324. function follow(int $id, string $amount)
  325. {
  326. $user_info = Db::name('release_user')->find($id);
  327. $number = Db::name('release_follow')->where('user_id', $user_info['superior_id'])->count('id');
  328. $money = floor($amount * 0.05);
  329. if ($number < 2) {
  330. if ($number == 1) {
  331. $follow_money = Db::name('release_follow')->where('user_id', $user_info['superior_id'])->value('amount');
  332. $follow_a = 100 - $follow_money;
  333. if ($money < $follow_a) {
  334. $superior_info = Db::name('release_user')->find($user_info['superior_id']);
  335. Db::name('release_user')->where('id', $superior_info['id'])->update([
  336. 'balance' => $superior_info['balance'] + 100
  337. ]);
  338. Db::name('release_detailed')->insert([
  339. 'user_id' => $user_info['superior_id'],
  340. 'detailed' => '订单佣金',
  341. 'transaction_number' => date('YmdHis', time()) . rand(111111, 999999),
  342. 'transaction_amount' => '+' . 100,
  343. 'withdrawa_status' => 2,
  344. 'remaining_balance' => $superior_info['balance'] + 100,
  345. 'create_time' => date('Y-m-d H:i:s', time())
  346. ]);
  347. Db::name('release_follow')->insert([
  348. 'user_id' => $superior_info['id'],
  349. 'amount' => $money,
  350. 'create_time' => date('Y-m-d H:i:s', time())
  351. ]);
  352. } elseif ($money > $follow_a) {
  353. $superior_info = Db::name('release_user')->find($user_info['superior_id']);
  354. Db::name('release_user')->where('id', $superior_info['id'])->update([
  355. 'balance' => $superior_info['balance'] + $money + $follow_money
  356. ]);
  357. $a = $money + $follow_money;
  358. Db::name('release_detailed')->insert([
  359. 'user_id' => $superior_info['id'],
  360. 'detailed' => '订单佣金',
  361. 'transaction_number' => date('YmdHis', time()) . rand(111111, 999999),
  362. 'transaction_amount' => '+' . $a,
  363. 'withdrawa_status' => 2,
  364. 'remaining_balance' => $superior_info['balance'] + 100,
  365. 'create_time' => date('Y-m-d H:i:s', time())
  366. ]);
  367. Db::name('release_follow')->insert([
  368. 'user_id' => $superior_info['id'],
  369. 'amount' => $money,
  370. 'create_time' => date('Y-m-d H:i:s', time())
  371. ]);
  372. }
  373. } elseif ($number == 0) {
  374. $superior_info = Db::name('release_user')->find($user_info['superior_id']);
  375. Db::name('release_follow')->insert([
  376. 'user_id' => $superior_info['id'],
  377. 'amount' => $money,
  378. 'create_time' => date('Y-m-d H:i:s', time())
  379. ]);
  380. // Db::name('release_detailed')->insert([
  381. // 'user_id' => $id,
  382. // 'detailed' => '订单佣金',
  383. // 'transaction_number' => date('YmdHis', time()) . rand(111111, 999999),
  384. // 'transaction_amount' => '+' . $money,
  385. // 'withdrawa_status' => 2,
  386. // 'remaining_balance' => $user_info['balance'] + 100,
  387. // 'create_time' => date('Y-m-d H:i:s', time())
  388. // ]);
  389. }
  390. }
  391. }
  392. /**
  393. * 推荐人佣金
  394. * * @param int $id
  395. * * @param int $orderId
  396. * * @param int $favorablePrice
  397. */
  398. function RecommenderCommission(int $id, int $orderId, int $favorablePrice)
  399. {
  400. $proportion = Db::name('release_proportion')->find(1);
  401. $userInfo = Db::name('release_user')->find($id);
  402. $orderInfo = Db::name('release_order')->find($orderId);
  403. $time = time() - strtotime($userInfo['create_time']);
  404. if ($time / 86400 < 120) {
  405. // return $favorablePrice * $proportion['superior_proportion'];
  406. // dump($favorablePrice * $proportion['superior_proportion']);
  407. // dump(judge($orderId, $favorablePrice));
  408. // return $favorablePrice * $proportion['superior_proportion'];
  409. return [$favorablePrice * $proportion['superior_proportion']];
  410. } else {
  411. return [0];
  412. }
  413. }
  414. /**
  415. * 判断时间
  416. * * @param string $time
  417. */
  418. function judgmentTime(string $time)
  419. {
  420. $time = strtotime($time) + 3600 * 8;
  421. $overtime = time();
  422. if ($overtime < $time) {
  423. return true;
  424. } else {
  425. return false;
  426. }
  427. }
  428. /**
  429. * 判断两个任务单
  430. * * @param int $orderId
  431. * * @param int $favorablePrice
  432. */
  433. function judge(int $orderId, int $favorablePrice)
  434. {
  435. $proportion = Db::name('release_proportion')->find(1);
  436. $order = Db::name('release_order')->find($orderId);
  437. $user = Db::name('release_user')->find($order['user_id']);
  438. $subordinate = Db::name('release_user')->find($user['superior_id']);
  439. $orderNumber = Db::name('release_order')->where('user_id', $order['user_id'])->find($orderId);
  440. if ($orderNumber >= 2) {
  441. return [0];
  442. } else {
  443. $number = Db::name('release_detailed')->where([
  444. 'user_id' => $subordinate['id'],
  445. 'subordinate_id' => $user['id']
  446. ])->count();
  447. if ($number == 1) {
  448. $info = Db::name('release_detailed')->where([
  449. 'user_id' => $subordinate['id'],
  450. 'subordinate_id' => $user['id']
  451. ])->find();
  452. if ($favorablePrice * $proportion['two_task_orders'] > 100 - $info['transaction_amount']) {
  453. return [$favorablePrice * $proportion['two_task_orders']];
  454. } else {
  455. return [100 - $info['transaction_amount']];
  456. }
  457. } else {
  458. return [$favorablePrice * $proportion['two_task_orders']];
  459. }
  460. }
  461. }
  462. /**
  463. * 返回获取的积分和经验值
  464. * * @param int $Id
  465. */
  466. function getInfo(int $Id)
  467. {
  468. $superior_user = Db::name('release_user')->where('id', $Id)->find();
  469. $release_member = Db::name('release_member')->where('grade', $superior_user['grade'])->find();
  470. if ($superior_user['grade'] != 'lv0') {
  471. if ($superior_user['grade'] == 'lv1') {
  472. $Grade = Grade($superior_user['experience'] + $release_member['basic_experience']);
  473. Db::name('release_user')->where('id', $Id)->update([
  474. 'integral' => $superior_user['integral'] + $release_member['basic_integral'],
  475. 'experience' => $superior_user['experience'] + $release_member['basic_experience'],
  476. 'grade' => $Grade
  477. ]);
  478. Db::name('release_exchange_details')->insert([
  479. 'user_id' => $Id,
  480. 'detailed' => '推广增加',
  481. 'integral' => '+' . $release_member['basic_integral'],
  482. 'create_time' => date('Y-m-d H:i:s', time())
  483. ]);
  484. } else {
  485. $release_member = Db::name('release_member')->where('grade', $superior_user['grade'])->find();
  486. // $empirical_ratio = Db::name('release_member')->where('grade', $superior_user['grade'])->value('empirical_ratio');
  487. // $integral = Db::name('release_system')->where('id', 3)->value('data');
  488. // $empirical = Db::name('release_system')->where('id', 4)->value('data');
  489. $Grade = Grade($superior_user['experience'] + $release_member['basic_experience'] * $release_member['empirical_ratio']);
  490. Db::name('release_user')->where('id', $Id)->update([
  491. 'integral' => $superior_user['integral'] + $release_member['basic_integral'] * $release_member['integral_magnification'],
  492. 'experience' => $superior_user['experience'] + $release_member['basic_experience'] * $release_member['empirical_ratio'],
  493. 'grade' => $Grade
  494. ]);
  495. Db::name('release_exchange_details')->insert([
  496. 'user_id' => $Id,
  497. 'detailed' => '推广增加',
  498. 'integral' => '+' . $release_member['basic_integral'] * $release_member['integral_magnification'],
  499. 'create_time' => date('Y-m-d H:i:s', time())
  500. ]);
  501. }
  502. }
  503. }