functions.php 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330
  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-04-30
  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. DI()->redis=$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. /* 去除NULL 判断空处理 主要针对字符串类型*/
  60. function checkNull($checkstr){
  61. $checkstr=urldecode($checkstr);
  62. $checkstr=htmlspecialchars($checkstr);
  63. $checkstr=trim($checkstr);
  64. //$checkstr=filterEmoji($checkstr);
  65. if( strstr($checkstr,'null') || (!$checkstr && $checkstr!=0 ) ){
  66. $str='';
  67. }else{
  68. $str=$checkstr;
  69. }
  70. return $str;
  71. }
  72. /* 去除emoji表情 */
  73. function filterEmoji($str){
  74. $str = preg_replace_callback(
  75. '/./u',
  76. function (array $match) {
  77. return strlen($match[0]) >= 4 ? '' : $match[0];
  78. },
  79. $str);
  80. return $str;
  81. }
  82. /* 检验手机号 */
  83. function checkMobile($mobile){
  84. $ismobile = preg_match("/^1[3|4|5|6|7|8|9]\d{9}$/",$mobile);
  85. if($ismobile){
  86. return 1;
  87. }else{
  88. return 0;
  89. }
  90. }
  91. /* 随机数 */
  92. function random($length = 6 , $numeric = 0) {
  93. PHP_VERSION < '4.2.0' && mt_srand((double)microtime() * 1000000);
  94. if($numeric) {
  95. $hash = sprintf('%0'.$length.'d', mt_rand(0, pow(10, $length) - 1));
  96. } else {
  97. $hash = '';
  98. $chars = 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789abcdefghjkmnpqrstuvwxyz';
  99. $max = strlen($chars) - 1;
  100. for($i = 0; $i < $length; $i++) {
  101. $hash .= $chars[mt_rand(0, $max)];
  102. }
  103. }
  104. return $hash;
  105. }
  106. function Post($curlPost,$url){
  107. $curl = curl_init();
  108. curl_setopt($curl, CURLOPT_URL, $url);
  109. curl_setopt($curl, CURLOPT_HEADER, false);
  110. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  111. curl_setopt($curl, CURLOPT_NOBODY, true);
  112. curl_setopt($curl, CURLOPT_POST, true);
  113. curl_setopt($curl, CURLOPT_POSTFIELDS, $curlPost);
  114. $return_str = curl_exec($curl);
  115. curl_close($curl);
  116. return $return_str;
  117. }
  118. function xml_to_array($xml){
  119. $reg = "/<(\w+)[^>]*>([\\x00-\\xFF]*)<\\/\\1>/";
  120. if(preg_match_all($reg, $xml, $matches)){
  121. $count = count($matches[0]);
  122. for($i = 0; $i < $count; $i++){
  123. $subxml= $matches[2][$i];
  124. $key = $matches[1][$i];
  125. if(preg_match( $reg, $subxml )){
  126. $arr[$key] = xml_to_array( $subxml );
  127. }else{
  128. $arr[$key] = $subxml;
  129. }
  130. }
  131. }
  132. return $arr;
  133. }
  134. /* 发送验证码 -- 阿里云 */
  135. function sendCode($country_code,$mobile,$code){
  136. $rs = array('code' => 0, 'msg' => '', 'info' => array());
  137. $config = getConfigPri();
  138. if(!$config['sendcode_switch']){
  139. $rs['code']=667;
  140. $rs['msg']='123456';
  141. return $rs;
  142. }
  143. $rs=sendCodeByAli($country_code,$mobile,$code);
  144. return $rs;
  145. }
  146. //阿里云短信
  147. function sendCodeByAli($country_code,$mobile,$code){
  148. $rs = array('code' => 0, 'msg' => '', 'info' => array());
  149. $configpri = getConfigPri();
  150. //判断是否是国外
  151. $aly_sendcode_type=$configpri['aly_sendcode_type'];
  152. if($aly_sendcode_type==1 && $country_code!=86){ //国内
  153. $rs['code']=1002;
  154. $rs['msg']="平台短信仅支持中国大陆地区";
  155. return $rs;
  156. }
  157. if($aly_sendcode_type==2 && $country_code==86){
  158. $rs['code']=1002;
  159. $rs['msg']='平台短信仅支持国际/港澳台地区';
  160. return $rs;
  161. }
  162. require_once API_ROOT.'/../sdk/aliyunsms/AliSmsApi.php';
  163. $config_dl = array(
  164. 'accessKeyId' => $configpri['aly_keyid'],
  165. 'accessKeySecret' => $configpri['aly_secret'],
  166. 'PhoneNumbers' => $mobile,
  167. 'SignName' => $configpri['aly_signName'], //国内短信签名
  168. 'TemplateCode' => $configpri['aly_templateCode'], //国内短信模板ID
  169. 'TemplateParam' => array("code"=>$code)
  170. );
  171. $config_hw = array(
  172. 'accessKeyId' => $configpri['aly_keyid'],
  173. 'accessKeySecret' => $configpri['aly_secret'],
  174. 'PhoneNumbers' => $country_code.$mobile,
  175. 'SignName' => $configpri['aly_hw_signName'], //港澳台/国外短信签名
  176. 'TemplateCode' => $configpri['aly_hw_templateCode'], //港澳台/国外短信模板ID
  177. 'TemplateParam' => array("code"=>$code)
  178. );
  179. if($aly_sendcode_type==1){ //国内
  180. $config=$config_dl;
  181. }else if($aly_sendcode_type==2){ //国际/港澳台地区
  182. $config=$config_hw;
  183. }else{
  184. if($country_code==86){
  185. $config=$config_dl;
  186. }else{
  187. $config=$config_hw;
  188. }
  189. }
  190. $go = new \AliSmsApi($config);
  191. $result = $go->send_sms();
  192. file_put_contents(API_ROOT.'/../log/sendCode_aly_'.date('Y-m-d').'.txt',date('Y-m-d H:i:s').' 提交参数信息 result:'.json_encode($result)."\r\n",FILE_APPEND);
  193. if($result == NULL ) {
  194. $rs['code']=1002;
  195. $rs['msg']="发送失败";
  196. return $rs;
  197. }
  198. if($result['Code']!='OK') {
  199. //TODO 添加错误处理逻辑
  200. $rs['code']=1002;
  201. $rs['msg']="获取失败";
  202. return $rs;
  203. }
  204. return $rs;
  205. }
  206. /* 检测文件后缀 */
  207. function checkExt($filename){
  208. $config=array("jpg","png","jpeg");
  209. $ext = pathinfo(strip_tags($filename), PATHINFO_EXTENSION);
  210. return empty($config) ? true : in_array(strtolower($ext), $config);
  211. }
  212. /* 密码检查 */
  213. function passcheck($user_pass) {
  214. $num = preg_match("/^[a-zA-Z]+$/",$user_pass);
  215. $word = preg_match("/^[0-9]+$/",$user_pass);
  216. $check = preg_match("/^[a-zA-Z0-9]{6,12}$/",$user_pass);
  217. if($num || $word ){
  218. return 2;
  219. }else if(!$check){
  220. return 0;
  221. }
  222. return 1;
  223. }
  224. /* 密码加密 */
  225. function setPass($pass){
  226. $authcode='rCt52pF2cnnKNB3Hkp';
  227. $pass="###".md5(md5($authcode.$pass));
  228. return $pass;
  229. }
  230. /* 公共配置 */
  231. function getConfigPub() {
  232. $key='getConfigPub';
  233. $config=getcaches($key);
  234. if(!$config){
  235. $config= DI()->notorm->option
  236. ->select('option_value')
  237. ->where("option_name='site_info'")
  238. ->fetchOne();
  239. $config=json_decode($config['option_value'],true);
  240. setcaches($key,$config);
  241. }
  242. if(is_array($config['login_type'])){
  243. }else if($config['login_type']){
  244. $config['login_type']=preg_split('/,|,/',$config['login_type']);
  245. }else{
  246. $config['login_type']=array();
  247. }
  248. if(is_array($config['share_type'])){
  249. }else if($config['share_type']){
  250. $config['share_type']=preg_split('/,|,/',$config['share_type']);
  251. }else{
  252. $config['share_type']=array();
  253. }
  254. $config['watermark']=get_upload_path($config['watermark']);
  255. return $config;
  256. }
  257. /* 私密配置 */
  258. function getConfigPri() {
  259. $key='getConfigPri';
  260. $config=getcaches($key);
  261. if(!$config){
  262. $config= DI()->notorm->option
  263. ->select('option_value')
  264. ->where("option_name='configpri'")
  265. ->fetchOne();
  266. $config=json_decode($config['option_value'],true);
  267. setcaches($key,$config);
  268. }
  269. return $config;
  270. }
  271. /**
  272. * 返回带协议的域名
  273. */
  274. function get_host(){
  275. $config=getConfigPub();
  276. return $config['site'];
  277. }
  278. /**
  279. * 转化数据库保存的文件路径,为可以访问的url cloudtype:云存储方式 0 本地 1 七牛云 2 腾讯云
  280. */
  281. function get_upload_path($file){
  282. if($file==''){
  283. return $file;
  284. }
  285. $configpri=getConfigPri();
  286. if(strpos($file,"http")===0){
  287. //将字符串分隔
  288. $file_arr=explode('%@%cloudtype=',$file);
  289. $cloudtype=$file_arr['1'];
  290. $file=$file_arr['0'];
  291. if(!isset($cloudtype)){
  292. return html_entity_decode($file);
  293. }
  294. if(strpos($file,"http")===0){
  295. return html_entity_decode($file_arr['0']);
  296. }else if($cloudtype==1){ //存储方式为七牛
  297. return html_entity_decode($file);
  298. }else {
  299. return html_entity_decode($file);
  300. }
  301. }else if(strpos($file,"/")===0){
  302. $filepath= get_host().$file;
  303. return html_entity_decode($filepath);
  304. }else{
  305. //$space_host= DI()->config->get('app.Qiniu.space_host');
  306. //$filepath=$space_host."/".$file;
  307. //将字符串分隔
  308. $file_arr=explode('%@%cloudtype=',$file);
  309. $cloudtype=$file_arr['1'];
  310. $file=$file_arr['0'];
  311. if($cloudtype==1){ //七牛存储
  312. $space_host=$configpri['qiniu_protocol']."://".$configpri['qiniu_domain']."/";
  313. }else{
  314. $space_host="http://";
  315. }
  316. $filepath=$space_host.$file;
  317. if(!isset($cloudtype)){
  318. return html_entity_decode($filepath);
  319. }
  320. if($cloudtype==2 && $configpri['tx_private_signature']){ //腾讯云存储 且 需要签名验证
  321. return setTxUrl(html_entity_decode($filepath)); //腾讯云存储为私有读写时需要调用该方法获取签名验证
  322. }else{
  323. return html_entity_decode($filepath);
  324. }
  325. }
  326. }
  327. /* 判断是否关注 */
  328. function isAttention($uid,$touid) {
  329. if($touid==0){ //系统管理员直接返回1,不让用户关注系统管理员
  330. return "1";
  331. }
  332. if($uid<0||$touid<0){
  333. return "0";
  334. }
  335. $isexist=DI()->notorm->user_attention
  336. ->select("*")
  337. ->where('uid=? and touid=?',$uid,$touid)
  338. ->fetchOne();
  339. if($isexist){
  340. return '1';
  341. }else{
  342. return '0';
  343. }
  344. }
  345. /* 判断token */
  346. function checkToken($uid,$token) {
  347. //判断用户是否存在
  348. $is_exist=checkUserIsExist($uid);
  349. if(!$is_exist){
  350. return 700;
  351. }
  352. $userinfo=getcaches("token_".$uid);
  353. if(!$userinfo){
  354. $userinfo=DI()->notorm->user_token
  355. ->select('token,expire_time')
  356. ->where('user_id = ? ', $uid)
  357. ->fetchOne();
  358. setcaches("token_".$uid,$userinfo);
  359. }
  360. if($userinfo['token']!=$token || $userinfo['expire_time']<time()){
  361. return 700;
  362. }
  363. $isBlackUser=isBlackUser($uid);
  364. if($isBlackUser==0){
  365. return 10020;//账号被禁用
  366. }
  367. return 0;
  368. }
  369. /* 用户基本信息 */
  370. function getUserInfo($uid,$tree='') {
  371. $info=getCache("userinfo_".$uid);
  372. $info=false;
  373. if(!$info){
  374. $info=DI()->notorm->user
  375. ->select('id,user_nicename,avatar,avatar_thumb,sex,signature,province,city,area,birthday,age,user_status,bg_img')
  376. ->where('id=? and user_type="2"',$uid)
  377. ->fetchOne();
  378. if($info){
  379. if($info['age']<0){
  380. $info['age']="年龄未填写";
  381. }else{
  382. $info['age'].="岁";
  383. }
  384. if($info['city']==""){
  385. $info['city']="城市未填写";
  386. }
  387. if($info['user_status']==3){ //账号已注销
  388. $info['praise']='0';
  389. $info['fans']='0';
  390. $info['follows']='0';
  391. $info['workVideos']='0';
  392. $info['likeVideos']='0';
  393. }else{
  394. $info['praise']=getPraises($uid);
  395. $info['fans']=getFans($uid);
  396. $info['follows']=getFollows($uid);
  397. $info['workVideos']=getWorks($uid);
  398. $info['likeVideos']=getLikes($uid);
  399. }
  400. $info['avatar']=get_upload_path($info['avatar']);
  401. $info['avatar_thumb']=get_upload_path($info['avatar_thumb']);
  402. $info['hometown']=$info['province'].$info['city'].$info['area'];
  403. $info['bg_img']=get_upload_path($info['bg_img']);
  404. }else{
  405. $info['user_nicename']='用户';
  406. $info['avatar']=get_upload_path('/default.png');
  407. $info['avatar_thumb']=get_upload_path('/default_thumb.png');
  408. $info['sex']='0';
  409. $info['signature']='这家伙很懒,什么都没留下';
  410. $info['province']='省份未填写';
  411. $info['city']='城市未填写';
  412. $info['birthday']='';
  413. $info['age']="年龄未填写";
  414. $info['praise']='0';
  415. $info['fans']='0';
  416. $info['follows']='0';
  417. $info['workVideos']='0';
  418. $info['likeVideos']='0';
  419. $info['hometown']="";
  420. $info['hometown']="1";
  421. $info['bg_img']=$info['avatar'];
  422. }
  423. }
  424. if($tree){
  425. $info['user_nicename']=eachReplaceSensitiveWords($tree,$info['user_nicename']); //用户昵称过滤敏感词
  426. $info['signature']=eachReplaceSensitiveWords($tree,$info['signature']); //个性签名过滤敏感词
  427. }else{
  428. $info['user_nicename']=ReplaceSensitiveWords($info['user_nicename']); //用户昵称过滤敏感词
  429. $info['signature']=ReplaceSensitiveWords($info['signature']); //个性签名过滤敏感词
  430. }
  431. return $info;
  432. }
  433. /* 统计 关注 */
  434. function getFollows($uid) {
  435. $count=DI()->notorm->user_attention
  436. ->where('uid=? and touid>0 ',$uid) //关注系统管理员不显示
  437. ->count();
  438. return $count;
  439. }
  440. /* 统计 个人作品数 */
  441. function getWorks($uid) {
  442. $count=DI()->notorm->user_video
  443. ->where('uid=? and isdel=0 and status=1',$uid)
  444. ->count();
  445. return $count;
  446. }
  447. /* 统计 个人喜欢其他人的作品数 */
  448. function getLikes($uid) {
  449. $count=DI()->notorm->user_video_like
  450. ->where('uid=? and status=1',$uid) //status=1表示视频状态正常,未被二次拒绝或被下架
  451. ->count();
  452. return $count;
  453. }
  454. /* 统计 粉丝 */
  455. function getFans($uid) {
  456. $count=DI()->notorm->user_attention
  457. ->where('touid=? ',$uid)
  458. ->count();
  459. return $count;
  460. }
  461. /**
  462. * @desc 根据两点间的经纬度计算距离
  463. * @param float $lat 纬度值
  464. * @param float $lng 经度值
  465. */
  466. function getDistance($lat1, $lng1, $lat2, $lng2){
  467. $earthRadius = 6371000; //近似地球半径 单位 米
  468. /*
  469. Convert these degrees to radians
  470. to work with the formula
  471. */
  472. $lat1 = ($lat1 * pi() ) / 180;
  473. $lng1 = ($lng1 * pi() ) / 180;
  474. $lat2 = ($lat2 * pi() ) / 180;
  475. $lng2 = ($lng2 * pi() ) / 180;
  476. $calcLongitude = $lng2 - $lng1;
  477. $calcLatitude = $lat2 - $lat1;
  478. $stepOne = pow(sin($calcLatitude / 2), 2) + cos($lat1) * cos($lat2) * pow(sin($calcLongitude / 2), 2); $stepTwo = 2 * asin(min(1, sqrt($stepOne)));
  479. $calculatedDistance = $earthRadius * $stepTwo;
  480. $distance=$calculatedDistance/1000;
  481. if($distance<10){
  482. $rs=round($distance,2);
  483. }else if($distance > 1000){
  484. $rs='>1000';
  485. }else{
  486. $rs=round($distance);
  487. }
  488. return $rs.'km';
  489. }
  490. /* 判断账号是否禁用 */
  491. function isBan($uid){
  492. $status=DI()->notorm->user
  493. ->select("user_status")
  494. ->where('id=?',$uid)
  495. ->fetchOne();
  496. if(!$status || $status['user_status']==0){
  497. return 0;
  498. }
  499. return 1;
  500. }
  501. /* 是否认证 */
  502. function isAuth($uid){
  503. $status=DI()->notorm->user_auth
  504. ->select("status")
  505. ->where('uid=?',$uid)
  506. ->fetchOne();
  507. if($status && $status['status']==1){
  508. return 1;
  509. }
  510. return 0;
  511. }
  512. /* 过滤字符 */
  513. function filterField($field){
  514. $configpri=getConfigPri();
  515. $sensitive_field=$configpri['sensitive_field'];
  516. $sensitive=explode(",",$sensitive_field);
  517. $replace=array();
  518. $preg=array();
  519. foreach($sensitive as $k=>$v){
  520. if($v){
  521. $re='';
  522. $num=mb_strlen($v);
  523. for($i=0;$i<$num;$i++){
  524. $re.='*';
  525. }
  526. $replace[$k]=$re;
  527. $preg[$k]='/'.$v.'/';
  528. }else{
  529. unset($sensitive[$k]);
  530. }
  531. }
  532. return preg_replace($preg,$replace,$field);
  533. }
  534. /* 时间差计算 */
  535. function datetime($time){
  536. $cha=time()-$time;
  537. $iz=floor($cha/60);
  538. $hz=floor($iz/60);
  539. $dz=floor($hz/24);
  540. /* 秒 */
  541. $s=$cha%60;
  542. /* 分 */
  543. $i=floor($iz%60);
  544. /* 时 */
  545. $h=floor($hz/24);
  546. /* 天 */
  547. if($cha<60){
  548. return $cha.'秒前';
  549. }else if($iz<60){
  550. return $iz.'分钟前';
  551. }else if($hz<24){
  552. return $hz.'小时前';
  553. }else if($dz<30){
  554. return $dz.'天前';
  555. }else{
  556. return date("Y-m-d",$time);
  557. }
  558. }
  559. /* 时长格式化 */
  560. function getSeconds($time,$type=0){
  561. if(!$time){
  562. return (string)$time;
  563. }
  564. $value = array(
  565. "years" => 0,
  566. "days" => 0,
  567. "hours" => 0,
  568. "minutes" => 0,
  569. "seconds" => 0
  570. );
  571. if($time >= 31556926){
  572. $value["years"] = floor($time/31556926);
  573. $time = ($time%31556926);
  574. }
  575. if($time >= 86400){
  576. $value["days"] = floor($time/86400);
  577. $time = ($time%86400);
  578. }
  579. if($time >= 3600){
  580. $value["hours"] = floor($time/3600);
  581. $time = ($time%3600);
  582. }
  583. if($time >= 60){
  584. $value["minutes"] = floor($time/60);
  585. $time = ($time%60);
  586. }
  587. $value["seconds"] = floor($time);
  588. if($value['years']){
  589. if($type==1&&$value['years']<10){
  590. $value['years']='0'.$value['years'];
  591. }
  592. }
  593. if($value['days']){
  594. if($type==1&&$value['days']<10){
  595. $value['days']='0'.$value['days'];
  596. }
  597. }
  598. if($value['hours']){
  599. if($type==1&&$value['hours']<10){
  600. $value['hours']='0'.$value['hours'];
  601. }
  602. }
  603. if($value['minutes']){
  604. if($type==1&&$value['minutes']<10){
  605. $value['minutes']='0'.$value['minutes'];
  606. }
  607. }
  608. if($value['seconds']){
  609. if($type==1&&$value['seconds']<10){
  610. $value['seconds']='0'.$value['seconds'];
  611. }
  612. }
  613. if($value['years']){
  614. $t=$value["years"] ."年".$value["days"] ."天". $value["hours"] ."小时". $value["minutes"] ."分".$value["seconds"]."秒";
  615. }else if($value['days']){
  616. $t=$value["days"] ."天". $value["hours"] ."小时". $value["minutes"] ."分".$value["seconds"]."秒";
  617. }else if($value['hours']){
  618. $t=$value["hours"] ."小时". $value["minutes"] ."分".$value["seconds"]."秒";
  619. }else if($value['minutes']){
  620. $t=$value["minutes"] ."分".$value["seconds"]."秒";
  621. }else if($value['seconds']){
  622. $t=$value["seconds"]."秒";
  623. }
  624. return $t;
  625. }
  626. /* 数字格式化 */
  627. function NumberFormat($num){
  628. if($num<10000){
  629. }else if($num<1000000){
  630. $num=round($num/10000,2).'w';
  631. }else if($num<100000000){
  632. $num=round($num/10000,1).'w';
  633. }else if($num<10000000000){
  634. $num=round($num/100000000,2).'y';
  635. }else{
  636. $num=round($num/100000000,1).'y';
  637. }
  638. return $num;
  639. }
  640. /* ip限定 */
  641. function ip_limit(){
  642. $configpri=getConfigPri();
  643. if($configpri['iplimit_switch']==0){
  644. return 0;
  645. }
  646. $date = date("Ymd");
  647. $ip= ip2long($_SERVER["REMOTE_ADDR"]) ;
  648. $isexist=DI()->notorm->getcode_limit_ip
  649. ->select('ip,date,times')
  650. ->where(' ip=? ',$ip)
  651. ->fetchOne();
  652. if(!$isexist){
  653. $data=array(
  654. "ip" => $ip,
  655. "date" => $date,
  656. "times" => 1,
  657. );
  658. $isexist=DI()->notorm->getcode_limit_ip->insert($data);
  659. return 0;
  660. }elseif($date == $isexist['date'] && $isexist['times'] >= $configpri['iplimit_times'] ){
  661. return 1;
  662. }else{
  663. if($date == $isexist['date']){
  664. $isexist=DI()->notorm->getcode_limit_ip
  665. ->where(' ip=? ',$ip)
  666. ->update(array('times'=> new NotORM_Literal("times + 1 ")));
  667. return 0;
  668. }else{
  669. $isexist=DI()->notorm->getcode_limit_ip
  670. ->where(' ip=? ',$ip)
  671. ->update(array('date'=> $date ,'times'=>1));
  672. return 0;
  673. }
  674. }
  675. }
  676. //账号是否禁用
  677. function isBlackUser($uid){
  678. $userinfo=DI()->notorm->user->where("id=".$uid." and user_status=0")->fetchOne();
  679. if($userinfo){
  680. return 0;//禁用
  681. }
  682. return 1;//启用
  683. }
  684. /*检测手机号是否存在*/
  685. function checkMoblieIsExist($mobile){
  686. $res=DI()->notorm->user->select("id,user_nicename,user_type")->where("mobile='{$mobile}'")->fetchOne();
  687. if($res){
  688. //判断账号是否被禁用
  689. if($res['user_status']==0){
  690. return 0;
  691. }else{
  692. return 1;
  693. }
  694. }else{
  695. return 0;
  696. }
  697. }
  698. /*检测手机号是否可以发送验证码*/
  699. function checkMoblieCanCode($mobile){
  700. $res=DI()->notorm->user->select("id,user_nicename,user_type,user_status")->where("mobile='{$mobile}'")->fetchOne();
  701. if($res){
  702. //判断账号是否被禁用
  703. if($res['user_status']==0){
  704. return 0;
  705. }else{
  706. return 1;
  707. }
  708. }else{
  709. return 1;
  710. }
  711. }
  712. /*获取用户的视频点赞总数*/
  713. function getPraises($uid){
  714. $res=DI()->notorm->user_video->where("uid=?",$uid)->sum("likes");
  715. if(!$res){
  716. $res="0";
  717. }
  718. return $res;
  719. }
  720. /*获取音乐信息*/
  721. function getMusicInfo($user_nicename,$musicid){
  722. $res=DI()->notorm->user_music->select("id,title,author,img_url,length,file_url,use_nums")->where("id=?",$musicid)->fetchOne();
  723. if(!$res){
  724. $res=array();
  725. $res['id']='0';
  726. $res['title']='';
  727. $res['author']='';
  728. $res['img_url']='';
  729. $res['length']='00:00';
  730. $res['file_url']='';
  731. $res['use_nums']='0';
  732. $res['music_format']='@'.$user_nicename.'创作的原声';
  733. }else{
  734. $res['music_format']=$res['title'].'--'.$res['anchor'];
  735. $res['img_url']=get_upload_path($res['img_url']);
  736. $res['file_url']=get_upload_path($res['file_url']);
  737. }
  738. return $res;
  739. }
  740. /*距离格式化*/
  741. function distanceFormat($distance){
  742. if($distance<1000){
  743. return $distance.'米';
  744. }else{
  745. if(floor($distance/10)<10){
  746. return number_format($distance/10,1); //保留一位小数,会四舍五入
  747. }else{
  748. return ">10千米";
  749. }
  750. }
  751. }
  752. /* 视频是否点赞 */
  753. function ifLike($uid,$videoid){
  754. $like=DI()->notorm->user_video_like
  755. ->select("id")
  756. ->where("uid='{$uid}' and videoid='{$videoid}'")
  757. ->fetchOne();
  758. if($like){
  759. return 1;
  760. }else{
  761. return 0;
  762. }
  763. }
  764. /* 校验签名 */
  765. function checkSign($data,$sign){
  766. //return 1;
  767. if($sign==''){
  768. return 0;
  769. }
  770. $key=DI()->config->get('app.sign_key');
  771. $str='';
  772. ksort($data);
  773. foreach($data as $k=>$v){
  774. $str.=$k.'='.$v.'&';
  775. }
  776. $str.=$key;
  777. $newsign=md5($str);
  778. if($sign==$newsign){
  779. return 1;
  780. }
  781. return 0;
  782. }
  783. /* 视频数据处理 */
  784. function handleVideo($uid,$v,$tree){
  785. $userinfo=getUserInfo($v['uid'],$tree);
  786. if(!$userinfo){
  787. $userinfo['user_nicename']="已删除";
  788. }
  789. if($v['title']){
  790. $v['title']=eachReplaceSensitiveWords($tree,$v['title']);
  791. }
  792. //防止uid为0时因为找不到用户信息而出现头像昵称为null的问题
  793. $v['user_nicename']=$userinfo['user_nicename'];
  794. $v['avatar']=$userinfo['avatar'];
  795. $v['userinfo']=$userinfo;
  796. $v['datetime']=datetime($v['addtime']);
  797. $v['addtime_format']=$v['addtime'];
  798. $v['addtime']=date('Y-m-d H:i:s',$v['addtime']);
  799. $v['comments']=NumberFormat($v['comments']);
  800. $v['likes']=NumberFormat($v['likes']);
  801. $v['steps']=NumberFormat($v['steps']);
  802. $v['shares']=NumberFormat($v['shares']);
  803. $v['islike']='0';
  804. $v['isattent']='0';
  805. if($uid>0){
  806. $v['islike']=(string)ifLike($uid,$v['id']);
  807. }
  808. if($uid>0 && $uid!=$v['uid']){
  809. $v['isattent']=(string)isAttention($uid,$v['uid']);
  810. }
  811. $v['musicinfo']=getMusicInfo($userinfo['user_nicename'],$v['music_id']);
  812. $v['thumb']=get_upload_path($v['thumb']);
  813. $v['thumb_s']=get_upload_path($v['thumb_s']);
  814. // $v['href']=encryption(get_upload_path($v['href']));
  815. // $v['href_w']=encryption(get_upload_path($v['href_w']));
  816. unset($v['orderno']);
  817. unset($v['isdel']);
  818. unset($v['show_val']);
  819. return $v;
  820. }
  821. function encryption($code){
  822. $str = 'HmTPvkJ3otK5gp.COdrAi:q09Z62ash-QGn8V;FNIlbfM/D74Wj&S_E=UzYuw?1ecxXyLRB';
  823. $strl=strlen($str);
  824. $len = strlen($code);
  825. $newCode = '';
  826. for($i=0;$i<$len;$i++){
  827. for($j=0;$j<$strl;$j++){
  828. if($str[$j]==$code[$i]){
  829. if(($j+1)==$strl){
  830. $newCode.=$str[0];
  831. }else{
  832. $newCode.=$str[$j+1];
  833. }
  834. }
  835. }
  836. }
  837. return $newCode;
  838. }
  839. //过滤关键词基础方法
  840. function trieTreeBasic(){
  841. require_once API_ROOT.'/public/TrieTree/TrieTree.php';
  842. //创建树
  843. $tree = new AbelZhou\Tree\TrieTree();
  844. $configpri=getConfigPri();
  845. $newKeywords=$configpri['sensitive_words'];
  846. $newKeywords=explode(",",$newKeywords);
  847. //向树上挂载敏感词
  848. foreach ($newKeywords as $keyword){
  849. $tree->append($keyword);
  850. }
  851. return $tree;
  852. }
  853. //检测是否存在敏感词
  854. function checkSensitiveWords($str){
  855. if(!$str){
  856. return 0;
  857. }
  858. $configpri=getConfigPri();
  859. $newKeywords=$configpri['sensitive_words'];
  860. if(!$newKeywords){
  861. return 0;
  862. }
  863. $tree=trieTreeBasic();
  864. $res = $tree->search($str);
  865. if(!$res){
  866. return 0;
  867. }
  868. return 1;
  869. }
  870. //单条信息敏感词替换
  871. function ReplaceSensitiveWords($str){
  872. if(!$str){
  873. return "";
  874. }
  875. $configpri=getConfigPri();
  876. $newKeywords=$configpri['sensitive_words'];
  877. if(!$newKeywords){
  878. return $str;
  879. }
  880. $tree=trieTreeBasic();
  881. $res = $tree->search($str);
  882. if(!$res){
  883. return $str;
  884. }
  885. foreach ($res as $k => $v) {
  886. $len=mb_strlen($v['word']);
  887. $replace="";
  888. for ($i=0; $i <$len ; $i++) {
  889. $replace.="*";
  890. }
  891. $str=str_replace($v['word'],$replace,$str);
  892. }
  893. return $str;
  894. }
  895. //多条信息敏感词过滤【调用处需结合trieTreeBasic函数一起使用】
  896. function eachReplaceSensitiveWords($tree,$str){
  897. $res = $tree->search($str);
  898. if(!$res){
  899. return $str;
  900. }
  901. foreach ($res as $k => $v) {
  902. $len=mb_strlen($v['word']);
  903. $replace=str_repeat("*",$len);
  904. $str=str_replace($v['word'],$replace,$str);
  905. }
  906. return $str;
  907. }
  908. //判断用户是否存在
  909. function checkUserIsExist($uid){
  910. $info=DI()->notorm->user->select("user_login")->where("id=? and user_type=2",$uid)->fetchOne();
  911. if(!$info){
  912. return 0;
  913. }
  914. return 1;
  915. }
  916. //为文件拼接存储方式,方便get_upload_path做签名处理
  917. function setCloudType($url){
  918. if(!$url){
  919. return $url;
  920. }
  921. $configpri=getConfigPri();
  922. $cloudtype=$configpri['cloudtype'];
  923. $url=$url."%@%cloudtype=".$cloudtype;
  924. return $url;
  925. }
  926. /**
  927. * 判断是否为合法的身份证号码
  928. * @param $mobile
  929. * @return int
  930. */
  931. function isCreditNo($vStr){
  932. return true;
  933. $vCity = array(
  934. '11','12','13','14','15','21','22',
  935. '23','31','32','33','34','35','36',
  936. '37','41','42','43','44','45','46',
  937. '50','51','52','53','54','61','62',
  938. '63','64','65','71','81','82','91'
  939. );
  940. if (!preg_match('/^([\d]{17}[xX\d]|[\d]{15})$/', $vStr)){
  941. return false;
  942. }
  943. if (!in_array(substr($vStr, 0, 2), $vCity)){
  944. return false;
  945. }
  946. $vStr = preg_replace('/[xX]$/i', 'a', $vStr);
  947. $vLength = strlen($vStr);
  948. if($vLength == 18){
  949. $vBirthday = substr($vStr, 6, 4) . '-' . substr($vStr, 10, 2) . '-' . substr($vStr, 12, 2);
  950. }else{
  951. $vBirthday = '19' . substr($vStr, 6, 2) . '-' . substr($vStr, 8, 2) . '-' . substr($vStr, 10, 2);
  952. }
  953. if(date('Y-m-d', strtotime($vBirthday)) != $vBirthday){
  954. return false;
  955. }
  956. if ($vLength == 18) {
  957. $vSum = 0;
  958. for ($i = 17 ; $i >= 0 ; $i--) {
  959. $vSubStr = substr($vStr, 17 - $i, 1);
  960. $vSum += (pow(2, $i) % 11) * (($vSubStr == 'a') ? 10 : intval($vSubStr , 11));
  961. }
  962. if($vSum % 11 != 1){
  963. return false;
  964. }
  965. }
  966. return true;
  967. }
  968. /* 时长格式化 */
  969. function secondsFormat($time){
  970. $now=time();
  971. $cha=$now-$time;
  972. if($cha<60){
  973. return '刚刚';
  974. }
  975. if($cha>=4*24*60*60){ //超过4天
  976. $now_year=date('Y',$now);
  977. $time_year=date('Y',$time);
  978. if($now_year==$time_year){
  979. return date("m月d日",$time);
  980. }else{
  981. return date("Y年m月d日",$time);
  982. }
  983. }else{
  984. $iz=floor($cha/60);
  985. $hz=floor($iz/60);
  986. $dz=floor($hz/24);
  987. if($dz>3){
  988. return '3天前';
  989. }else if($dz>2){
  990. return '2天前';
  991. }else if($dz>1){
  992. return '1天前';
  993. }
  994. if($hz>1){
  995. return $hz.'小时前';
  996. }
  997. return $iz.'分钟前';
  998. }
  999. }
  1000. //检测注册
  1001. function checkRegIpLimit($mobileid,$ip){
  1002. $configpri=getConfigPri();
  1003. $same_device_ip_regnums=$configpri['same_device_ip_regnums'];
  1004. if(!$same_device_ip_regnums){
  1005. return 0;
  1006. }
  1007. //获取同一设备 同一ip下的总注册量
  1008. $count=DI()->notorm->user->where("mobileid='{$mobileid}' and ip=?",$ip)->count();
  1009. if($count<$same_device_ip_regnums){
  1010. return 0;
  1011. }
  1012. return 1;
  1013. }
  1014. /* 检测用户是否存在 */
  1015. function checkUser($where){
  1016. if($where==''){
  1017. return 0;
  1018. }
  1019. $isexist=DI()->notorm->user->where($where)->fetchOne();
  1020. if($isexist){
  1021. return 1;
  1022. }
  1023. return 0;
  1024. }