common.php 3.6 KB

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