common.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. }