ApiAction.class.php 25 KB

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