ThirdDeviceApi2.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. <?php
  2. namespace thirdapi;
  3. use think\facade\Cache;
  4. use think\facade\Db;
  5. use think\Exception;
  6. class ThirdDeviceApi2
  7. {
  8. const API_URL_PREFIX = 'http://rinlink-a18.beijing-cn-k8s-test.rinlink.com';
  9. const TOKEN_URL = '/token/user/app';
  10. private $username = 'swager';
  11. private $password = '123456';
  12. public $errCode = 40001;
  13. public $errMsg = "no access";
  14. /**
  15. * 获取token
  16. * http://rinlink-a18.beijing-cn-k8s-test.rinlink.com/token/user/app
  17. * {"token":"WSE1o5mbRXCcfgWD","expiredAt":1629710782181,"type":1,"holder":"5E18DC2D7A800000"}
  18. */
  19. private function getTokenInfo(){
  20. // 先从 redis 中取
  21. // $tokenRedis = Redis('third_token_info','hash');
  22. $localCache = null;
  23. $tokenRedis = null;
  24. $tokenInfo = null;
  25. try {
  26. $tokenRedis = Cache::store('redis')->handler();
  27. $tokenInfo = $tokenRedis->hget('third_token_info', 'swager');
  28. } catch (\Exception $e) {
  29. // $this->errMsg = $e->getMessage();
  30. // echo 'Message: ' .$e->getMessage();
  31. $tokenInfo = Cache::get('third_token_info', '');
  32. }
  33. $tokenInfo = json_decode( $tokenInfo, true );
  34. if($tokenInfo && ( $tokenInfo['expiredAt'] / 1000 - time() ) > 30 ){ //存在并且过期时间距现在大于30秒
  35. return $tokenInfo;
  36. }
  37. // 没有或过期了,调用接口获取
  38. $url = self::API_URL_PREFIX . self::TOKEN_URL;
  39. $headers[] = "Content-Type: application/json";
  40. $postData = [
  41. 'username' => $this->username,
  42. 'password' => $this->password,
  43. ];
  44. $output = $this->http_post($url, json_encode($postData), $headers);
  45. if($output === false){
  46. // $this->errMsg = '获取Token失败';
  47. return false;
  48. }
  49. $tokenRes = json_decode($output, true);
  50. $iserr = $tokenRes['error'] ?? false;
  51. $token = $tokenRes['token'] ?? '';
  52. if($iserr || !$token){
  53. // $this->errMsg = 'token 不存在';
  54. self::pushCommonLog('thirdapi_gettoken_response_error', $tokenRes);
  55. return false;
  56. }
  57. if ($tokenRedis) {
  58. $tokenRedis->hset('third_token_info', 'swager', $output);
  59. } else {
  60. Cache::set('third_token_info', $output);
  61. }
  62. return $tokenRes;
  63. }
  64. /**
  65. * 注册设备到第三方
  66. * @param $data ['deviceImei'=>'12345678','phone'=>'']
  67. */
  68. public static function registerDevice($data){
  69. $tokenInfo = (new static)->getTokenInfo();
  70. if(!$tokenInfo){
  71. return false;
  72. }
  73. $imei = self::imeiToSn($data['deviceImei']);
  74. if (!isset($imei)) {
  75. // static::$errMsg = '设备IMEI不能为空';
  76. return false;
  77. }
  78. $postData = [
  79. "deviceImei" => $imei,
  80. "phone" => $data['phone'] ?? '',
  81. "userId" => $tokenInfo['holder']
  82. ];
  83. $url = self::API_URL_PREFIX. "/device";
  84. $headers[] = "Content-Type: application/json";
  85. $headers[] = "Authorization: ". $tokenInfo['token'];
  86. $output = (new static)->http_post($url, json_encode($postData), $headers);
  87. if($output === false){
  88. // static::$errMsg = '注册设备失败';
  89. return false;
  90. }
  91. $deviceRes = json_decode($output, true) ;
  92. if(array_key_exists("error",$deviceRes) || array_key_exists("code",$deviceRes)){
  93. $response['request_imei'] = $imei;
  94. // static::$errMsg = '出错了';
  95. self::pushCommonLog('thirdapi_register_device_response_error',$deviceRes);
  96. return false;
  97. }
  98. self::pushCommonLog('thirdapi_register_device_response_success',$deviceRes);
  99. return true;
  100. }
  101. /**
  102. * 获取设备列表
  103. */
  104. public static function getDeviceList(){
  105. $tokenInfo = (new static)->getTokenInfo();
  106. if(!$tokenInfo){
  107. return false;
  108. }
  109. $headers[] = "Content-Type: application/json";
  110. $headers[] = "Authorization: ". $tokenInfo['token'];
  111. $url = self::API_URL_PREFIX. '/device?userId='.$tokenInfo['holder'];
  112. $response = (new static)->http_get($url, $headers);
  113. if (!$response) {
  114. self::pushCommonLog('thirdapi_devicelist_curl_error', $response);
  115. return false;
  116. }
  117. return json_decode($response, true);
  118. }
  119. /**
  120. * 获取第三方设备历史轨迹
  121. */
  122. public static function getHistoryLocations($imei, $option = null){
  123. /*
  124. {
  125. "page": 0,
  126. "size": 6000,
  127. "total": 8,
  128. "content": [{
  129. "collectDt": "2021-07-07 10:33:39",
  130. "receiveAt": "2021-07-07 10:33:39",
  131. "lat": "40.02577751048506",
  132. "lon": "116.35762812669113",
  133. "battery": 91,
  134. "positionType": 2,
  135. "imei": "71041607133",
  136. "isOnline": null
  137. }]
  138. }
  139. */
  140. $imei = self::imeiToSn($imei);
  141. if (!$imei) {
  142. self::pushCommonLog('thirdapi_devicelocation_curl_error', 'imei 为空');
  143. return false;
  144. }
  145. $tokenInfo = (new static)->getTokenInfo();
  146. if(!$tokenInfo){
  147. return false;
  148. }
  149. $pageNo = $option['pageNo'] ?? 0;
  150. $pageSize = $option['pageSize'] ?? 6000;
  151. $startTime = isset($option['startTime']) ? $option['startTime'] * 1000 : '';
  152. $endTime = isset($option['endTime']) ? $option['endTime'] * 1000 : '';
  153. $positionTypes = $option['positionTypes'] ?? '';
  154. $headers[] = "Content-Type: application/json";
  155. $headers[] = "Authorization: ". $tokenInfo['token'];
  156. $url = self::API_URL_PREFIX. '/devicedata/location/filter?imei='.$imei.'&pageNo='.$pageNo.'&pageSize='.$pageSize.'&startTime='.$startTime.'&endTime='.$endTime.'&positionTypes='.$positionTypes;
  157. // var_dump($url);
  158. $response = (new static)->http_get($url, $headers);
  159. if (!$response) {
  160. self::pushCommonLog('thirdapi_devicelocation_curl_error', $response);
  161. return false;
  162. }
  163. return json_decode($response, true);
  164. }
  165. /**
  166. * 获取单个设备轨迹
  167. */
  168. public static function getDeviceLocation($imei){
  169. /*
  170. {
  171. "page": 0,
  172. "size": 6000,
  173. "total": 8,
  174. "content": [{
  175. "collectDt": "2021-07-07 10:33:39",
  176. "receiveAt": "2021-07-07 10:33:39",
  177. "lat": "40.02577751048506",
  178. "lon": "116.35762812669113",
  179. "battery": 91,
  180. "positionType": 2,
  181. "imei": "71041607133",
  182. "isOnline": null
  183. }]
  184. }
  185. */
  186. if (!$imei) {
  187. self::pushCommonLog('thirdapi_devicelocation_curl_error', 'imei 为空');
  188. return false;
  189. }
  190. $tokenInfo = (new static)->getTokenInfo();
  191. if(!$tokenInfo){
  192. return false;
  193. }
  194. $headers[] = "Content-Type: application/json";
  195. $headers[] = "Authorization: ". $tokenInfo['token'];
  196. $url = self::API_URL_PREFIX. '/devicedata/location/'.$imei;
  197. // var_dump($url);
  198. $response = (new static)->http_get($url, $headers);
  199. if (!$response) {
  200. self::pushCommonLog('getDeviceLocation', $response);
  201. return false;
  202. }
  203. return json_decode($response, true);
  204. }
  205. /**
  206. * 删除第三方设备
  207. */
  208. public static function deleteDevice($imei){
  209. $tokenInfo = (new static)->getTokenInfo();
  210. if(!$tokenInfo){
  211. return false;
  212. }
  213. $headers[] = "Content-Type: application/json";
  214. $headers[] = "Authorization: ". $tokenInfo['token'];
  215. $imei = self::imeiToSn($imei);
  216. $url = self::API_URL_PREFIX.'/device/'.$imei;
  217. $output = (new static)->http_delete($url, $headers);
  218. if(!$output){
  219. return false;
  220. }
  221. $response = json_decode($output, true);
  222. if(array_key_exists("error",$response) || array_key_exists("code",$response)){
  223. $response['request_imei'] = $imei;
  224. self::pushCommonLog('thirdapi_delete_device_response_error',$response);
  225. return false;
  226. }
  227. return $response;
  228. }
  229. /**
  230. * delete 请求
  231. * @param string $url
  232. */
  233. private function http_delete($url, $headers = []){
  234. $oCurl = curl_init();
  235. if(stripos($url,"https://")!==FALSE){
  236. curl_setopt($oCurl, CURLOPT_SSL_VERIFYPEER, FALSE);
  237. curl_setopt($oCurl, CURLOPT_SSL_VERIFYHOST, FALSE);
  238. }
  239. curl_setopt($oCurl, CURLOPT_URL, $url);
  240. curl_setopt($oCurl, CURLOPT_HTTPHEADER, $headers );
  241. curl_setopt($oCurl, CURLOPT_CUSTOMREQUEST, 'DELETE');
  242. curl_setopt($oCurl, CURLOPT_RETURNTRANSFER, 1 );
  243. $sContent = curl_exec($oCurl);
  244. $aStatus = curl_getinfo($oCurl);
  245. if(intval($aStatus["http_code"])==200){
  246. curl_close($oCurl);
  247. return $sContent;
  248. }else{
  249. $this->pushCommonLog('thirdapi_token_curl_error',curl_error($oCurl));
  250. curl_close($oCurl);
  251. return false;
  252. }
  253. }
  254. /**
  255. * GET 请求
  256. * @param string $url
  257. */
  258. public function http_get($url, $headers = []){
  259. $oCurl = curl_init();
  260. if(stripos($url,"https://")!==FALSE){
  261. curl_setopt($oCurl, CURLOPT_SSL_VERIFYPEER, FALSE);
  262. curl_setopt($oCurl, CURLOPT_SSL_VERIFYHOST, FALSE);
  263. }
  264. curl_setopt($oCurl, CURLOPT_URL, $url);
  265. curl_setopt($oCurl, CURLOPT_HTTPHEADER, $headers );
  266. curl_setopt($oCurl, CURLOPT_RETURNTRANSFER, 1 );
  267. $sContent = curl_exec($oCurl);
  268. $aStatus = curl_getinfo($oCurl);
  269. if(intval($aStatus["http_code"])==200){
  270. curl_close($oCurl);
  271. return $sContent;
  272. }else{
  273. $this->pushCommonLog('thirdapi_token_curl_error',curl_error($oCurl));
  274. curl_close($oCurl);
  275. return false;
  276. }
  277. }
  278. /**
  279. * POST 请求
  280. * @param string $url
  281. * @param array $param
  282. * @return string content
  283. */
  284. public function http_post($url, $param, $headers = []){
  285. $oCurl = curl_init();
  286. if(stripos($url,"https://")!==FALSE){
  287. curl_setopt($oCurl, CURLOPT_SSL_VERIFYPEER, FALSE);
  288. curl_setopt($oCurl, CURLOPT_SSL_VERIFYHOST, false);
  289. }
  290. if (is_string($param)) {
  291. $strPOST = $param;
  292. } else {
  293. $aPOST = array();
  294. foreach($param as $key=>$val){
  295. $aPOST[] = $key."=".urlencode($val);
  296. }
  297. $strPOST = join("&", $aPOST);
  298. }
  299. curl_setopt($oCurl, CURLOPT_URL, $url);
  300. curl_setopt($oCurl, CURLOPT_RETURNTRANSFER, 1 );
  301. curl_setopt($oCurl, CURLOPT_POST,true);
  302. curl_setopt($oCurl, CURLOPT_HTTPHEADER, $headers );
  303. curl_setopt($oCurl, CURLOPT_POSTFIELDS,$strPOST);
  304. $sContent = curl_exec($oCurl);
  305. $aStatus = curl_getinfo($oCurl);
  306. if(intval($aStatus["http_code"])==200){
  307. curl_close($oCurl);
  308. return $sContent;
  309. }else{
  310. $this->pushCommonLog('thirdapi_post_error', curl_error($oCurl));
  311. curl_close($oCurl);
  312. if($sContent){
  313. $sContent .= '【RESPONSE_MSG】: '. $sContent .' || 【REQUEST_PARMS】:'.$strPOST;
  314. // static::$errMsg = '出错了';
  315. self::pushCommonLog('thirdapi_register_device_response_error',$sContent);
  316. }
  317. return false;
  318. }
  319. }
  320. /**
  321. * 写入日志
  322. */
  323. public static function pushCommonLog( $filename = 'default', $msg)
  324. {
  325. $file = runtime_path() . '/log/' . date("Ymd", time()) . "/".$filename."log";
  326. $folder = dirname($file);
  327. if (!is_dir($folder)) {
  328. mkdir($folder, 0777, true);
  329. }
  330. file_put_contents($file, '[' . date('Y-m-d H:i:s') . ']' . $msg . PHP_EOL, FILE_APPEND);
  331. }
  332. /**
  333. * IMEI 转 SN
  334. * 862571041604239 -> 71041604239
  335. */
  336. public static function imeiToSn($imei)
  337. {
  338. $imei = trim($imei);
  339. if (strlen($imei) <= 11) {
  340. return $imei;
  341. }
  342. return substr($imei, -11);
  343. }
  344. }