Common.php 18 KB

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