ApiAction.class.php 30 KB

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