ThirdDeviceApi.php 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. <?php
  2. namespace thirdapi;
  3. use think\facade\Cache;
  4. use think\facade\Db;
  5. use think\Exception;
  6. class ThirdDeviceApi
  7. {
  8. /**
  9. * 获取token
  10. */
  11. public static function getThirdTokenInfo(){
  12. return json_decode('{"token":"WSE1o5mbRXCcfgWD","expiredAt":1629710782181,"type":1,"holder":"5E18DC2D7A800000"}', true);
  13. $tokenRedis = Cache::store('redis')->handler();
  14. $tokenInfo = $tokenRedis->hget('third_token_info', 'swager');
  15. $tokenInfo = json_decode( $tokenInfo, true );
  16. if($tokenInfo && ( $tokenInfo['expiredAt'] / 1000 - time() ) > 30 ){ //存在并且过期时间距现在大于30秒
  17. return $tokenInfo;
  18. }
  19. $url = "http://rinlink-a18.beijing-cn-k8s-test.rinlink.com/token/user/app";
  20. $headers[] = "Content-Type: application/json";
  21. $postData = [
  22. 'username' => 'swager',
  23. 'password' => '123456'
  24. ];
  25. $ch = curl_init();
  26. curl_setopt($ch, CURLOPT_URL, $url);
  27. curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers );
  28. curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
  29. curl_setopt($ch, CURLOPT_POST, 1);
  30. curl_setopt( $ch, CURLOPT_POSTFIELDS,json_encode($postData) );
  31. $output = curl_exec($ch);
  32. curl_close($ch);
  33. if($output === false){
  34. self::push_log('thirdapi_token_curl_error',curl_error($ch));
  35. return false;
  36. }
  37. $tokenRes = json_decode($output, true);
  38. if($tokenRes['error'] || !$tokenRes['token']){
  39. self::pushCommonLog('thirdapi_gettoken_response_error',$tokenRes);
  40. return false;
  41. }
  42. $tokenRedis->hset('third_token_info', 'swager', $output);
  43. return $tokenRes;
  44. }
  45. /**
  46. * 注册设备到第三方
  47. */
  48. public static function registerDevice($deviceImei){
  49. $tokenInfo = self::getThirdTokenInfo();
  50. if(!$tokenInfo){
  51. return false;
  52. }
  53. $postData = [
  54. "deviceImei" => $deviceImei,
  55. "phone" => "18888888888",
  56. "userId" => $tokenInfo['holder']
  57. ];
  58. $url = "http://rinlink-a18.beijing-cn-k8s-test.rinlink.com/device";
  59. $headers[] = "Content-Type: application/json";
  60. $headers[] = "accept: */*";
  61. $headers[] = "Authorization: ". $tokenInfo['token'];
  62. $ch = curl_init();
  63. curl_setopt($ch, CURLOPT_URL, $url);
  64. curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers );
  65. curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
  66. curl_setopt($ch, CURLOPT_POST, 1);
  67. curl_setopt( $ch, CURLOPT_POSTFIELDS, json_encode($postData) );
  68. $output = curl_exec($ch);
  69. if (curl_errno($ch)) {
  70. self::pushCommonLog('thirdapi_devicelocation_curl_error',curl_error($ch));
  71. curl_close($ch);
  72. return false;
  73. }
  74. curl_close($ch);
  75. $deviceRes = json_decode($output, true) ;
  76. self::pushCommonLog('thirdapi_register_device_response_error',$deviceRes);
  77. if(array_key_exists("error",$deviceRes) || array_key_exists("code",$deviceRes)){
  78. $deviceRes['request_imei'] = $deviceImei;
  79. self::pushCommonLog('thirdapi_register_device_response_error',$deviceRes);
  80. return false;
  81. }
  82. return true;
  83. }
  84. /**
  85. * 获取但三方设备列表
  86. */
  87. public static function getDeviceList(){
  88. $tokenInfo = self::getThirdTokenInfo();
  89. if(!$tokenInfo){
  90. return false;
  91. }
  92. $headers[] = "Content-Type: application/json";
  93. $headers[] = "Authorization: ". $tokenInfo['token'];
  94. $url = 'http://rinlink-a18.beijing-cn-k8s-test.rinlink.com/device?userId=' . $tokenInfo['holder'];
  95. $ch = curl_init($url);
  96. curl_setopt($ch, CURLOPT_TIMEOUT,5);
  97. curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers );
  98. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  99. $response = curl_exec($ch);
  100. if (curl_errno($ch)) {
  101. self::pushCommonLog('thirdapi_devicelist_curl_error',curl_error($ch));
  102. curl_close($ch);
  103. return false;
  104. }
  105. curl_close($ch);
  106. return json_decode($response, true);
  107. }
  108. /**
  109. * 获取但三方设备轨迹
  110. */
  111. public static function getHistoryLocations($imei,$option = null){
  112. $tokenInfo = self::getThirdTokenInfo();
  113. if(!$tokenInfo){
  114. return false;
  115. }
  116. $pageNo = $option['pageNo'] ? : 0;
  117. $pageSize = $option['pageSize'] ? : 6000;
  118. $startTime = $option['startTime'] ? :strtotime(date('Y-m-d 00:00:00') ) * 1000;
  119. $endTime = $option['endTime'] ? : strtotime( date('Y-m-d 23:59:59')) * 1000;
  120. $positionTypes = $option['positionTypes'] ? :'1,2';
  121. $headers[] = "Content-Type: application/json";
  122. $headers[] = "Authorization: ". $tokenInfo['token'];
  123. $url = 'http://rinlink-a18.beijing-cn-k8s-test.rinlink.com/devicedata/location/filter?imei='.$imei.'&pageNo='.$pageNo.'&pageSize='.$pageSize.'&startTime='.$startTime.'&endTime='.$endTime.'&positionTypes='.$positionTypes;
  124. $ch = curl_init($url);
  125. curl_setopt($ch, CURLOPT_TIMEOUT,5);
  126. curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers );
  127. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  128. $response = curl_exec($ch);
  129. if (curl_errno($ch)) {
  130. self::pushCommonLog('thirdapi_devicelocation_curl_error',curl_error($ch));
  131. curl_close($ch);
  132. return false;
  133. }
  134. curl_close($ch);
  135. return json_decode($response, true);
  136. }
  137. /**
  138. * 删除第三方设备
  139. */
  140. public static function deleteDevice($imei){
  141. $tokenInfo = self::getThirdTokenInfo();
  142. if(!$tokenInfo){
  143. return false;
  144. }
  145. $headers[] = "Content-Type: application/json";
  146. $headers[] = "Authorization: ". $tokenInfo['token'];
  147. $url = 'http://rinlink-a18.beijing-cn-k8s-test.rinlink.com/device/'.$imei;
  148. $ch = curl_init();
  149. curl_setopt($ch, CURLOPT_URL, $url);
  150. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  151. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
  152. //设置头
  153. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); //设置请求头
  154. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);//SSL认证。
  155. $output = curl_exec($ch);
  156. if (curl_errno($ch)) {
  157. self::pushCommonLog('thirdapi_device_delete_curl_error',curl_error($ch));
  158. curl_close($ch);
  159. return false;
  160. }
  161. curl_close($ch);
  162. $response = json_decode($output, true);
  163. if(array_key_exists("error",$response) || array_key_exists("code",$response)){
  164. $response['request_imei'] = $imei;
  165. self::pushCommonLog('thirdapi_register_device_response_error',$response);
  166. return false;
  167. }
  168. return json_decode($output, true);
  169. }
  170. /**
  171. * 写入日志
  172. */
  173. public static function pushCommonLog( $filename = 'default', $msg)
  174. {
  175. if(is_array($msg)){
  176. $msg = json_encode($msg);
  177. }
  178. $file = runtime_path() . '/log/' . date("Ymd", time()) . "/".$filename."log";
  179. $folder = dirname($file);
  180. if (!is_dir($folder)) {
  181. mkdir($folder, 0777, true);
  182. }
  183. file_put_contents($file, '[' . date('Y-m-d H:i:s') . ']' . $msg . PHP_EOL, FILE_APPEND);
  184. }
  185. }