ApiAction.class.php 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888
  1. <?php
  2. class ApiAction extends Action {
  3. public function login( ){
  4. $data = I('post.data');
  5. //$data = json_decode(htmlspecialchars_decode(I('post.data')),true);
  6. if(!$data){
  7. $this->api_fail(C('FAIL'),'没有用户信息');
  8. }
  9. $cond = array(
  10. 'LicensePlate|GpsDeviceNumber|DeviceNumber'=>$data['username'],
  11. 'Password'=>$data['password']
  12. );
  13. $userinfo = M('jms_vehicle')->where($cond)->find();
  14. if(!$userinfo){
  15. $this->api_fail(C('FAIL'),'用户名或者密码不正确');
  16. }
  17. $cityid = $userinfo['CityId'];
  18. $defaultCity = M('jms_city')->where(array('ID' => $cityid))->field('CenterLng as lng, CenterLat as lat')->find();
  19. $token = md5($data['username'].I('post.loginMark').$data['password'].date('Y-m-d H:i:s'));
  20. $result = \Jiaruan\RedisCache::setSessionRules(I('post.loginMark'),$token);
  21. if($result === false){
  22. $this->api_fail(C('FAIL'),'添加redis失败');
  23. }
  24. $where = array("ID" => $userinfo['ID']);
  25. $data = array(
  26. "LoginMark" => I('post.loginMark'),
  27. "Token" => $token
  28. );
  29. $res = M('jms_vehicle')->createSave($where,$data);
  30. if(!$res){
  31. $this->api_fail(C('FAIL'),'token信息保存失败');
  32. }
  33. $baseinfo = array(
  34. "userId" => $userinfo['ID'],
  35. "enCode" => "System",
  36. "account" => $userinfo['FullName'],
  37. "password" => $userinfo['Password'],
  38. "secretkey" => '',
  39. "realName" => $userinfo['FullName'],
  40. "nickName" => $userinfo['FullName'],
  41. "headIcon" => ".jpg",
  42. "gender" => $userinfo['Sex'],
  43. "mobile" => $userinfo['UserPhone'],
  44. "telephone" => $userinfo['Telephone'],
  45. "email" => $userinfo['Email'],
  46. "oICQ" => $userinfo['QQ'],
  47. "weChat" => $userinfo['WxName'],
  48. "companyId" => "",
  49. "companyIds" => array(),
  50. "departmentId" => "",
  51. "departmentIds" => array(),
  52. "openId" => $userinfo['WxOpenId'],
  53. "roleIds" => $userinfo['RoleId'],
  54. "postIds" => "",
  55. "isSystem" => true,
  56. "appId" => "renlian_1.0.0_App",
  57. "logTime" => date('Y-m-d H:i:s'),
  58. "iPAddress" => $_SERVER['REMOTE_ADDR'],
  59. "browser" => "Safari 11.0",
  60. "loginMark" => I('post.loginMark'),
  61. "token" => $token,
  62. "imUrl" => '',
  63. "imOpen" => '',
  64. "wfProcessId" => '',
  65. "photoUrl" => $userinfo['Avatar'],
  66. "plate" => $userinfo['LicensePlate'],
  67. 'deviceNumber' => $userinfo['DeviceNumber'],
  68. 'gpsNumber' => $userinfo['GpsDeviceNumber'],
  69. 'cityid' => $userinfo['CityId'],
  70. 'defaultCity' => $defaultCity
  71. );
  72. $data = array(
  73. "baseinfo" => $baseinfo,
  74. "post" => array(),
  75. "role" => array()
  76. );
  77. $this->api_success('登录成功',$data);
  78. }
  79. public function modifypassword( ){
  80. $this->token_verify();
  81. $post_data = I('post.data');
  82. if( empty($post_data) ){
  83. $this->api_fail(C('FAIL'),'post_data不能为空!');
  84. }
  85. $userid = $post_data['userid'];
  86. $newpassword = $post_data['newpassword'];
  87. $oldpassword = $post_data['oldpassword'];
  88. if(!M('jms_vehicle')->where(array('ID'=>$userid,'Password'=>$oldpassword))->find()){
  89. $this->api_fail(C('FAIL'),'旧密码不正确');
  90. }
  91. $where = array(
  92. 'ID' => $userid,
  93. 'Password' => $oldpassword
  94. );
  95. $data = array(
  96. 'Password' => $newpassword
  97. );
  98. $res = M('jms_vehicle')->createSave($where,$data);
  99. if(!$res){
  100. $this->api_fail(C('FAIL'),'修改密码失败');
  101. }
  102. $this->api_success('修改成功');
  103. }
  104. public function get_baojing_info( ){
  105. //$this->token_verify();
  106. $plate = I('get.plate');
  107. if(!$plate){
  108. json_fail('未获取到车牌');
  109. }
  110. $pageSize = I('get.pagesize');
  111. if(!$pageSize){
  112. $pageSize = 10;
  113. }
  114. $page = I('get.page');
  115. if(!$page){
  116. $page = 0;
  117. }
  118. $start = $pageSize * $page;
  119. $msg = M('jms_baojing_message')->where(array('LicensePlate'=>$plate))->limit($start, $pageSize)->order('AddTime desc')->select();
  120. if(!$msg){
  121. $this->api_fail(C('FAIL'),'报警信息不存在');
  122. }
  123. $this->api_success('成功',$msg);
  124. }
  125. public function get_map_index_data( ){
  126. $this->token_verify();
  127. $deviceNumber = $_GET['data']['deviceNumber'];
  128. $licensePlate = $_GET['data']['licensePlate'];
  129. $gpsNumber = $_GET['data']['gpsNumber'];
  130. if(!$deviceNumber){
  131. $this->api_fail(C('FAIL'),'faild, no deviceNumber !');
  132. }
  133. //获取车辆最新位置mysql
  134. /*
  135. $result = M('jms_vehicle')->field('GpsLongitude, GpsLatitude, Address, FenceShapeInfo, LockStatus, FenceAlarmEnable, Battery, GpsOnlineTime, Speed, CityId')->where(array('DeviceNumber' => $deviceNumber))->find();
  136. */
  137. //redis获取
  138. $vehicle = Redis('fdrc_vehicle','hash');
  139. //var_dump($vehicle);
  140. $vehicleInfo = $vehicle->get($deviceNumber);
  141. $vehicleInfo = json_decode($vehicleInfo, true);
  142. $rlfd_vehicle_fence = Redis('rlfd_vehicle_fence','hash');
  143. $fence = $rlfd_vehicle_fence->get($licensePlate);
  144. //$fence = json_decode($fence, true);
  145. //末次位置和时间
  146. $lastLocReis = Redis('rfld_gps_last_location','hash');
  147. $lastLoction = $lastLocReis->get($gpsNumber);
  148. //var_dump($lastLoction);
  149. if($lastLoction){
  150. $lastLoction = json_decode($lastLoction, true);
  151. $alterVehLoction = \Jms\Algo\Geometry::convertBd09ToGcj02($lastLoction['GpsLatitude'], $lastLoction['GpsLongitude']);
  152. $onlineTime = $lastLoction['GpsOnlineTime'];
  153. }else{
  154. $onlineTime = false;
  155. }
  156. $lastLoactionTime = $onlineTime;
  157. //心跳时间
  158. $gpsHeart = Redis('rfld_gps_last_heartbeat','hash');
  159. $heartTime = $gpsHeart->get($gpsNumber);
  160. if(!$heartTime){
  161. $heartTime = false;
  162. }
  163. //心跳时间和末次GPS位置时间比较取最新
  164. $onlineTime = (strtotime($onlineTime) > strtotime($heartTime) ? $onlineTime: $heartTime);
  165. if(!$onlineTime){
  166. $onlineTimeInfo = false;
  167. }else{
  168. $interval = time() - strtotime($onlineTime);
  169. if($interval > C('IS_ONOFFLINE_INTERVAL_SECONDS')){
  170. $offlineDisplay = $this->getFormatTime($interval);
  171. $onlineTimeInfo = array(
  172. 'online' => false,
  173. 'time' => $onlineTime,
  174. 'humenDisplay' => $offlineDisplay
  175. );
  176. }else{
  177. $onlineTimeInfo = array(
  178. 'online' => true,
  179. 'time' => $onlineTime
  180. );
  181. }
  182. }
  183. /*
  184. if(!$result['GpsLongitude'] || !$result['GpsLatitude']){
  185. $where = array('ID' => $result['CityId']);
  186. $cityLngLat = M('jms_city')->field('CenterLng, CenterLat')->where($where)->find();
  187. $result['GpsLongitude'] = $cityLngLat['CenterLng'];
  188. $result['GpsLatitude'] = $cityLngLat['CenterLat'];
  189. }
  190. */
  191. $mapData = array(
  192. 'vehicleLocation' => array('longitude' => $alterVehLoction['lng'], 'latitude' => $alterVehLoction['lat']),
  193. // 'vehicleAddress' => $result['Address'],
  194. 'lockStatus' => $vehicleInfo['LockStatus'],
  195. 'fenceShapeInfo' => $fence,
  196. 'battery' => $lastLoction['Battery'],
  197. // 'fenceAlarmStatus' => $result['FenceAlarmEnable'],
  198. 'onlineTime' => $onlineTimeInfo,
  199. 'lastLoactionTime' => $lastLoactionTime,
  200. 'speed' => $result['Speed']
  201. );
  202. $this->api_success('success', $mapData);
  203. }
  204. public function get_insure_info( ){
  205. $this->token_verify();
  206. $cityid = I('get.cityid');
  207. $insure_info = M('jms_insurance')->where(array('CityId'=>$cityid))->select();
  208. if(!$insure_info){
  209. $this->api_fail(C('FAIL'),'保险信息不存在');
  210. }
  211. $this->api_success('成功',$insure_info);
  212. }
  213. public function get_user_platenumber( ){
  214. $this->token_verify();
  215. $userid = I('get.userid');
  216. if(!$userid){
  217. $this->api_fail(C('FAIL'),'用户id不存在');
  218. }
  219. $plate_info = M('jms_vehicle')->where(array('ID'=>$userid))->field('ID,LicensePlate')->select();
  220. if(!$plate_info){
  221. $this->api_fail(C('FAIL'),'该车主没有使用的车牌');
  222. }
  223. $this->api_success('成功',$plate_info);
  224. }
  225. public function submit_add_baojing( ){
  226. $this->token_verify();
  227. $post_data = I('post.data');
  228. if( empty($post_data) ){
  229. $this->api_fail(C('FAIL'),'报警信息不能为空!');
  230. }
  231. $mobile = trim($post_data['UserPhone']);
  232. if(!preg_match("/^1[345678]{1}\d{9}$/",$mobile)){
  233. $this->api_fail(C('FAIL'),'手机号格式不正确!');
  234. }
  235. $date = $post_data['StolenDate'];
  236. if($date == '请选择'){
  237. $this->api_fail(C('FAIL'),'请选择被盗日期');
  238. }
  239. $Keyword = strtoupper($post_data['LicensePlate']);
  240. if ( empty($Keyword)) {
  241. $this->api_fail(C('FAIL'),'报警车辆不能为空');
  242. }
  243. $userid = $post_data['userid'];
  244. if ( empty($userid)) {
  245. $this->api_fail(C('FAIL'),'用户id不能为空');
  246. }
  247. $stolenCityId = $post_data['StolenCityId'];
  248. if ( empty($stolenCityId)) {
  249. $this->api_fail(C('FAIL'),'请选择事发城市');
  250. }
  251. $stolenaddress = $post_data['StolenAddress'];
  252. if ( empty($stolenaddress)) {
  253. $this->api_fail(C('FAIL'),'事发地址不能为空');
  254. }
  255. $WoContent = trim($post_data['WoContent']);
  256. if (empty($WoContent)) {
  257. $this->api_fail(C('FAIL'),'报警原因不能为空');
  258. }
  259. //获取登录用户城市id
  260. /*$cond = array('ID'=>$userid);
  261. $cityid = M('uc_user')->where($cond)->getField('CityId');
  262. if(!$cityid){
  263. $this->api_fail('failerror','获取登录城市失败!');
  264. }*/
  265. $vehicle_info = M('jms_vehicle')->where(array( 'LicensePlate|IdCard|UserPhone' => $Keyword ))->field('ID,UserId,CityId,IdCard,UserPhone,LicensePlate')->find();
  266. if(!$vehicle_info){
  267. $this->api_fail(C('FAIL'),'报警车辆不存在!');
  268. }
  269. /*if( $vehicle_info['CityId'] != $cityid ){
  270. $this->api_fail('failerror','该车辆不在管辖区域,无法添加报警!');
  271. }
  272. if(!$vehicle_info['UserId']){
  273. $this->api_fail('failerror','此车辆还未开户,不能添加报警信息!');
  274. }*/
  275. //$vehicle_id = $vehicle_info['ID'];
  276. /*$chezhu_id = $vehicle_info['UserId'];
  277. //$chezhu_info = fd_get_userinfo($chezhu_id);
  278. //$chezhu_info = get_chezhu_info($chezhu_id);*/
  279. //$this->api_check_vehicle_isrepeat2($vehicle_id);
  280. if ($post_data['StolenDate'] != '请选择') {
  281. $StolenDate = $post_data['StolenDate'];
  282. $StolenDate = date('Y-m-d',strtotime($StolenDate));
  283. // 被盗日期不能超过当前时间
  284. $now_time = date('Y-m-d');
  285. if(strtotime($StolenDate) > strtotime($now_time)){
  286. $this->api_fail(C('FAIL'),'被盗日期不能超过当前时间!');
  287. }
  288. } else {
  289. $StolenDate = date('Y-m-d');
  290. }
  291. if(M('jms_baojing')->where(array('LicensePlate' => $vehicle_info['LicensePlate'],'StolenState'=>0))->find()){
  292. $this->api_fail(C('FAIL'),'报警信息已经存在');
  293. }
  294. $StolenCityId = explode(',',$stolenCityId);
  295. $StolenCityId = $StolenCityId[2]+1000;
  296. $data = array(
  297. 'WoContent' => $WoContent,
  298. 'VehicleId' => $userid,
  299. 'LicensePlate' => $vehicle_info['LicensePlate'],
  300. 'IdCard' => $vehicle_info['IdCard'],
  301. 'UserId' => $userid,
  302. 'UserPhone' =>$mobile,
  303. 'CityId' => $vehicle_info['CityId'],
  304. 'SubmitUserId' => $userid,
  305. 'SubmitTime' => date('Y-m-d H:i:s'),
  306. 'StolenDate' => $StolenDate,
  307. 'StolenCityId' => $StolenCityId, //新增:被盗城市id
  308. 'StolenAddress' => $stolenaddress
  309. );
  310. if (!M('jms_baojing')->createAdd($data)) {
  311. $this->api_fail(C('FAIL'),'添加报警信息失败');
  312. }
  313. $this->api_success('添加报警信息成功');
  314. }
  315. public function update_jg_registrationid( ){
  316. $this->token_verify();
  317. $post_data = I('post.data');
  318. //$post_data = json_decode(htmlspecialchars_decode(I('post.data')),true);
  319. if( empty($post_data) ){
  320. $this->api_fail(C('FAIL'),'post_data不能为空!');
  321. }
  322. $regid = $post_data['regid'];//极光推设备唯一标识id
  323. if( empty($regid) ){
  324. $this->api_fail(C('FAIL'),'极光推注册id不能为空!');
  325. }
  326. if(!$post_data['uid']){
  327. $this->api_fail(C('FAIL'),'uid不能为空!');
  328. }
  329. $cond = array(
  330. 'ID' => $post_data['uid']
  331. );
  332. $result = M('jms_vehicle')->where($cond)->setField('JgClientRegistrationId',$regid);
  333. if( false === $result ){
  334. $this->api_fail(C('FAIL'),'更新极光推注册信息失败! error:'.M('jms_vehicle')->getDbError());
  335. }
  336. $this->api_success('更新成功');
  337. }
  338. public function save_fence_info( ){
  339. $this->token_verify();
  340. $fence_info =I('post.data');
  341. $fenceData = htmlspecialchars_decode($fence_info['data']);
  342. $plate = $fence_info['plate'];
  343. if( !$fence_info || !$plate){
  344. json_fail('Missing param !');
  345. }
  346. $fence_data = json_decode($fenceData, true);
  347. // 保存百度地图
  348. $fence_data['data']['center'] = \Jms\Algo\Geometry::convertGcj02ToBd09($fence_data['data']['center']['lat'], $fence_data['data']['center']['lng']);
  349. $data = array(
  350. 'fenceStatus' => $fence_info['fenceAlarmEnable'] == 'true' ? true : false,
  351. 'fenceInfo' => $fence_data
  352. );
  353. //围栏信息改为存入redis表 rlfd_vehicle_fence( key车牌号,value围栏信息)
  354. $rlfd_vehicle_fence = Redis('rlfd_vehicle_fence','hash');
  355. $key = $plate;
  356. $val = json_encode($data, JSON_UNESCAPED_UNICODE);
  357. $hash = array($key=>$val);
  358. $result = $rlfd_vehicle_fence->add($hash);
  359. if( $result === false ){
  360. json_fail('保存失败');
  361. }
  362. json_success('保存成功');
  363. }
  364. public function get_gps_route( ){
  365. $this->token_verify();
  366. $postParm = I('post.data');
  367. $search_date = $postParm['date'];
  368. $gps_number = $postParm['gpsNumber'];
  369. if( !$gps_number || !$search_date){
  370. json_fail('Missing param !');
  371. }
  372. $timestamp = strtotime($search_date);
  373. if( !$timestamp ){
  374. json_fail('Date format error !');
  375. }
  376. $start_date = strtotime( date('Y-m-d 00:00:00',$timestamp) );
  377. $end_date = strtotime( date('Y-m-d 23:59:59',$timestamp) );
  378. $cond = array(
  379. 'DeviceId' => $gps_number,
  380. 'DeviceTime' => array( 'between', array($start_date,$end_date) ),
  381. );
  382. $fields = 'Longitude as lng,Latitude as lat,Speed as speed, DeviceTime as deviceTime';
  383. $dateStr = str_replace("-","",$search_date);
  384. $route_list = M('gps_location_'.$dateStr, '', C('DB_DSN_GPS'))->field($fields)->where($cond)->order('DeviceTime asc')->select();
  385. //var_dump(M('gps_location_'.$dateStr, '', C('DB_DSN_GPS'))->getLastSql());
  386. if( !$route_list ){
  387. json_fail('无轨迹 !');
  388. }
  389. foreach($route_list as &$v){
  390. $v['deviceTime'] = date('Y-m-d H:i:s', $v['deviceTime']);
  391. }
  392. $route_data = json_encode($route_list);
  393. //$testData = json_encode($testData);
  394. json_success('success',$route_data);
  395. //json_success('success',$testData);
  396. }
  397. public function change_lock_status( ){
  398. $this->token_verify();
  399. $lock_state = I('post.data')['lockStatus'];
  400. $device_number = I('post.data')['deviceNumber'];
  401. if( !$device_number || $lock_state === ''){
  402. json_fail('Missing param !');
  403. }
  404. //检查锁定状态值
  405. if( !is_numeric($lock_state) && ($lock_state != 0 && $lock_state != 1) ){
  406. json_fail('unknown state !');
  407. }
  408. $cond = array('DeviceNumber' => $device_number);
  409. $result = M('jms_vehicle')->where($cond)->setField('LockStatus',$lock_state);
  410. if( $result === false ){
  411. json_fail('设置失败');
  412. }
  413. json_success('设置成功');
  414. }
  415. public function api_success( $msg, $data ){
  416. $array = array(
  417. 'success'=>true,
  418. 'message'=>$msg,
  419. 'data' => $data,
  420. 'code'=>200
  421. );
  422. echo json_encode($array,JSON_UNESCAPED_UNICODE);
  423. exit;
  424. }
  425. public function api_fail( $code, $msg, $data ){
  426. $array = array(
  427. 'success'=>false,
  428. 'message'=>$msg,
  429. 'data' => $data,
  430. 'code'=>$code
  431. );
  432. echo json_encode($array,JSON_UNESCAPED_UNICODE);
  433. exit;
  434. }
  435. public function get_gonggao_info( ){
  436. $this->token_verify();
  437. $plate = I('get.plate');
  438. $msg = M('jms_baojing_message')->where(array('Type'=>C('BROADCASTING'),'LicensePlate'=>$plate))->select();
  439. if(!$msg){
  440. $this->api_fail(C('FAIL'),'公告信息不存在');
  441. }
  442. $this->api_success('成功',$msg);
  443. }
  444. public function token_verify( ){
  445. $token = I('token');//用户登录token
  446. $login_mark = I('loginMark');
  447. if(!$token){
  448. $this->api_fail(C('FAIL'),'token不存在 !');
  449. }
  450. if(!$login_mark){
  451. $this->api_fail(C('FAIL'),'login_mark不存在 !');
  452. }
  453. //获取token
  454. $redis = Redis('czapp_client_login_session','hash');
  455. $key = $login_mark;
  456. $val = json_decode($redis->get($key),true);
  457. if(!$val){
  458. $this->api_fail(C('FAIL'),'无效token1 !');
  459. }
  460. //验证token是否一致
  461. if( $token != $val['token'] ){
  462. $this->api_fail(C('FAIL'),'无效token2 !');
  463. }
  464. //验证token是否过期
  465. if(!$val['login_time']){
  466. $this->api_fail(C('FAIL'),'没有登录时间,token校验失败 !');
  467. }
  468. $login_time = strtotime($val['login_time']);
  469. $end_time = $login_time + $val['expire']*60;
  470. if(time()>$end_time){
  471. $this->api_fail(C('TOKEN_OVERTIME'),'token失效,请重新登录 !');
  472. }
  473. }
  474. public function get_gonggao_detail( ){
  475. header('Access-Control-Allow-Origin:*');
  476. $this->token_verify();
  477. $plate = I('get.plate');
  478. $msg = M('jms_baojing_message')->where(array('Type'=>C('BROADCASTING'),'LicensePlate'=>$plate))->find();
  479. if(!$msg){
  480. $this->api_fail(C('FAIL'),'公告信息不存在');
  481. }
  482. $this->api_success('成功',$msg);
  483. }
  484. public function get_baojing_detail( ){
  485. $this->token_verify();
  486. $plate = I('get.plate');
  487. $id = I('get.id');
  488. $msg = M('jms_baojing_message')->where(array('ID' => $id, 'LicensePlate'=>$plate))->find();
  489. if(!$msg){
  490. $this->api_fail(C('FAIL'),'报警信息不存在');
  491. }
  492. $this->api_success('成功',$msg);
  493. }
  494. public function register( ){
  495. $where = array('LicensePlate'=>I('post.LicensePlate'));
  496. $userinfo = M('jms_vehicle')->where($where)->find();
  497. if(!$userinfo){
  498. $this->api_fail(C('FAIL'),'用户车牌还未登记');
  499. }
  500. if($userinfo['FullName'] != I('post.FullName')){
  501. $this->api_fail(C('FAIL'),'姓名和备案时填写不一致');
  502. }
  503. if($userinfo['IdCard'] != I('post.IdCard')){
  504. $this->api_fail(C('FAIL'),'身份证和备案时填写不一致');
  505. }
  506. $data = array(
  507. 'Password' => I('post.Password'),
  508. );
  509. $result = M('jms_vehicle')->createSave($where,$data);
  510. if(!$result){
  511. $this->api_fail(C('FAIL'),'注册失败');
  512. }
  513. $this->api_success('注册成功');
  514. }
  515. public function get_fence_info( ){
  516. $this->token_verify();
  517. $plate = I('get.data');
  518. if( !$plate){
  519. json_fail('Missing param !');
  520. }
  521. $rlfd_vehicle_fence = Redis('rlfd_vehicle_fence','hash');
  522. $fence = $rlfd_vehicle_fence->get($plate);
  523. if( !$fence ){
  524. json_fail('无围栏 !');
  525. }
  526. $fence_info = json_decode($fence, true);
  527. // 转高德地图坐标
  528. $fence_info['fenceInfo']['data']['center'] = \Jms\Algo\Geometry::convertBd09ToGcj02($fence_info['fenceInfo']['data']['center']['lat'], $fence_info['fenceInfo']['data']['center']['lng']);
  529. $fence = json_encode($fence_info);
  530. json_success('success',$fence);
  531. }
  532. public function get_gps_route_table( ){
  533. $this->token_verify();
  534. $postParm = I('post.data');
  535. $search_date = $postParm['date'];
  536. $gps_number = $postParm['gpsNumber'];
  537. if( !$gps_number || !$search_date){
  538. json_fail('请检查GPS标签或者日期 !');
  539. }
  540. //$list = $this->getBTGpsRoute($search_date,'1');//test
  541. $list = $this->getBTGpsRoute($search_date, $gps_number);
  542. $lngLatAlter = new \Jms\Algo\Geometry();
  543. $respData = array();
  544. foreach($list as $v){
  545. $alterRes = $lngLatAlter->convertBd09ToGcj02($v['Latitude'], $v['Longitude']);
  546. $nv = array(
  547. 'lat' => $alterRes['lat'],
  548. 'lng' => $alterRes['lng'],
  549. 'speed' => $v['Speed'],
  550. 'deviceTime' => $v['OnlineTime']
  551. );
  552. array_push($respData, $nv);
  553. }
  554. /*
  555. foreach(&$respData as &$v){
  556. $v['deviceTime'] = date('Y-m-d H:i:s', $v['deviceTime']);
  557. }
  558. */
  559. if(!$respData){
  560. json_success('无轨迹');
  561. }
  562. $route_data = json_encode($respData);
  563. //$testData = json_encode($testData);
  564. json_success('success',$route_data);
  565. //json_success('success',$testData);
  566. }
  567. private function getBTGpsRoute( $date, $gpsNumber ){
  568. if(!$gpsNumber){
  569. return false;
  570. }
  571. if(!$date){
  572. $date = date('Y-m-d');
  573. }
  574. //获取所有轨迹信号
  575. $option = array();
  576. $option['pagesize'] = 1000;
  577. $option['asc'];
  578. $option['fields'] = array('Longitude','Latitude','Speed','DeviceTime');
  579. $routesig = new \Rlfd\Route\RouteSignal();
  580. $list = $routesig->queryEbicyleDailyGpsSignals($gpsNumber, $date,$option);
  581. //var_dump($list);
  582. //var_dump(array('route'=>$list,'vehicle'=>$vehicle_info));
  583. return $list;
  584. }
  585. public function get_driving_data( ){
  586. $gpsNumber = $_GET['data']['gpsNumber'];
  587. //var_dump($_GET);
  588. $days = C('DRIVING_STATISTICS_DAYS');
  589. if(!$gpsNumber){
  590. json_fail('未获取到gps设备号');
  591. }
  592. if(!$days){
  593. $days = 5;
  594. }
  595. $drivingData = array();
  596. for($i = $days-1; $i > 0; --$i){
  597. $preStr2time = strtotime('-'.$i.'days');
  598. $date = date('Y-m-d', $preStr2time);
  599. /*
  600. $where = array(
  601. 'GpsDeviceNumber' => $gpsNumber,
  602. 'Date' => $date
  603. );
  604. $sqlData = M('gps_driving_data')->where($where)->find();//当天前的数据查询sql数据库
  605. if($sqlData){
  606. $dayData = array(
  607. 'date' => $date,
  608. 'averageSpeed' => $sqlData['AverageSpeed'],
  609. 'totalTime' => $sqlData['TotalTime'],
  610. 'totalDist' => $sqlData['TotalDistance']
  611. );
  612. array_push($drivingData, $dayData);
  613. continue;
  614. }
  615. */
  616. $cache = S($gpsNumber.'_cache'.$date);
  617. if($cache){
  618. array_push($drivingData, $cache);
  619. continue;
  620. }else{
  621. $dayData = $this->searchDrivingData($gpsNumber, $date);
  622. array_push($drivingData, $dayData);
  623. S($gpsNumber.'_cache'.$date, $dayData, 3600*24*7);
  624. }
  625. }
  626. //当日
  627. $todayDate = date('Y-m-d');
  628. $todayCache = S($gpsNumber.'_cache'.$todayDate);
  629. if(!$todayCache){
  630. $todayData = $this->searchDrivingData($gpsNumber, $todayDate);
  631. array_push($drivingData, $todayData);
  632. $todayCache = S($gpsNumber.'_cache'.$todayData, $todayData, 3600*24);
  633. }else{
  634. $newOnlineTime = M('jms_vehicle')->where(array('GpsDeviceNumber' => $gpsNumber))->getField('GpsOnlineTime');
  635. $nTime = strtotime($newOnlineTime);
  636. $oTime = strtotime($lastOnlineTime);
  637. if($nTime == $oTime){
  638. array_push($drivingData, $todayCache);
  639. }else{
  640. $todayData = $this->searchDrivingData($gpsNumber, $date);
  641. array_push($drivingData, $todayData);
  642. $todayCache = S($gpsNumber.'_cache'.$todayDate, $todayData, 3600*24);
  643. }
  644. }
  645. //dump($drivingData);
  646. if(!$drivingData){
  647. json_fail('未查询到近'.$days.'日行驶数据');
  648. }
  649. json_success('查询成功', $drivingData);
  650. }
  651. private function searchDrivingData( $gpsNumber, $date ){
  652. if(!$gpsNumber){
  653. return false;
  654. }
  655. $start = microtime(true);
  656. $result = $this->getBTGpsRoute( $date,$gpsNumber);
  657. $end = microtime(true);
  658. $totalTime = 0;
  659. $totalDist = 0;
  660. $lastOnlineTime =end($result)['OnlineTime'];
  661. for($i = 0; $i < count($result)-1; ++$i){
  662. $lat1 = $result[$i]['lat'];
  663. $lng1 = $result[$i]['lng'];
  664. $lat2 = $result[$i+1]['lat'];
  665. $lng2 = $result[$i+1]['lng'];
  666. $dist = $this->get_2points_distance($lat1,$lng1,$lat2,$lng2 );
  667. $totalDist += $dist;
  668. $time = strtotime($result[$i+1]['OnlineTime']) - strtotime($result[$i]['OnlineTime']);
  669. $totalTime += ($time/3600);
  670. }
  671. return array(
  672. 'totalTime' => $totalTime,
  673. 'totalDist' => $totalDist,
  674. // 'averageSpeed' => $totalDist/$totalTime,
  675. 'lastOnlineTime' => $lastOnlineTime,
  676. 'caculateTime' => $end - $start
  677. );
  678. }
  679. private function get_2points_distance( $lat1, $lng1, $lat2, $lng2, $radius = 6378.137 ){
  680. $rad = floatval(M_PI / 180.0);
  681. $lat1 = floatval($lat1) * $rad;
  682. $lng1 = floatval($lng1) * $rad;
  683. $lat2 = floatval($lat2) * $rad;
  684. $lng2 = floatval($lng2) * $rad;
  685. $lat1 = sprintf("%.8f", $lat1);
  686. $lng1 = sprintf("%.8f", $lng1);
  687. $lat2 = sprintf("%.8f", $lat2);
  688. $lng2 = sprintf("%.8f", $lng2);
  689. $theta = $lng2 - $lng1;
  690. $dist = acos(sin($lat1) * sin($lat2) +
  691. cos($lat1) * cos($lat2) * cos($theta)
  692. );
  693. if ($dist < 0 ) {
  694. $dist += M_PI;
  695. }
  696. $dist = $dist * $radius;
  697. return sprintf('%.8f', $dist);
  698. }
  699. public function test_function( ){
  700. //距离测试
  701. /*
  702. $lat1 = '31.253411';
  703. $lng1 = '121.518998';
  704. $lat2 = '31.277117';
  705. $lng2 = '120.744587';
  706. $distance = $this->get_2points_distance($lat1, $lng1, $lat2, $lng2);
  707. var_dump($distance);
  708. */
  709. //离线时间测试
  710. $interval = 343088;
  711. $time = $this->getFormatTime($interval);
  712. echo $time;
  713. }
  714. public function get_vehicle_ElectronicPlateUrl( ){
  715. $this->token_verify();
  716. $userid = I('userid');
  717. $electronicPlateUrl = S('key');
  718. if(!empty($electronicPlateUrl['FrontElectronicPlateUrl']) && !empty($electronicPlateUrl['BackElectronicPlateUrl'] )){
  719. $this->api_success('成功',$electronicPlateUrl);
  720. }
  721. else{
  722. $vehicle_info = M('jms_vehicle')->where(array('ID'=>$userid))->field('FrontElectronicPlateUrl,BackElectronicPlateUrl')->find();
  723. S('key',$vehicle_info,86400);
  724. $this->api_success('成功',$vehicle_info);
  725. }
  726. }
  727. public function getCityInfo( ){
  728. $this->token_verify();
  729. $cityid = I('get.cityid');
  730. if(!$cityid){
  731. $this->api_fail(C('FAIL'),'开户城市不存在');
  732. }
  733. $parentcity = M('jms_city')->where(array('ID'=>$cityid))->find();
  734. $child_1 = M('jms_city')->where(array('ParentId'=>$parentcity['ParentId']))->select();
  735. $this->api_success('成功',$child_1);
  736. }
  737. public function get_cityinfo_by_cityid( ){
  738. $cityid = I('cityid');
  739. $ids = M('jms_city')->field('ParentId,ProvinceId')->where(array('ID'=>$cityid))->find();
  740. $result = $ids['ProvinceId'].','.($ids['ParentId']-100).','.($cityid-1000);
  741. $this->api_success('成功',$result);
  742. }
  743. private function getFormatTime( $timeInterval ){
  744. if ($timeInterval < 60){
  745. $formatime = $timeInterval.'秒';
  746. }elseif($timeInterval < 60 * 60){
  747. $min = floor($timeInterval/60);
  748. $formatime = $min.'分钟';
  749. }elseif($timeInterval < 60 * 60 * 24){
  750. $h = floor($timeInterval/(60*60));
  751. $formatime = $h.'小时';
  752. }else{
  753. $d = floor($timeInterval/(60*60*24));
  754. $formatime = $d.'天';
  755. }
  756. return $formatime;
  757. }
  758. }