common.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <?php
  2. // 接口公共方法
  3. use think\Db;
  4. use JPush\Client;
  5. require_once env('root_path').'vendor/jpush/jpush/autoload.php';
  6. function Jpush($user_id = 0,$alert = '',$module='',$type='',$rel_id=''){
  7. $appKey = '02a7faefd91c8a6a446a6a14';
  8. $masterSecret = 'ba2e100db997024d9b6e5d35';
  9. $client = new Client($appKey, $masterSecret,null);
  10. $push_payload = $client->push()
  11. ->setPlatform(array('ios', 'android'))
  12. ->addAlias(strval($user_id))
  13. ->iosNotification($alert, array(
  14. 'badge' => '+1',
  15. 'content-available' => true,
  16. 'mutable-content' => true,
  17. 'category' => 'jiguang',
  18. 'extras' => array(
  19. 'key' => 'value',
  20. 'module' => $module,
  21. 'type' => $type,
  22. 'rel_id' => $rel_id,
  23. ),
  24. ))->androidNotification($alert, array(
  25. 'title' => '消息通知',
  26. // 'builder_id' => 2,
  27. 'extras' => array(
  28. 'module' => $module,
  29. 'type' => $type,
  30. 'rel_id' => $rel_id,
  31. ),
  32. ))->options(array(
  33. 'apns_production' => true,// false 开发环境 ,true 生产环境
  34. ));
  35. try {
  36. $response = $push_payload->send();
  37. return $response;
  38. } catch (\JPush\Exceptions\APIConnectionException $e) {
  39. return $e;
  40. } catch (\JPush\Exceptions\APIRequestException $e) {
  41. return $e;
  42. }
  43. }
  44. function get_order_sn(){
  45. $order_id_main = date('YmdHis') . rand(10000000,99999999);
  46. $order_id_len = strlen($order_id_main);
  47. $order_id_sum = 0;
  48. for($i=0; $i<$order_id_len; $i++){
  49. $order_id_sum += (int)(substr($order_id_main,$i,1));
  50. }
  51. $osn = $order_id_main . str_pad((100 - $order_id_sum % 100) % 100,2,'0',STR_PAD_LEFT);
  52. return $osn;
  53. }
  54. function encrypt_password($password){
  55. return password_hash($password,PASSWORD_DEFAULT);
  56. }
  57. function check_password($password,$hash)
  58. {
  59. return password_verify($password,$hash);
  60. }
  61. // 获取日历 默认最近7天
  62. function get_calendar($day = 7,$type='asc'){
  63. $data = [];
  64. $week_arr = ['日','一','二','三','四','五','六'];
  65. for($i=0;$i<$day;$i++) {
  66. $day_time = date('Y-m-d',strtotime("-$i days"));
  67. $day_title= trim(date('m月d日',strtotime("-$i days")),'0');
  68. $time_int = strtotime($day_time);
  69. $week_day =$week_arr[date('w',strtotime($day_time))];
  70. $data[] = ['day_time' => $day_time,'week_day'=>$week_day,'time_int'=>$time_int,'day_title'=>$day_title];
  71. }
  72. if($type == 'asc') array_multisort(array_column($data,'time_int'),SORT_ASC,$data);
  73. return $data;
  74. }
  75. function jg_push()
  76. {
  77. $user_id = 65 ;
  78. $alert ='aaa';
  79. if(empty($user_id)) return false;
  80. $appKey = '02a7faefd91c8a6a446a6a14';
  81. $masterSecret = 'ba2e100db997024d9b6e5d35';
  82. $client = new Client($appKey, $masterSecret,null);
  83. $push_payload = $client->push()
  84. ->setPlatform(array('ios', 'android'))
  85. ->addAlias(strval($user_id))
  86. ->iosNotification($alert, array(
  87. 'badge' => '+1',
  88. 'content-available' => true,
  89. 'mutable-content' => true,
  90. 'category' => 'jiguang',
  91. 'extras' => array(
  92. 'key' => 'value',
  93. 'jiguang'
  94. ),
  95. ))->androidNotification($alert, array(
  96. 'title' => '消息通知',
  97. // 'builder_id' => 2,
  98. 'extras' => array(
  99. 'key' => 'value',
  100. 'jiguang'
  101. ),
  102. ))->options(array(
  103. 'apns_production' => True,
  104. ));
  105. try {
  106. $response = $push_payload->send();
  107. return $response;
  108. } catch (\JPush\Exceptions\APIConnectionException $e) {
  109. return $e;
  110. } catch (\JPush\Exceptions\APIRequestException $e) {
  111. return $e;
  112. }
  113. }
  114. function numTransform($num)
  115. {
  116. $cal = 10000;
  117. $num = intval($num);
  118. if($num < $cal) return strval($num);
  119. $cal_num = bcdiv($num,$cal,1);
  120. return $cal_num.'w+';
  121. }
  122. function timeTransform($time)
  123. {
  124. $time_tmp = strtotime($time);
  125. $cal = time() - $time_tmp;
  126. $hour_second = 3600;
  127. if($cal < $hour_second) return bcdiv($cal,60).'分钟前';
  128. return date('m-d',$time_tmp);
  129. }