ApiAction.class.php 26 KB

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