Common.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542
  1. <?php
  2. namespace app\common\library;
  3. use app\common\model\Config;
  4. use app\common\model\OrderStatus;
  5. use app\common\model\User;
  6. use think\Cache;
  7. use think\Hook;
  8. use think\Request;
  9. use app\common\library\QRcode;
  10. /**
  11. * 公共类
  12. */
  13. class Common
  14. {
  15. /**
  16. * curl 请求
  17. * @param $url string 请求地址
  18. * @param $headers json 请求头
  19. * @param $body json 请求体
  20. * @return mixed
  21. */
  22. public static function curlRequest($url, $headers = [], $body = [], $method = "GET")
  23. {
  24. $ch = curl_init();
  25. curl_setopt($ch, CURLOPT_URL, $url);
  26. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);//设置请求头
  27. curl_setopt($ch, CURLOPT_POSTFIELDS, $body);//设置请求体
  28. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); //定义请求类型
  29. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  30. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  31. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  32. curl_setopt($ch, CURLOPT_HTTP_VERSION, 'CURL_HTTP_VERSION_1_1');
  33. $output = curl_exec($ch);
  34. curl_close($ch);
  35. $arr = json_decode($output, true);
  36. return $arr;
  37. }
  38. public static function http_curl($url, $type = 'get', $res = 'json', $arr = '')
  39. {
  40. //1.初始化curl
  41. $ch = curl_init();
  42. //2.设置curl的参数
  43. curl_setopt($ch, CURLOPT_URL, $url);
  44. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //不验证证书
  45. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //不验证证书
  46. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  47. if ($type == 'post') {
  48. curl_setopt($ch, CURLOPT_POST, 1);
  49. curl_setopt($ch, CURLOPT_POSTFIELDS, $arr);
  50. }
  51. //3.采集
  52. $output = curl_exec($ch);
  53. //4.关闭
  54. curl_close($ch);
  55. if ($res == 'json') {
  56. return json_decode($output, true);
  57. }
  58. }
  59. /**
  60. * 成功
  61. * @param $msg
  62. * @return array
  63. */
  64. public static function return_success($msg,$data = null){
  65. $result = [
  66. 'code' => 1,
  67. 'msg' => $msg,
  68. 'data' =>$data
  69. ];
  70. return $result;
  71. die;
  72. }
  73. /**
  74. * 失败
  75. * @param $msg
  76. * @return array
  77. */
  78. public static function return_error($msg,$data = null){
  79. $result = [
  80. 'code' => 0,
  81. 'msg' => $msg,
  82. 'data' => $data
  83. ];
  84. return $result;
  85. die;
  86. }
  87. public static function get_ffid($invite_code){
  88. $f = \app\common\model\User::where('id',$invite_code)->field('fid')->find();
  89. if ($f)
  90. return $f->fid;
  91. else
  92. return 0;
  93. }
  94. /**
  95. * 生成二维码
  96. */
  97. public static function generate_qrcode($value){
  98. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/verify';
  99. if(!file_exists($dir)){
  100. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  101. mkdir($dir, 0700,true);
  102. }
  103. $filename = $dir.'/'.$value.'.png';
  104. QRcode::png($value,$filename);
  105. return 'http://'.$_SERVER['SERVER_NAME']."/verify/".$value.'.png';
  106. }
  107. /**
  108. * 订单操作记录
  109. * @param int $change_message 操作备注
  110. * @param int $oid 订单id
  111. */
  112. public static function order_status($oid, $change_message)
  113. {
  114. OrderStatus::create(['oid' => $oid,'change_message' => $change_message, 'change_time' => time()]);
  115. }
  116. /**
  117. * 判断金额在哪个区间
  118. */
  119. public static function checkMoneyGrade($money){
  120. if ($money<50000){
  121. return false;
  122. }elseif ($money>=50000 && $money<150000){
  123. return 50000;
  124. }elseif ($money>=150000 && $money<450000){
  125. return 150000;
  126. }elseif ($money>=450000 && $money<1350000){
  127. return 450000;
  128. }elseif ($money>=1350000 && $money<4000000){
  129. return 1350000;
  130. }elseif ($money>=4000000 && $money<12000000){
  131. return 4000000;
  132. }elseif ($money>=12000000 && $money<36000000){
  133. return 12000000;
  134. }elseif ($money>=36000000 && $money<100000000){
  135. return 36000000;
  136. }elseif ($money>=100000000 && $money<300000000){
  137. return 100000000;
  138. }elseif ($money>=300000000 && $money<600000000){
  139. return 300000000;
  140. }elseif ($money>=600000000){
  141. return 600000000;
  142. }
  143. }
  144. /**
  145. * 生成订单唯一id
  146. * $user_id 用户id
  147. * @return string
  148. */
  149. public static function getNewOrderId($user_id)
  150. {
  151. $str = date('Ymd').$user_id.substr(implode(NULL, array_map('ord', str_split(substr(uniqid(), 7, 13), 1))), 0, 8);
  152. return $str;
  153. }
  154. /**
  155. * 身份证验证
  156. * @param $card
  157. * @return bool
  158. */
  159. public static function setCard($card){
  160. $city = [11=>"北京",12=>"天津",13=>"河北",14=>"山西",15=>"内蒙古",21=>"辽宁",22=>"吉林",23=>"黑龙江 ",31=>"上海",32=>"江苏",33=>"浙江",34=>"安徽",35=>"福建",36=>"江西",37=>"山东",41=>"河南",42=>"湖北 ",43=>"湖南",44=>"广东",45=>"广西",46=>"海南",50=>"重庆",51=>"四川",52=>"贵州",53=>"云南",54=>"西藏 ",61=>"陕西",62=>"甘肃",63=>"青海",64=>"宁夏",65=>"新疆",71=>"台湾",81=>"香港",82=>"澳门",91=>"国外 "];
  161. $tip = "";
  162. $match = "/^\d{6}(18|19|20)?\d{2}(0[1-9]|1[012])(0[1-9]|[12]\d|3[01])\d{3}(\d|X)$/";
  163. $pass= true;
  164. if(!$card || !preg_match($match,$card)){
  165. //身份证格式错误
  166. $pass = false;
  167. }else if(!$city[substr($card,0,2)]){
  168. //地址错误
  169. $pass = false;
  170. }else{
  171. //18位身份证需要验证最后一位校验位
  172. if(strlen($card) == 18){
  173. $card = str_split($card);
  174. //∑(ai×Wi)(mod 11)
  175. //加权因子
  176. $factor = [ 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2 ];
  177. //校验位
  178. $parity = [ 1, 0, 'X', 9, 8, 7, 6, 5, 4, 3, 2 ];
  179. $sum = 0;
  180. $ai = 0;
  181. $wi = 0;
  182. for ($i = 0; $i < 17; $i++)
  183. {
  184. $ai = $card[$i];
  185. $wi = $factor[$i];
  186. $sum += $ai * $wi;
  187. }
  188. $last = $parity[$sum % 11];
  189. if($parity[$sum % 11] != $card[17]){
  190. $pass =false;
  191. }
  192. }else{
  193. $pass =false;
  194. }
  195. }
  196. if(!$pass) return false;/* 身份证格式错误*/
  197. return true;/* 身份证格式正确*/
  198. }
  199. /**
  200. * 获取当前的经纬度
  201. */
  202. public static function get_ipjwd(){
  203. $ip = request()->ip();
  204. //获取百度地图apikey
  205. $api_key = Config::get_values('baidu_api_server');
  206. if ($ip=='127.0.0.1') {//如果获取到的ip为127.0.0.1 会报错 在这随便给一个ip
  207. $ip='58.30.228.35';
  208. }
  209. $content = file_get_contents("http://api.map.baidu.com/location/ip?ak=$api_key&ip={$ip}&coor=bd09ll");
  210. $json = json_decode($content);
  211. $data=array();
  212. $data['log']=$json->{'content'}->{'point'}->{'x'};//按层级关系提取经度数据
  213. $data['lat']=$json->{'content'}->{'point'}->{'y'};//按层级关系提取纬度数据
  214. $data['address']=$json->{'content'}->{'address'};//按层级关系提取address数据
  215. return $data;
  216. }
  217. /**
  218. * 计算距离
  219. * 1.纬度1,经度1,纬度2,经度2
  220. * 2.返回结果是单位是KM。
  221. * 3.保留一位小数
  222. */
  223. public static function getDistance($lat2,$lng2)
  224. {
  225. $user = app()->session->get('us');
  226. $userinfo = User::get($user['id']);
  227. if ($userinfo && $userinfo['now_lat'] && $userinfo['now_log']){
  228. $lng1 = $userinfo['now_log'];
  229. $lat1 = $userinfo['now_lat'];
  230. }else{
  231. if (!$lat2 || !$lng2)
  232. return '1';
  233. $ip = request()->ip();
  234. //获取百度地图apikey
  235. $api_key = Config::get_values('baidu_api_server');
  236. if ($ip=='127.0.0.1') {//如果获取到的ip为127.0.0.1 会报错 在这随便给一个ip
  237. $ip='58.30.228.35';
  238. }
  239. $content = file_get_contents("http://api.map.baidu.com/location/ip?ak=$api_key&ip={$ip}&coor=bd09ll");
  240. $json = json_decode($content);
  241. $lng1=$json->{'content'}->{'point'}->{'x'};//按层级关系提取经度数据
  242. $lat1=$json->{'content'}->{'point'}->{'y'};//按层级关系提取纬度数据
  243. }
  244. //将角度转为狐度
  245. $radLat1 = deg2rad($lat1);//deg2rad()函数将角度转换为弧度
  246. $radLat2 = deg2rad($lat2);
  247. $radLng1 = deg2rad($lng1);
  248. $radLng2 = deg2rad($lng2);
  249. $a = $radLat1 - $radLat2;
  250. $b = $radLng1 - $radLng2;
  251. $s = 2*asin(sqrt(pow(sin($a/2),2)+cos($radLat1)*cos($radLat2)*pow(sin($b/2),2)))*6371;
  252. return round($s,1);
  253. }
  254. /**
  255. * Notes: 根据传送过来的时间戳判断时间是多久前
  256. * @param $the_time 时间戳 (亦可为日期格式,转换好就行)
  257. */
  258. public static function timeTran($time)
  259. {
  260. $nowTime = time();
  261. $showTime = strtotime($time);
  262. $difference = $nowTime - $showTime;
  263. if ($difference < 0) {
  264. return $time;
  265. }
  266. if ($difference < 60) {
  267. return $difference . '秒前';
  268. }
  269. if ($difference < 3600) {
  270. return floor($difference / 60).'分钟前';
  271. }
  272. if ($difference < 86400) {
  273. return floor($difference / 3600).'小时前';
  274. }
  275. if ($difference < 2592000) {
  276. return floor($difference / 86400) . '天前'; //30天内
  277. }
  278. if ($difference < 31104000) {
  279. return floor($difference / 2592000) . '个月前'; //12个月内
  280. }
  281. return floor($difference / 31536000) . '年前';
  282. }
  283. /**
  284. * Notes: 根据传送过来的时间戳判断时间剩几天
  285. * @param $the_time 时间戳 (亦可为日期格式,转换好就行)
  286. */
  287. public static function timeTranRun($time)
  288. {
  289. $now = date('Y-m-d H:i:s');
  290. $date=floor((strtotime($time)-strtotime($now))/86400);
  291. if ($date==0){
  292. $hour=floor((strtotime($time)-strtotime($now))%86400/3600);
  293. if ($hour==0){
  294. $minute=floor((strtotime($time)-strtotime($now))%86400/60);
  295. if ($minute==0){
  296. $second=floor((strtotime($time)-strtotime($now))%86400%60);
  297. return $second.'秒后';
  298. }else{
  299. return $minute.'分钟后';
  300. }
  301. }else{
  302. return $hour.'小时后';
  303. }
  304. }else{
  305. return $date.'天后';
  306. }
  307. }
  308. /**
  309. * Notes: 根据传送过来的时间戳
  310. * @param $the_time 时间戳 (亦可为日期格式,转换好就行)
  311. */
  312. public static function timeTranRun2($time)
  313. {
  314. //计算两个日期之间的时间差
  315. $diff = abs(strtotime($time) - time());
  316. //转换时间差的格式
  317. $years = floor($diff/(365*60*60*24));
  318. $months = floor(($diff - $years * 365*60*60*24) / (30*60*60*24));
  319. $days = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24)/ (60*60*24));
  320. $hours = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24 - $days*60*60*24) / (60*60));
  321. $minutes = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24 - $days*60*60*24 - $hours*60*60)/ 60);
  322. $seconds = floor(($diff - $years * 365*60*60*24 - $months*30*60*60*24 - $days*60*60*24 - $hours*60*60 - $minutes*60));
  323. $array['date'] = $days;
  324. $array['hour'] = $hours;
  325. $array['minute'] = $minutes;
  326. $array['seconds'] = $seconds;
  327. return $array;
  328. }
  329. /**
  330. * 公众号推送消息
  331. */
  332. public static function sendTemplateMsg($openid,$template_id,$path,$data){
  333. $appid = Config::get_values('wechat_appid');
  334. $appsecret = Config::get_values('wechat_appsecret');
  335. $url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=' . $appid . '&secret=' . $appsecret;
  336. $res = json_decode(file_get_contents($url),true);
  337. $access_token = $res['access_token'];
  338. //请求url
  339. $url='https://api.weixin.qq.com/cgi-bin/message/wxopen/template/uniform_send?access_token='.$access_token;
  340. $arr=[
  341. 'touser'=>$openid,
  342. 'mp_template_msg'=>[
  343. "appid"=>"wxad3ed96c8ce52359",
  344. "template_id"=>$template_id,
  345. "url"=>$path,
  346. 'miniprogram'=>[
  347. "appid"=>Config::get_values('wechat_appid')
  348. ],
  349. 'data'=>$data
  350. ],
  351. ];
  352. //将数组->json
  353. $postJson = json_encode($arr,JSON_UNESCAPED_UNICODE) ;
  354. $res = self::curlPost($url,$postJson);
  355. $result = json_decode($res, true);
  356. return $result;
  357. }
  358. /**
  359. * 订阅消息发送
  360. */
  361. public function sendMessage($data){
  362. $appid = Config::get_values('wechat_appid');
  363. $appsecret = Config::get_values('wechat_appsecret');
  364. $url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=' . $appid . '&secret=' . $appsecret;
  365. $res = json_decode(file_get_contents($url),true);
  366. $access_token = $res['access_token'] ;
  367. //请求url
  368. $url = 'https://api.weixin.qq.com/cgi-bin/message/subscribe/send?access_token=' . $access_token ;
  369. self::curlPost($url,json_encode($data));
  370. }
  371. //发送post请求
  372. static function curlPost($url,$data)
  373. {
  374. $ch = curl_init();
  375. $params[CURLOPT_URL] = $url; //请求url地址
  376. $params[CURLOPT_HEADER] = FALSE; //是否返回响应头信息
  377. $params[CURLOPT_SSL_VERIFYPEER] = false;
  378. $params[CURLOPT_SSL_VERIFYHOST] = false;
  379. $params[CURLOPT_RETURNTRANSFER] = true; //是否将结果返回
  380. $params[CURLOPT_POST] = true;
  381. $params[CURLOPT_POSTFIELDS] = $data;
  382. curl_setopt_array($ch, $params); //传入curl参数
  383. $content = curl_exec($ch); //执行
  384. curl_close($ch); //关闭连接
  385. return $content;
  386. }
  387. /**
  388. * 获取token
  389. */
  390. static function getToken(){
  391. $token = cache('hx_token');
  392. if (!$token){
  393. $data = array(
  394. "grant_type" => "client_credentials",
  395. "client_id" => 'YXA6Uqa7s6m-Q2C50FPfWBUCcg',
  396. "client_secret" => 'YXA6xidhOogqAOxu0HLQjNIBoXTSUwE'
  397. );
  398. $url = "https://a1.easemob.com/1101210401193729/demo/token";
  399. $rs = json_decode(self::curl($url, $data), true);
  400. cache('hx_token',$rs['access_token'],$rs['expires_in']-1500);
  401. $token = $rs['access_token'];
  402. }
  403. return $token;
  404. }
  405. /**
  406. * 环信注册
  407. */
  408. static function huanxin_zhuce($username,$nickname){
  409. $param = array (
  410. "username" => $username,
  411. "password" => '12345678',
  412. "nickname" => $nickname
  413. );
  414. // $url = "https://a1.easemob.com/".huanxin_get_org_name()."/".huanxin_get_app_name()."/users";
  415. $url = "https://a1.easemob.com/1101210401193729/demo/users";
  416. $res = self::huanxin_curl_request($url, json_encode($param));
  417. $tokenResult = json_decode($res, true);
  418. }
  419. /**
  420. * 好友列表
  421. */
  422. static function friend_list($owner_username){
  423. $param = array ();
  424. $header = array(
  425. 'Authorization: Bearer '.self::getToken()
  426. );
  427. $url = "https://a1.easemob.com/1101210401193729/demo/users/".$owner_username."/contacts/users";
  428. $res = self::huanxin_curl_request($url,$param,$header,'GET');
  429. $Result = json_decode($res, true);
  430. return $Result['data'];
  431. }
  432. static function huanxin_curl_request($url, $body, $header = array(), $method = "POST") {
  433. array_push ( $header, 'Accept:application/json' );
  434. array_push ( $header, 'Content-Type:application/json' );
  435. $ch = curl_init ();
  436. curl_setopt ( $ch, CURLOPT_CONNECTTIMEOUT, 60 );
  437. curl_setopt ( $ch, CURLOPT_URL, $url );
  438. curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 );
  439. // curl_setopt($ch, $method, 1);
  440. switch (strtoupper($method)) {
  441. case "GET" :
  442. curl_setopt ( $ch, CURLOPT_HTTPGET, true );
  443. break;
  444. case "POST" :
  445. curl_setopt ( $ch, CURLOPT_POST, true );
  446. break;
  447. case "PUT" :
  448. curl_setopt ( $ch, CURLOPT_CUSTOMREQUEST, "PUT" );
  449. break;
  450. case "DELETE" :
  451. curl_setopt ( $ch, CURLOPT_CUSTOMREQUEST, "DELETE" );
  452. break;
  453. }
  454. curl_setopt ( $ch, CURLOPT_USERAGENT, 'SSTS Browser/1.0' );
  455. curl_setopt ( $ch, CURLOPT_ENCODING, 'gzip' );
  456. curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, FALSE );
  457. curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, 2 );
  458. if (isset ( $body {3} ) > 0) {
  459. curl_setopt ( $ch, CURLOPT_POSTFIELDS, $body );
  460. }
  461. if (count ( $header ) > 0) {
  462. curl_setopt ( $ch, CURLOPT_HTTPHEADER, $header );
  463. }
  464. $ret = curl_exec ( $ch );
  465. $err = curl_error ( $ch );
  466. curl_close ( $ch );
  467. if ($err) {
  468. return $err;
  469. }
  470. return $ret;
  471. }
  472. static function curl($url, $data, $header = false, $method = "POST")
  473. {
  474. $ch = curl_init($url);
  475. curl_setopt($ch, CURLOPT_URL, $url);
  476. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  477. if ($header) {
  478. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  479. }
  480. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
  481. if ($data) {
  482. curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
  483. }
  484. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  485. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  486. $ret = curl_exec($ch);
  487. return $ret;
  488. }
  489. }