123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <?php
- // 接口公共方法
- use app\common\model\UserMessage;
- use think\Db;
- use JPush\Client;
- require_once env('root_path').'vendor/jpush/jpush/autoload.php';
- function Jpush($user_id = 0,$alert = ''){
- $appKey = '02a7faefd91c8a6a446a6a14';
- $masterSecret = 'ba2e100db997024d9b6e5d35';
- $client = new Client($appKey, $masterSecret,null);
- $push_payload = $client->push()
- ->setPlatform(array('ios', 'android'))
- ->addAlias(strval($user_id))
- ->iosNotification($alert, array(
- 'badge' => '+1',
- 'content-available' => true,
- 'mutable-content' => true,
- 'category' => 'jiguang',
- 'extras' => array(
- 'key' => 'value',
- 'jiguang'
- ),
- ))->androidNotification($alert, array(
- 'title' => '消息通知',
- // 'builder_id' => 2,
- 'extras' => array(
- 'key' => 'value',
- ),
- ))->options(array(
- 'apns_production' => true,// false 开发环境 ,true 生产环境
- ));
- try {
- $response = $push_payload->send();
- return $response;
- } catch (\JPush\Exceptions\APIConnectionException $e) {
- return $e;
- } catch (\JPush\Exceptions\APIRequestException $e) {
- return $e;
- }
- }
- function get_order_sn(){
- $order_id_main = date('YmdHis') . rand(10000000,99999999);
- $order_id_len = strlen($order_id_main);
- $order_id_sum = 0;
- for($i=0; $i<$order_id_len; $i++){
- $order_id_sum += (int)(substr($order_id_main,$i,1));
- }
- $osn = $order_id_main . str_pad((100 - $order_id_sum % 100) % 100,2,'0',STR_PAD_LEFT);
- return $osn;
- }
- function encrypt_password($password){
- return password_hash($password,PASSWORD_DEFAULT);
- }
- function check_password($password,$hash)
- {
- return password_verify($password,$hash);
- }
- // 获取日历 默认最近7天
- function get_calendar($day = 7,$type='asc'){
- $data = [];
- $week_arr = ['日','一','二','三','四','五','六'];
- for($i=0;$i<$day;$i++) {
- $day_time = date('Y-m-d',strtotime("-$i days"));
- $day_title= trim(date('m月d日',strtotime("-$i days")),'0');
- $time_int = strtotime($day_time);
- $week_day =$week_arr[date('w',strtotime($day_time))];
- $data[] = ['day_time' => $day_time,'week_day'=>$week_day,'time_int'=>$time_int,'day_title'=>$day_title];
- }
- if($type == 'asc') array_multisort(array_column($data,'time_int'),SORT_ASC,$data);
- return $data;
- }
- function jg_push()
- {
- $user_id = 65 ;
- $alert ='aaa';
- if(empty($user_id)) return false;
- $appKey = '02a7faefd91c8a6a446a6a14';
- $masterSecret = 'ba2e100db997024d9b6e5d35';
- $client = new Client($appKey, $masterSecret,null);
- $push_payload = $client->push()
- ->setPlatform(array('ios', 'android'))
- ->addAlias(strval($user_id))
- ->iosNotification($alert, array(
- 'badge' => '+1',
- 'content-available' => true,
- 'mutable-content' => true,
- 'category' => 'jiguang',
- 'extras' => array(
- 'key' => 'value',
- 'jiguang'
- ),
- ))->androidNotification($alert, array(
- 'title' => '消息通知',
- // 'builder_id' => 2,
- 'extras' => array(
- 'key' => 'value',
- 'jiguang'
- ),
- ))->options(array(
- 'apns_production' => True,
- ));
- try {
- $response = $push_payload->send();
- return $response;
- } catch (\JPush\Exceptions\APIConnectionException $e) {
- return $e;
- } catch (\JPush\Exceptions\APIRequestException $e) {
- return $e;
- }
- }
|