functions.php 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-02-17
  10. // +—————————————————————————————————————————————————————————————————————
  11. /* Redis链接 */
  12. function connectionRedis(){
  13. $REDIS_HOST= DI()->config->get('app.REDIS_HOST');
  14. $REDIS_AUTH= DI()->config->get('app.REDIS_AUTH');
  15. $REDIS_PORT= DI()->config->get('app.REDIS_PORT');
  16. $redis = new Redis();
  17. $redis -> pconnect($REDIS_HOST,$REDIS_PORT);
  18. $redis -> auth($REDIS_AUTH);
  19. return $redis;
  20. }
  21. /* 设置缓存 */
  22. function setcache($key,$info){
  23. $config=getConfigPri();
  24. if($config['cache_switch']!=1){
  25. return 1;
  26. }
  27. DI()->redis->set($key,json_encode($info));
  28. DI()->redis->expire($key, $config['cache_time']);
  29. return 1;
  30. }
  31. /* 设置缓存 可自定义时间*/
  32. function setcaches($key,$info,$time=0){
  33. DI()->redis->set($key,json_encode($info));
  34. if($time > 0){
  35. DI()->redis->expire($key, $time);
  36. }
  37. return 1;
  38. }
  39. /* 获取缓存 */
  40. function getcache($key){
  41. $config=getConfigPri();
  42. if($config['cache_switch']!=1){
  43. $isexist=false;
  44. }else{
  45. $isexist=DI()->redis->Get($key);
  46. }
  47. return json_decode($isexist,true);
  48. }
  49. /* 获取缓存 不判断后台设置 */
  50. function getcaches($key){
  51. $isexist=DI()->redis->Get($key);
  52. return json_decode($isexist,true);
  53. }
  54. /* 删除缓存 */
  55. function delcache($key){
  56. $isexist=DI()->redis->del($key);
  57. return 1;
  58. }
  59. /* 密码检查 */
  60. function passcheck($user_pass) {
  61. /* 必须包含字母、数字 */
  62. $preg='/^(?=.*[A-Za-z])(?=.*[0-9])[a-zA-Z0-9~!@&%#_]{6,20}$/';
  63. $isok=preg_match($preg,$user_pass);
  64. if($isok){
  65. return 1;
  66. }
  67. return 0;
  68. }
  69. /* 检验手机号 */
  70. function checkMobile($mobile){
  71. $ismobile = preg_match("/^1[3|4|5|6|7|8|9]\d{9}$/",$mobile);
  72. if($ismobile){
  73. return 1;
  74. }else{
  75. return 0;
  76. }
  77. }
  78. /* 随机数 */
  79. function random($length = 6 , $numeric = 0) {
  80. PHP_VERSION < '4.2.0' && mt_srand((double)microtime() * 1000000);
  81. if($numeric) {
  82. $hash = sprintf('%0'.$length.'d', mt_rand(0, pow(10, $length) - 1));
  83. } else {
  84. $hash = '';
  85. $chars = 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789abcdefghjkmnpqrstuvwxyz';
  86. $max = strlen($chars) - 1;
  87. for($i = 0; $i < $length; $i++) {
  88. $hash .= $chars[mt_rand(0, $max)];
  89. }
  90. }
  91. return $hash;
  92. }
  93. function Post($curlPost,$url){
  94. $curl = curl_init();
  95. curl_setopt($curl, CURLOPT_URL, $url);
  96. curl_setopt($curl, CURLOPT_HEADER, false);
  97. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  98. curl_setopt($curl, CURLOPT_NOBODY, true);
  99. curl_setopt($curl, CURLOPT_POST, true);
  100. curl_setopt($curl, CURLOPT_POSTFIELDS, $curlPost);
  101. $return_str = curl_exec($curl);
  102. curl_close($curl);
  103. return $return_str;
  104. }
  105. function xml_to_array($xml){
  106. $reg = "/<(\w+)[^>]*>([\\x00-\\xFF]*)<\\/\\1>/";
  107. if(preg_match_all($reg, $xml, $matches)){
  108. $count = count($matches[0]);
  109. for($i = 0; $i < $count; $i++){
  110. $subxml= $matches[2][$i];
  111. $key = $matches[1][$i];
  112. if(preg_match( $reg, $subxml )){
  113. $arr[$key] = xml_to_array( $subxml );
  114. }else{
  115. $arr[$key] = $subxml;
  116. }
  117. }
  118. }
  119. return $arr;
  120. }
  121. /* 发送验证码*/
  122. function sendCode($mobile,$code){
  123. $rs = array('code' => 0, 'msg' => '', 'info' => array());
  124. $config = getConfigPri();
  125. if(!$config['sendcode_switch']){
  126. $rs['code']=667;
  127. $rs['msg']='123456';
  128. return $rs;
  129. }
  130. $res=sendCodeByTencentSms($country_code,$mobile,$code);//腾讯云
  131. return $res;
  132. }
  133. //腾讯云短信
  134. function sendCodeByTencentSms($nationCode,$mobile,$code){
  135. require_once API_ROOT."/../sdk/tencentSms/index.php";
  136. $rs=array();
  137. $configpri = getConfigPri();
  138. $appid=$configpri['tencent_sms_appid'];
  139. $appkey=$configpri['tencent_sms_appkey'];
  140. $smsSign_dl = $configpri['tencent_sms_signName'];
  141. $templateId_dl=$configpri['tencent_sms_templateCode'];
  142. $smsSign = $smsSign_dl;
  143. $templateId = $templateId_dl;
  144. $sender = new \Qcloud\Sms\SmsSingleSender($appid,$appkey);
  145. $params = [$code]; //参数列表与腾讯云后台创建模板时加的参数列表保持一致
  146. $result = $sender->sendWithParam($nationCode, $mobile, $templateId, $params, $smsSign, "", ""); // 签名参数未提供或者为空时,会使用默认签名发送短信
  147. //file_put_contents(API_ROOT.'/../log/sendCode_tencent_'.date('Y-m-d').'.txt',date('Y-m-d H:i:s').' 提交参数信息 result:'.json_encode($result)."\r\n",FILE_APPEND);
  148. $arr=json_decode($result,TRUE);
  149. if($arr['result']==0 && $arr['errmsg']=='OK'){
  150. //setSendcode(array('type'=>'1','account'=>$mobile,'content'=>"验证码:".$code."---国家区号:".$nationCode));
  151. $rs['code']=0;
  152. }else{
  153. $rs['code']=1002;
  154. $rs['msg']=$arr['errmsg'];
  155. // $rs['msg']='验证码发送失败';
  156. }
  157. return $rs;
  158. }
  159. /* curl get请求 */
  160. function curl_get($url){
  161. $curl = curl_init();
  162. curl_setopt($curl, CURLOPT_URL, $url);
  163. curl_setopt($curl, CURLOPT_HEADER, false);
  164. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  165. curl_setopt($curl, CURLOPT_NOBODY, true);
  166. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); // 跳过证书检查
  167. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 0); // 从证书中检查SSL加密算法是否存在
  168. $return_str = curl_exec($curl);
  169. curl_close($curl);
  170. return $return_str;
  171. }
  172. /* 检测文件后缀 */
  173. function checkExt($filename){
  174. $config=array("jpg","png","jpeg");
  175. $ext = pathinfo(strip_tags($filename), PATHINFO_EXTENSION);
  176. return empty($config) ? true : in_array(strtolower($ext), $config);
  177. }
  178. /* 密码加密 */
  179. function setPass($pass){
  180. $authcode='rCt52pF2cnnKNB3Hkp';
  181. $pass="###".md5(md5($authcode.$pass));
  182. return $pass;
  183. }
  184. /* 去除NULL 判断空处理 主要针对字符串类型*/
  185. function checkNull($checkstr){
  186. $checkstr=trim($checkstr);
  187. $checkstr=urldecode($checkstr);
  188. if(get_magic_quotes_gpc()==0){
  189. $checkstr=addslashes($checkstr);
  190. }
  191. if( strstr($checkstr,'null') || (!$checkstr && $checkstr!=0 ) ){
  192. $str='';
  193. }else{
  194. $str=$checkstr;
  195. }
  196. $str=htmlspecialchars($str);
  197. return $str;
  198. }
  199. /* 去除emoji表情 */
  200. function filterEmoji($str){
  201. $str = preg_replace_callback(
  202. '/./u',
  203. function (array $match) {
  204. return strlen($match[0]) >= 4 ? '' : $match[0];
  205. },
  206. $str);
  207. return $str;
  208. }
  209. /* 公共配置 */
  210. function getConfigPub() {
  211. $key='getConfigPub';
  212. $config=getcaches($key);
  213. $config=false;
  214. if(!$config){
  215. $config= DI()->notorm->option
  216. ->select('option_value')
  217. ->where("option_name='site_info'")
  218. ->fetchOne();
  219. $config=json_decode($config['option_value'],true);
  220. if($config){
  221. setcaches($key,$config);
  222. }
  223. }
  224. if(isset($config['live_time_coin'])){
  225. if(is_array($config['live_time_coin'])){
  226. }else if($config['live_time_coin']){
  227. $config['live_time_coin']=preg_split('/,|,/',$config['live_time_coin']);
  228. }else{
  229. $config['live_time_coin']=array();
  230. }
  231. }else{
  232. $config['live_time_coin']=array();
  233. }
  234. if(isset($config['login_type'])){
  235. if(is_array($config['login_type'])){
  236. }else if($config['login_type']){
  237. $config['login_type']=preg_split('/,|,/',$config['login_type']);
  238. }else{
  239. $config['login_type']=array();
  240. }
  241. }else{
  242. $config['login_type']=array();
  243. }
  244. if(isset($config['live_type'])){
  245. if(is_array($config['live_type'])){
  246. }else if($config['live_type']){
  247. $live_type=preg_split('/,|,/',$config['live_type']);
  248. foreach($live_type as $k=>$v){
  249. $live_type[$k]=preg_split('/;|;/',$v);
  250. }
  251. $config['live_type']=$live_type;
  252. }else{
  253. $config['live_type']=array();
  254. }
  255. }else{
  256. $config['live_type']=array();
  257. }
  258. return $config;
  259. }
  260. /* 私密配置 */
  261. function getConfigPri() {
  262. $key='getConfigPri';
  263. $config=getcaches($key);
  264. if(!$config){
  265. $config= DI()->notorm->option
  266. ->select('option_value')
  267. ->where("option_name='configpri'")
  268. ->fetchOne();
  269. $config=json_decode($config['option_value'],true);
  270. if($config){
  271. setcaches($key,$config);
  272. }
  273. }
  274. return $config;
  275. }
  276. /**
  277. * 返回带协议的域名
  278. */
  279. function get_host(){
  280. $config=getConfigPub();
  281. return $config['site'];
  282. }
  283. /**
  284. * 转化数据库保存的文件路径,为可以访问的url
  285. */
  286. function get_upload_path($file){
  287. if($file==''){
  288. return $file;
  289. }
  290. if(strpos($file,"http")===0){
  291. return html_entity_decode($file);
  292. }else if(strpos($file,"/")===0){
  293. $filepath= get_host().$file;
  294. return html_entity_decode($filepath);
  295. }else{
  296. $fileinfo=explode("_",$file);//上传云存储标识:qiniu:七牛云;aws:亚马逊
  297. $storage_type=$fileinfo[0];
  298. $start=strlen($storage_type)+1;
  299. if($storage_type=='qiniu'){ //七牛云
  300. $space_host= DI()->config->get('app.Qiniu.space_host');
  301. $file=substr($file,$start);
  302. $filepath=$space_host."/".$file;
  303. return html_entity_decode($filepath);
  304. }else{
  305. $uptype=DI()->config->get('app.uptype');
  306. if($uptype==1){
  307. $space_host= DI()->config->get('app.Qiniu.space_host');
  308. $filepath=$space_host."/".$file;
  309. }else{
  310. $filepath= get_host().'/upload/'.$file;
  311. }
  312. return html_entity_decode($filepath);
  313. }
  314. }
  315. }
  316. /* 判断权限 */
  317. function isAdmin($uid,$liveuid) {
  318. if($uid<0){
  319. return 30;
  320. }
  321. if($uid==$liveuid){
  322. return 50;
  323. }
  324. $isuper=isSuper($uid);
  325. if($isuper){
  326. return 60;
  327. }
  328. $isexist=DI()->notorm->live_manager
  329. ->select("*")
  330. ->where('uid=? and liveuid=?',$uid,$liveuid)
  331. ->fetchOne();
  332. if($isexist){
  333. return 40;
  334. }
  335. return 30;
  336. }
  337. /* 判断token */
  338. function checkToken($uid,$token) {
  339. $userinfo=getcaches("token_".$uid);
  340. if(!$userinfo){
  341. $userinfo=DI()->notorm->user_token
  342. ->select('token,expire_time')
  343. ->where('user_id = ?', $uid)
  344. ->fetchOne();
  345. if($userinfo){
  346. // setcaches("token_".$uid,$userinfo);
  347. }
  348. }
  349. if(!$userinfo || $userinfo['token']!=$token || $userinfo['expire_time']<time()){
  350. return 700;
  351. }
  352. return 0;
  353. }
  354. /* 用户基本信息 */
  355. function getUserInfo($uid,$type=0) {
  356. if($uid==0){
  357. if($uid==='goodsorder_admin'){
  358. $configpub=getConfigPub();
  359. $info['user_nicename']="订单消息";
  360. $info['avatar']=get_upload_path('/orderMsg.png');
  361. $info['avatar_thumb']=get_upload_path('/orderMsg.png');
  362. $info['id']="goodsorder_admin";
  363. }
  364. $info['coin']="0";
  365. $info['sex']="1";
  366. $info['signature']='';
  367. $info['province']='';
  368. $info['city']='城市未填写';
  369. $info['birthday']='';
  370. $info['issuper']="0";
  371. $info['votestotal']="0";
  372. $info['consumption']="0";
  373. $info['location']='';
  374. $info['user_status']='1';
  375. }else{
  376. $info=getcaches("userinfo_".$uid);
  377. if($uid>0){
  378. $info=false;
  379. }
  380. if(!$info){
  381. $info=DI()->notorm->user
  382. ->select('id,user_nicename,avatar,avatar_thumb,sex,signature,consumption,votestotal,province,city,birthday,user_status,location')
  383. ->where('id=? and user_type="2"',$uid)
  384. ->fetchOne();
  385. if($info){
  386. }else if($type==1){
  387. return $info;
  388. }else{
  389. $info['id']=$uid;
  390. $info['user_nicename']='用户不存在';
  391. $info['avatar']='/default.jpg';
  392. $info['avatar_thumb']='/default_thumb.jpg';
  393. $info['sex']='0';
  394. $info['signature']='';
  395. $info['consumption']='0';
  396. $info['votestotal']='0';
  397. $info['province']='';
  398. $info['city']='';
  399. $info['birthday']='';
  400. $info['issuper']='0';
  401. $info['user_status']='1';
  402. $info['location']='';
  403. }
  404. if($uid<0){
  405. $info['user_nicename']='游客';
  406. }
  407. if($info){
  408. setcaches("userinfo_".$uid,$info);
  409. }
  410. }
  411. if($info){
  412. $info['level']=getLevel($info['consumption']);
  413. $info['level_anchor']=getLevelAnchor($info['votestotal']);
  414. $info['avatar']=get_upload_path($info['avatar']);
  415. $info['avatar_thumb']=get_upload_path($info['avatar_thumb']);
  416. if($info['birthday']){
  417. $info['birthday']=date('Y-m-d',$info['birthday']);
  418. }else{
  419. $info['birthday']='';
  420. }
  421. }
  422. }
  423. return $info;
  424. }
  425. /* 会员等级 */
  426. function getLevelList(){
  427. $key='level';
  428. $level=getcaches($key);
  429. if(!$level){
  430. $level=DI()->notorm->level
  431. ->select("*")
  432. ->order("level_up asc")
  433. ->fetchAll();
  434. if($level){
  435. setcaches($key,$level);
  436. }
  437. }
  438. foreach($level as $k=>$v){
  439. $v['thumb']=get_upload_path($v['thumb']);
  440. $v['thumb_mark']=get_upload_path($v['thumb_mark']);
  441. $v['bg']=get_upload_path($v['bg']);
  442. if($v['colour']){
  443. $v['colour']='#'.$v['colour'];
  444. }else{
  445. $v['colour']='#ffdd00';
  446. }
  447. $level[$k]=$v;
  448. }
  449. return $level;
  450. }
  451. function getLevel($experience){
  452. $levelid=1;
  453. $level_a=1;
  454. $level=getLevelList();
  455. foreach($level as $k=>$v){
  456. if( $v['level_up']>=$experience){
  457. $levelid=$v['levelid'];
  458. break;
  459. }else{
  460. $level_a = $v['levelid'];
  461. }
  462. }
  463. $levelid = $levelid < $level_a ? $level_a:$levelid;
  464. return (string)$levelid;
  465. }
  466. /* 主播等级 */
  467. function getLevelAnchorList(){
  468. $key='levelanchor';
  469. $level=getcaches($key);
  470. if(!$level){
  471. $level=DI()->notorm->level_anchor
  472. ->select("*")
  473. ->order("level_up asc")
  474. ->fetchAll();
  475. if($level){
  476. setcaches($key,$level);
  477. }
  478. }
  479. foreach($level as $k=>$v){
  480. $v['thumb']=get_upload_path($v['thumb']);
  481. $v['thumb_mark']=get_upload_path($v['thumb_mark']);
  482. $v['bg']=get_upload_path($v['bg']);
  483. $level[$k]=$v;
  484. }
  485. return $level;
  486. }
  487. function getLevelAnchor($experience){
  488. $levelid=1;
  489. $level_a=1;
  490. $level=getLevelAnchorList();
  491. foreach($level as $k=>$v){
  492. if( $v['level_up']>=$experience){
  493. $levelid=$v['levelid'];
  494. break;
  495. }else{
  496. $level_a = $v['levelid'];
  497. }
  498. }
  499. $levelid = $levelid < $level_a ? $level_a:$levelid;
  500. return (string)$levelid;
  501. }
  502. /* 统计 直播 */
  503. function getLives($uid) {
  504. /* 直播中 */
  505. $count1=DI()->notorm->live
  506. ->where('uid=? and islive="1"',$uid)
  507. ->count();
  508. /* 回放 */
  509. $count2=DI()->notorm->live_record
  510. ->where('uid=? ',$uid)
  511. ->count();
  512. return $count1+$count2;
  513. }
  514. /* 统计 关注 */
  515. function getFollows($uid) {
  516. $count=DI()->notorm->user_attention
  517. ->where('uid=? ',$uid)
  518. ->count();
  519. return $count;
  520. }
  521. /* 统计 粉丝 */
  522. function getFans($uid) {
  523. $count=DI()->notorm->user_attention
  524. ->where('touid=? ',$uid)
  525. ->count();
  526. return $count;
  527. }
  528. /**
  529. * @desc 根据两点间的经纬度计算距离
  530. * @param float $lat 纬度值
  531. * @param float $lng 经度值
  532. */
  533. function getDistance($lat1, $lng1, $lat2, $lng2){
  534. $earthRadius = 6371000; //近似地球半径 单位 米
  535. /*
  536. Convert these degrees to radians
  537. to work with the formula
  538. */
  539. $lat1 = ($lat1 * pi() ) / 180;
  540. $lng1 = ($lng1 * pi() ) / 180;
  541. $lat2 = ($lat2 * pi() ) / 180;
  542. $lng2 = ($lng2 * pi() ) / 180;
  543. $calcLongitude = $lng2 - $lng1;
  544. $calcLatitude = $lat2 - $lat1;
  545. $stepOne = pow(sin($calcLatitude / 2), 2) + cos($lat1) * cos($lat2) * pow(sin($calcLongitude / 2), 2); $stepTwo = 2 * asin(min(1, sqrt($stepOne)));
  546. $calculatedDistance = $earthRadius * $stepTwo;
  547. $distance=$calculatedDistance/1000;
  548. if($distance<10){
  549. $rs=round($distance,2);
  550. }else if($distance > 1000){
  551. $rs='1000';
  552. }else{
  553. $rs=round($distance);
  554. }
  555. return $rs.'km';
  556. }
  557. /* 判断账号是否禁用 */
  558. function isBanBF($uid){
  559. $status=DI()->notorm->user
  560. ->select("user_status")
  561. ->where('id=?',$uid)
  562. ->fetchOne();
  563. if(!$status || $status['user_status']==0){
  564. return '0';
  565. }
  566. return '1';
  567. }
  568. /* 是否认证 */
  569. function isAuth($uid){
  570. $status=DI()->notorm->user_auth
  571. ->select("status")
  572. ->where('uid=?',$uid)
  573. ->fetchOne();
  574. if($status && $status['status']==1){
  575. return '1';
  576. }
  577. return '0';
  578. }
  579. /* 过滤字符 */
  580. function filterField($field){
  581. $configpri=getConfigPri();
  582. $sensitive_field=$configpri['sensitive_field'];
  583. $sensitive=explode(",",$sensitive_field);
  584. $replace=array();
  585. $preg=array();
  586. foreach($sensitive as $k=>$v){
  587. if($v!=''){
  588. $re='';
  589. $num=mb_strlen($v);
  590. for($i=0;$i<$num;$i++){
  591. $re.='*';
  592. }
  593. $replace[$k]=$re;
  594. $preg[$k]='/'.$v.'/';
  595. }else{
  596. unset($sensitive[$k]);
  597. }
  598. }
  599. return preg_replace($preg,$replace,$field);
  600. }
  601. /* 时间差计算 */
  602. function datetime($time){
  603. $cha=time()-$time;
  604. $iz=floor($cha/60);
  605. $hz=floor($iz/60);
  606. $dz=floor($hz/24);
  607. /* 秒 */
  608. $s=$cha%60;
  609. /* 分 */
  610. $i=floor($iz%60);
  611. /* 时 */
  612. $h=floor($hz/24);
  613. /* 天 */
  614. if($cha<60){
  615. return $cha.'秒前';
  616. }else if($iz<60){
  617. return $iz.'分钟前';
  618. }else if($hz<24){
  619. return $hz.'小时'.$i.'分钟前';
  620. }else if($dz<30){
  621. return $dz.'天前';
  622. }else{
  623. return date("Y-m-d",$time);
  624. }
  625. }
  626. /* 时长格式化 */
  627. function getSeconds($time,$type=0){
  628. if(!$time){
  629. return (string)$time;
  630. }
  631. $value = array(
  632. "years" => 0,
  633. "days" => 0,
  634. "hours" => 0,
  635. "minutes" => 0,
  636. "seconds" => 0
  637. );
  638. if($time >= 31556926){
  639. $value["years"] = floor($time/31556926);
  640. $time = ($time%31556926);
  641. }
  642. if($time >= 86400){
  643. $value["days"] = floor($time/86400);
  644. $time = ($time%86400);
  645. }
  646. if($time >= 3600){
  647. $value["hours"] = floor($time/3600);
  648. $time = ($time%3600);
  649. }
  650. if($time >= 60){
  651. $value["minutes"] = floor($time/60);
  652. $time = ($time%60);
  653. }
  654. $value["seconds"] = floor($time);
  655. if($value['years']){
  656. if($type==1&&$value['years']<10){
  657. $value['years']='0'.$value['years'];
  658. }
  659. }
  660. if($value['days']){
  661. if($type==1&&$value['days']<10){
  662. $value['days']='0'.$value['days'];
  663. }
  664. }
  665. if($value['hours']){
  666. if($type==1&&$value['hours']<10){
  667. $value['hours']='0'.$value['hours'];
  668. }
  669. }
  670. if($value['minutes']){
  671. if($type==1&&$value['minutes']<10){
  672. $value['minutes']='0'.$value['minutes'];
  673. }
  674. }
  675. if($value['seconds']){
  676. if($type==1&&$value['seconds']<10){
  677. $value['seconds']='0'.$value['seconds'];
  678. }
  679. }
  680. if($value['years']){
  681. $t=$value["years"] ."年".$value["days"] ."天". $value["hours"] ."小时". $value["minutes"] ."分".$value["seconds"]."秒";
  682. }else if($value['days']){
  683. $t=$value["days"] ."天". $value["hours"] ."小时". $value["minutes"] ."分".$value["seconds"]."秒";
  684. }else if($value['hours']){
  685. $t=$value["hours"] ."小时". $value["minutes"] ."分".$value["seconds"]."秒";
  686. }else if($value['minutes']){
  687. $t=$value["minutes"] ."分".$value["seconds"]."秒";
  688. }else if($value['seconds']){
  689. $t=$value["seconds"]."秒";
  690. }
  691. return $t;
  692. }
  693. /* 数字格式化 */
  694. function NumberFormat($num){
  695. if($num<10000){
  696. }else if($num<1000000){
  697. $num=round($num/10000,2).'万';
  698. }else if($num<100000000){
  699. $num=round($num/10000,1).'万';
  700. }else if($num<10000000000){
  701. $num=round($num/100000000,2).'亿';
  702. }else{
  703. $num=round($num/100000000,1).'亿';
  704. }
  705. return $num;
  706. }
  707. /**
  708. * @desc 获取推拉流地址
  709. * @param string $host 协议,如:http、rtmp
  710. * @param string $stream 流名,如有则包含 .flv、.m3u8
  711. * @param int $type 类型,0表示播流,1表示推流
  712. */
  713. function PrivateKeyA($host,$stream,$type){
  714. $url=PrivateKey_tx($host,$stream,$type);
  715. return $url;
  716. }
  717. /**
  718. * @desc 腾讯云推拉流地址
  719. * @param string $host 协议,如:http、rtmp
  720. * @param string $stream 流名,如有则包含 .flv、.m3u8
  721. * @param int $type 类型,0表示播流,1表示推流
  722. */
  723. function PrivateKey_tx($host,$stream,$type){
  724. $configpri=getConfigPri();
  725. $bizid=$configpri['tx_bizid'];
  726. $push_url_key=$configpri['tx_push_key'];
  727. $play_url_key=$configpri['tx_play_key'];
  728. $push=$configpri['tx_push'];
  729. $pull=$configpri['tx_pull'];
  730. $stream_a=explode('.',$stream);
  731. $streamKey = $stream_a[0];
  732. //$live_code = $bizid . "_" .$streamKey;
  733. $live_code = $streamKey;
  734. $now=time();
  735. $now_time = $now + 3*60*60;
  736. $txTime = dechex($now_time);
  737. $txSecret = md5($push_url_key . $live_code . $txTime);
  738. $safe_url = "?txSecret=" .$txSecret."&txTime=" .$txTime;
  739. $play_safe_url='';
  740. //后台开启了播流鉴权
  741. if($configpri['tx_play_key_switch']){
  742. //播流鉴权时间
  743. $play_auth_time=$now+(int)$configpri['tx_play_time'];
  744. $txPlayTime = dechex($play_auth_time);
  745. $txPlaySecret = md5($play_url_key . $live_code . $txPlayTime);
  746. $play_safe_url = "?txSecret=" .$txPlaySecret."&txTime=" .$txPlayTime;
  747. }
  748. if($type==1){
  749. //$push_url = "rtmp://" . $bizid . ".livepush2.myqcloud.com/live/" . $live_code . "?bizid=" . $bizid . "&record=flv" .$safe_url; 可录像
  750. $url = "rtmp://{$push}/live/" . $live_code . $safe_url;
  751. }else{
  752. $url = "http://{$pull}/live/" . $live_code . ".flv".$play_safe_url;
  753. //$url = "http://{$pull}/live/" . $live_code . ".".$ext.$play_safe_url;(废弃)
  754. }
  755. return $url;
  756. }
  757. /* ip限定 */
  758. function ip_limit(){
  759. $configpri=getConfigPri();
  760. if($configpri['iplimit_switch']==0){
  761. return 0;
  762. }
  763. $date = date("Ymd");
  764. $ip= ip2long($_SERVER["REMOTE_ADDR"]) ;
  765. $isexist=DI()->notorm->getcode_limit_ip
  766. ->select('ip,date,times')
  767. ->where(' ip=? ',$ip)
  768. ->fetchOne();
  769. if(!$isexist){
  770. $data=array(
  771. "ip" => $ip,
  772. "date" => $date,
  773. "times" => 1,
  774. );
  775. $isexist=DI()->notorm->getcode_limit_ip->insert($data);
  776. return 0;
  777. }elseif($date == $isexist['date'] && $isexist['times'] >= $configpri['iplimit_times'] ){
  778. return 1;
  779. }else{
  780. if($date == $isexist['date']){
  781. $isexist=DI()->notorm->getcode_limit_ip
  782. ->where(' ip=? ',$ip)
  783. ->update(array('times'=> new NotORM_Literal("times + 1 ")));
  784. return 0;
  785. }else{
  786. $isexist=DI()->notorm->getcode_limit_ip
  787. ->where(' ip=? ',$ip)
  788. ->update(array('date'=> $date ,'times'=>1));
  789. return 0;
  790. }
  791. }
  792. }
  793. /* 检测用户是否存在 */
  794. function checkUser($where){
  795. if($where==''){
  796. return 0;
  797. }
  798. $isexist=DI()->notorm->user->where($where)->fetchOne();
  799. if($isexist){
  800. return 1;
  801. }
  802. return 0;
  803. }
  804. /* 直播分类 */
  805. function getLiveClass(){
  806. $key="getLiveClass";
  807. $list=getcaches($key);
  808. if(!$list){
  809. $list=DI()->notorm->live_class
  810. ->select("*")
  811. ->order("list_order asc,id desc")
  812. ->fetchAll();
  813. if($list){
  814. setcaches($key,$list);
  815. }
  816. }
  817. foreach($list as $k=>$v){
  818. $v['thumb']=get_upload_path($v['thumb']);
  819. $list[$k]=$v;
  820. }
  821. return $list;
  822. }
  823. /* 校验签名 */
  824. function checkSign($data,$sign){
  825. $key=DI()->config->get('app.sign_key');
  826. $str='';
  827. ksort($data);
  828. foreach($data as $k=>$v){
  829. $str.=$k.'='.$v.'&';
  830. }
  831. $str.=$key;
  832. $newsign=md5($str);
  833. //file_put_contents("33333.txt", $newsign);
  834. /*var_dump($newsign);
  835. die;*/
  836. if($sign==$newsign){
  837. return 1;
  838. }
  839. return 0;
  840. }
  841. /* 时长格式化 */
  842. function getBanSeconds($cha,$type=0){
  843. $iz=floor($cha/60);
  844. $hz=floor($iz/60);
  845. $dz=floor($hz/24);
  846. /* 秒 */
  847. $s=$cha%60;
  848. /* 分 */
  849. $i=floor($iz%60);
  850. /* 时 */
  851. $h=floor($hz/24);
  852. /* 天 */
  853. if($type==1){
  854. if($s<10){
  855. $s='0'.$s;
  856. }
  857. if($i<10){
  858. $i='0'.$i;
  859. }
  860. if($h<10){
  861. $h='0'.$h;
  862. }
  863. if($hz<10){
  864. $hz='0'.$hz;
  865. }
  866. return $hz.':'.$i.':'.$s;
  867. }
  868. if($cha<60){
  869. return $cha.'秒';
  870. }else if($iz<60){
  871. return $iz.'分钟'.$s.'秒';
  872. }else if($hz<24){
  873. return $hz.'小时'.$i.'分钟';
  874. }else if($dz<30){
  875. return $dz.'天'.$h.'小时';
  876. }
  877. }
  878. /* 过滤:敏感词 */
  879. function sensitiveField($field){
  880. if($field){
  881. $configpri=getConfigPri();
  882. $sensitive_words=$configpri['sensitive_words'];
  883. $sensitive=explode(",",$sensitive_words);
  884. $replace=array();
  885. $preg=array();
  886. foreach($sensitive as $k=>$v){
  887. if($v!=''){
  888. if(strstr($field, $v)!==false){
  889. return 1001;
  890. }
  891. }else{
  892. unset($sensitive[$k]);
  893. }
  894. }
  895. }
  896. return 1;
  897. }
  898. /* 处理直播信息 */
  899. function handleLive($v){
  900. $configpri=getConfigPri();
  901. $nums=DI()->redis->zCard('user_'.$v['stream']);
  902. $v['nums']=(string)$nums;
  903. $userinfo=getUserInfo($v['uid']);
  904. $v['avatar']=$userinfo['avatar'];
  905. $v['avatar_thumb']=$userinfo['avatar_thumb'];
  906. $v['user_nicename']=$userinfo['user_nicename'];
  907. $v['sex']=$userinfo['sex'];
  908. $v['level']=$userinfo['level'];
  909. $v['level_anchor']=$userinfo['level_anchor'];
  910. if(!$v['thumb']){
  911. $v['thumb']=$v['avatar'];
  912. }
  913. if($v['isvideo']==0 ){
  914. $v['pull']=PrivateKeyA('rtmp',$v['stream'],0);
  915. }
  916. if($v['type']==1){
  917. $v['type_val']='';
  918. }
  919. $v['thumb']=get_upload_path($v['thumb']);
  920. return $v;
  921. }
  922. /**
  923. * 判断是否为合法的身份证号码
  924. * @param $mobile
  925. * @return int
  926. */
  927. function isCreditNo($vStr){
  928. $vCity = array(
  929. '11','12','13','14','15','21','22',
  930. '23','31','32','33','34','35','36',
  931. '37','41','42','43','44','45','46',
  932. '50','51','52','53','54','61','62',
  933. '63','64','65','71','81','82','91'
  934. );
  935. if (!preg_match('/^([\d]{17}[xX\d]|[\d]{15})$/', $vStr)){
  936. return false;
  937. }
  938. if (!in_array(substr($vStr, 0, 2), $vCity)){
  939. return false;
  940. }
  941. $vStr = preg_replace('/[xX]$/i', 'a', $vStr);
  942. $vLength = strlen($vStr);
  943. if($vLength == 18){
  944. $vBirthday = substr($vStr, 6, 4) . '-' . substr($vStr, 10, 2) . '-' . substr($vStr, 12, 2);
  945. }else{
  946. $vBirthday = '19' . substr($vStr, 6, 2) . '-' . substr($vStr, 8, 2) . '-' . substr($vStr, 10, 2);
  947. }
  948. if(date('Y-m-d', strtotime($vBirthday)) != $vBirthday){
  949. return false;
  950. }
  951. if ($vLength == 18) {
  952. $vSum = 0;
  953. for ($i = 17 ; $i >= 0 ; $i--) {
  954. $vSubStr = substr($vStr, 17 - $i, 1);
  955. $vSum += (pow(2, $i) % 11) * (($vSubStr == 'a') ? 10 : intval($vSubStr , 11));
  956. }
  957. if($vSum % 11 != 1){
  958. return false;
  959. }
  960. }
  961. return true;
  962. }
  963. /**
  964. * post提交数据
  965. * @param string $url 请求Url
  966. * @param array $datas 提交的数据
  967. * @return url响应返回的html
  968. */
  969. function sendPost_KDN($url, $datas) {
  970. $temps = array();
  971. foreach ($datas as $key => $value) {
  972. $temps[] = sprintf('%s=%s', $key, $value);
  973. }
  974. $post_data = implode('&', $temps);
  975. $url_info = parse_url($url);
  976. if(empty($url_info['port']))
  977. {
  978. $url_info['port']=80;
  979. }
  980. $httpheader = "POST " . $url_info['path'] . " HTTP/1.0\r\n";
  981. $httpheader.= "Host:" . $url_info['host'] . "\r\n";
  982. $httpheader.= "Content-Type:application/x-www-form-urlencoded\r\n";
  983. $httpheader.= "Content-Length:" . strlen($post_data) . "\r\n";
  984. $httpheader.= "Connection:close\r\n\r\n";
  985. $httpheader.= $post_data;
  986. $fd = fsockopen($url_info['host'], $url_info['port']);
  987. fwrite($fd, $httpheader);
  988. $gets = "";
  989. $headerFlag = true;
  990. while (!feof($fd)) {
  991. if (($header = @fgets($fd)) && ($header == "\r\n" || $header == "\n")) {
  992. break;
  993. }
  994. }
  995. while (!feof($fd)) {
  996. $gets.= fread($fd, 128);
  997. }
  998. fclose($fd);
  999. return $gets;
  1000. }
  1001. function is_true($val, $return_null=false){
  1002. $boolval = ( is_string($val) ? filter_var($val, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE) : (bool) $val );
  1003. return ( $boolval===null && !$return_null ? false : $boolval );
  1004. }
  1005. /* 时长格式化 */
  1006. function secondsFormat($time){
  1007. $now=time();
  1008. $cha=$now-$time;
  1009. if($cha<60){
  1010. return '刚刚';
  1011. }
  1012. if($cha>=4*24*60*60){ //超过4天
  1013. $now_year=date('Y',$now);
  1014. $time_year=date('Y',$time);
  1015. if($now_year==$time_year){
  1016. return date("m月d日",$time);
  1017. }else{
  1018. return date("Y年m月d日",$time);
  1019. }
  1020. }else{
  1021. $iz=floor($cha/60);
  1022. $hz=floor($iz/60);
  1023. $dz=floor($hz/24);
  1024. if($dz>3){
  1025. return '3天前';
  1026. }else if($dz>2){
  1027. return '2天前';
  1028. }else if($dz>1){
  1029. return '1天前';
  1030. }
  1031. if($hz>1){
  1032. return $hz.'小时前';
  1033. }
  1034. return $iz.'分钟前';
  1035. }
  1036. }
  1037. //获取播流地址
  1038. function getPull($stream){
  1039. $pull='';
  1040. $live_info=DI()->notorm->live->where("stream=?",$stream)->fetchOne();
  1041. if($live_info['isvideo']==1){ //视频
  1042. $pull=$live_info['pull'];
  1043. }else{
  1044. $configpri=getConfigPri();
  1045. if($configpri['cdn_switch']==5){
  1046. $wyinfo=PrivateKeyA('rtmp',$stream,1);
  1047. $pull=$wyinfo['ret']["rtmpPullUrl"];
  1048. }else{
  1049. $pull=PrivateKeyA('rtmp',$stream,0);
  1050. }
  1051. }
  1052. return $pull;
  1053. }
  1054. //检测姓名
  1055. function checkUsername($username){
  1056. $preg='/^(?=.*\d.*\b)/';
  1057. $isok = preg_match($preg,$username);
  1058. if($isok){
  1059. return 1;
  1060. }else{
  1061. return 0;
  1062. }
  1063. }
  1064. //验证数字是否整数/两位小数
  1065. function checkNumber($num){
  1066. if(floor($num) ==$num){
  1067. return 1;
  1068. }
  1069. if (preg_match('/^[0-9]+(.[0-9]{1,2})$/', $num)) {
  1070. return 1;
  1071. }
  1072. return 0;
  1073. }