Common.php 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  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\Hook;
  7. use think\Request;
  8. use app\common\library\QRcode;
  9. /**
  10. * 公共类
  11. */
  12. class Common
  13. {
  14. /**
  15. * curl 请求
  16. * @param $url string 请求地址
  17. * @param $headers json 请求头
  18. * @param $body json 请求体
  19. * @return mixed
  20. */
  21. public static function curlRequest($url, $headers = [], $body = [], $method = "GET")
  22. {
  23. $ch = curl_init();
  24. curl_setopt($ch, CURLOPT_URL, $url);
  25. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);//设置请求头
  26. curl_setopt($ch, CURLOPT_POSTFIELDS, $body);//设置请求体
  27. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); //定义请求类型
  28. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  29. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  30. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  31. curl_setopt($ch, CURLOPT_HTTP_VERSION, 'CURL_HTTP_VERSION_1_1');
  32. $output = curl_exec($ch);
  33. curl_close($ch);
  34. $arr = json_decode($output, true);
  35. return $arr;
  36. }
  37. /**
  38. * 成功
  39. * @param $msg
  40. * @return array
  41. */
  42. public static function return_success($msg,$data = null){
  43. $result = [
  44. 'code' => 1,
  45. 'msg' => $msg,
  46. 'data' =>$data
  47. ];
  48. return $result;
  49. die;
  50. }
  51. /**
  52. * 失败
  53. * @param $msg
  54. * @return array
  55. */
  56. public static function return_error($msg,$data = null){
  57. $result = [
  58. 'code' => 0,
  59. 'msg' => $msg,
  60. 'data' => $data
  61. ];
  62. return $result;
  63. die;
  64. }
  65. public static function get_ffid($invite_code){
  66. $f = \app\common\model\User::where('id',$invite_code)->field('fid')->find();
  67. if ($f)
  68. return $f->fid;
  69. else
  70. return 0;
  71. }
  72. /**
  73. * 生成二维码
  74. */
  75. public static function generate_qrcode($value){
  76. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/verify';
  77. if(!file_exists($dir)){
  78. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  79. mkdir($dir, 0700,true);
  80. }
  81. $filename = $dir.'/'.$value.'.png';
  82. QRcode::png($value,$filename);
  83. return 'http://'.$_SERVER['SERVER_NAME']."/verify/".$value.'.png';
  84. }
  85. /**
  86. * 生成二维码
  87. */
  88. public static function setqrcode($value,$name){
  89. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/user';
  90. if(!file_exists($dir)){
  91. //检查是否有该文件夹,如果没有就创建,并给予最高权限
  92. mkdir($dir, 0700,true);
  93. }
  94. $filename = $dir.'/'.$name.'.png';
  95. QRcode::png($value,$filename,QR_ECLEVEL_L,7);
  96. return 'http://'.$_SERVER['SERVER_NAME']."/user/".$name.'.png';
  97. }
  98. public static function setintivecode($user_id,$type){
  99. $g = $type==1 ? 'invite' : 'mer';
  100. $name = $g.$user_id."_".time();
  101. $address = 'http://'.$_SERVER['SERVER_NAME'].'/build/#/'.$type.'/'.$user_id;
  102. $url = self::setqrcode($address,$name);
  103. return $url;
  104. }
  105. /**
  106. * 订单操作记录
  107. * @param int $change_message 操作备注
  108. * @param int $oid 订单id
  109. */
  110. public static function order_status($oid, $change_message)
  111. {
  112. OrderStatus::create(['oid' => $oid,'change_message' => $change_message, 'change_time' => time()]);
  113. }
  114. /**
  115. * 判断金额在哪个区间
  116. */
  117. public static function checkMoneyGrade($money){
  118. if ($money<50000){
  119. return false;
  120. }elseif ($money>=50000 && $money<150000){
  121. return 50000;
  122. }elseif ($money>=150000 && $money<450000){
  123. return 150000;
  124. }elseif ($money>=450000 && $money<1350000){
  125. return 450000;
  126. }elseif ($money>=1350000 && $money<4000000){
  127. return 1350000;
  128. }elseif ($money>=4000000 && $money<12000000){
  129. return 4000000;
  130. }elseif ($money>=12000000 && $money<36000000){
  131. return 12000000;
  132. }elseif ($money>=36000000 && $money<100000000){
  133. return 36000000;
  134. }elseif ($money>=100000000 && $money<300000000){
  135. return 100000000;
  136. }elseif ($money>=300000000 && $money<600000000){
  137. return 300000000;
  138. }elseif ($money>=600000000){
  139. return 600000000;
  140. }
  141. }
  142. /**
  143. * 生成订单唯一id
  144. * $user_id 用户id
  145. * @return string
  146. */
  147. public static function getNewOrderId($user_id)
  148. {
  149. $str = date('Ymd').$user_id.substr(implode(NULL, array_map('ord', str_split(substr(uniqid(), 7, 13), 1))), 0, 8);
  150. return $str;
  151. }
  152. /**
  153. * 身份证验证
  154. * @param $card
  155. * @return bool
  156. */
  157. public static function setCard($card){
  158. $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=>"国外 "];
  159. $tip = "";
  160. $match = "/^\d{6}(18|19|20)?\d{2}(0[1-9]|1[012])(0[1-9]|[12]\d|3[01])\d{3}(\d|X)$/";
  161. $pass= true;
  162. if(!$card || !preg_match($match,$card)){
  163. //身份证格式错误
  164. $pass = false;
  165. }else if(!$city[substr($card,0,2)]){
  166. //地址错误
  167. $pass = false;
  168. }else{
  169. //18位身份证需要验证最后一位校验位
  170. if(strlen($card) == 18){
  171. $card = str_split($card);
  172. //∑(ai×Wi)(mod 11)
  173. //加权因子
  174. $factor = [ 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2 ];
  175. //校验位
  176. $parity = [ 1, 0, 'X', 9, 8, 7, 6, 5, 4, 3, 2 ];
  177. $sum = 0;
  178. $ai = 0;
  179. $wi = 0;
  180. for ($i = 0; $i < 17; $i++)
  181. {
  182. $ai = $card[$i];
  183. $wi = $factor[$i];
  184. $sum += $ai * $wi;
  185. }
  186. $last = $parity[$sum % 11];
  187. if($parity[$sum % 11] != $card[17]){
  188. $pass =false;
  189. }
  190. }else{
  191. $pass =false;
  192. }
  193. }
  194. if(!$pass) return false;/* 身份证格式错误*/
  195. return true;/* 身份证格式正确*/
  196. }
  197. /**
  198. * 高德地图api根据ip获取地区
  199. */
  200. public static function gaoDegetAreaToIp(){
  201. $ip = request()->ip();
  202. $content = file_get_contents("http://restapi.amap.com/v3/ip?key=7b60be14348558ca73ea081b3e871c6e&ip={$ip}");
  203. $json = json_decode($content,true);
  204. return $json;
  205. }
  206. /**
  207. * 获取当前的经纬度
  208. */
  209. public static function get_ipjwd(){
  210. $ip = request()->ip();
  211. //获取百度地图apikey
  212. $api_key = Config::get_values('baidu_api_server');
  213. if ($ip=='127.0.0.1') {//如果获取到的ip为127.0.0.1 会报错 在这随便给一个ip
  214. $ip='58.30.228.35';
  215. }
  216. $content = file_get_contents("http://api.map.baidu.com/location/ip?ak=$api_key&ip={$ip}&coor=bd09ll");
  217. $json = json_decode($content);
  218. $data=array();
  219. $data['log']=$json->{'content'}->{'point'}->{'x'};//按层级关系提取经度数据
  220. $data['lat']=$json->{'content'}->{'point'}->{'y'};//按层级关系提取纬度数据
  221. $data['address']=$json->{'content'}->{'address'};//按层级关系提取address数据
  222. return $data;
  223. }
  224. /**
  225. * 计算距离
  226. * 1.纬度1,经度1,纬度2,经度2
  227. * 2.返回结果是单位是KM。
  228. * 3.保留一位小数
  229. */
  230. public static function getDistance($lat2,$lng2,$lat='',$log='')
  231. {
  232. $user = app()->session->get('us');
  233. $userinfo = User::get($user['id']);
  234. if ($lat && $log) {
  235. $lng1 = $log;
  236. $lat1 = $lat;
  237. }elseif ($userinfo && $userinfo['now_lat'] && $userinfo['now_log']){
  238. $lng1 = $userinfo['now_log'];
  239. $lat1 = $userinfo['now_lat'];
  240. }else{
  241. return "0";
  242. }
  243. // $userinfo = User::get($user['id']);
  244. // if ($userinfo && $userinfo['now_lat'] && $userinfo['now_log']){
  245. // $lng1 = $userinfo['now_log'];
  246. // $lat1 = $userinfo['now_lat'];
  247. // }else{
  248. // if (!$lat2 || !$lng2)
  249. // return '1';
  250. // $ip = request()->ip();
  251. // //获取百度地图apikey
  252. // $api_key = Config::get_values('baidu_api_server');
  253. // if ($ip=='127.0.0.1') {//如果获取到的ip为127.0.0.1 会报错 在这随便给一个ip
  254. // $ip='58.30.228.35';
  255. // }
  256. // $content = file_get_contents("http://api.map.baidu.com/location/ip?ak=$api_key&ip={$ip}&coor=bd09ll");
  257. // $json = json_decode($content);
  258. // $lng1=$json->{'content'}->{'point'}->{'x'};//按层级关系提取经度数据
  259. // $lat1=$json->{'content'}->{'point'}->{'y'};//按层级关系提取纬度数据
  260. // }
  261. //将角度转为狐度
  262. $radLat1 = deg2rad($lat1);//deg2rad()函数将角度转换为弧度
  263. $radLat2 = deg2rad($lat2);
  264. $radLng1 = deg2rad($lng1);
  265. $radLng2 = deg2rad($lng2);
  266. $a = $radLat1 - $radLat2;
  267. $b = $radLng1 - $radLng2;
  268. $s = 2*asin(sqrt(pow(sin($a/2),2)+cos($radLat1)*cos($radLat2)*pow(sin($b/2),2)))*6371;
  269. return round($s,1);
  270. }
  271. }