123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878 |
- <?php
- class ApiAction extends Action {
-
-
- public function login( ){
- $data = I('post.data');
- //$data = json_decode(htmlspecialchars_decode(I('post.data')),true);
- if(!$data){
- $this->api_fail(C('FAIL'),'没有用户信息');
- }
- $cond = array(
- 'LicensePlate|GpsDeviceNumber|DeviceNumber'=>$data['username'],
- 'Password'=>$data['password']
- );
- $userinfo = M('jms_vehicle')->where($cond)->find();
- if(!$userinfo){
- $this->api_fail(C('FAIL'),'用户名或者密码不正确');
- }
-
- $cityid = $userinfo['CityId'];
- $defaultCity = M('jms_city')->where(array('ID' => $cityid))->field('CenterLng as lng, CenterLat as lat')->find();
- $token = md5($data['username'].I('post.loginMark').$data['password'].date('Y-m-d H:i:s'));
- $result = \Jiaruan\RedisCache::setSessionRules(I('post.loginMark'),$token);
- if($result === false){
- $this->api_fail(C('FAIL'),'添加redis失败');
- }
- $where = array("ID" => $userinfo['ID']);
- $data = array(
- "LoginMark" => I('post.loginMark'),
- "Token" => $token
- );
- $res = M('jms_vehicle')->createSave($where,$data);
- if(!$res){
- $this->api_fail(C('FAIL'),'token信息保存失败');
- }
- $baseinfo = array(
- "userId" => $userinfo['ID'],
- "enCode" => "System",
- "account" => $userinfo['FullName'],
- "password" => $userinfo['Password'],
- "secretkey" => '',
- "realName" => $userinfo['FullName'],
- "nickName" => $userinfo['FullName'],
- "headIcon" => ".jpg",
- "gender" => $userinfo['Sex'],
- "mobile" => $userinfo['UserPhone'],
- "telephone" => $userinfo['Telephone'],
- "email" => $userinfo['Email'],
- "oICQ" => $userinfo['QQ'],
- "weChat" => $userinfo['WxName'],
- "companyId" => "",
- "companyIds" => array(),
- "departmentId" => "",
- "departmentIds" => array(),
- "openId" => $userinfo['WxOpenId'],
- "roleIds" => $userinfo['RoleId'],
- "postIds" => "",
- "isSystem" => true,
- "appId" => "renlian_1.0.0_App",
- "logTime" => date('Y-m-d H:i:s'),
- "iPAddress" => $_SERVER['REMOTE_ADDR'],
- "browser" => "Safari 11.0",
- "loginMark" => I('post.loginMark'),
- "token" => $token,
- "imUrl" => '',
- "imOpen" => '',
- "wfProcessId" => '',
- "photoUrl" => $userinfo['Avatar'],
- "plate" => $userinfo['LicensePlate'],
- 'deviceNumber' => $userinfo['DeviceNumber'],
- 'gpsNumber' => $userinfo['GpsDeviceNumber'],
- 'cityid' => $userinfo['CityId'],
- 'defaultCity' => $defaultCity
- );
-
-
-
- $data = array(
- "baseinfo" => $baseinfo,
- "post" => array(),
- "role" => array()
- );
- $this->api_success('登录成功',$data);
- }
-
-
- public function modifypassword( ){
- $this->token_verify();
- $post_data = I('post.data');
- if( empty($post_data) ){
- $this->api_fail(C('FAIL'),'post_data不能为空!');
- }
- $userid = $post_data['userid'];
- $newpassword = $post_data['newpassword'];
- $oldpassword = $post_data['oldpassword'];
- if(!M('jms_vehicle')->where(array('ID'=>$userid,'Password'=>$oldpassword))->find()){
- $this->api_fail(C('FAIL'),'旧密码不正确');
- }
- $where = array(
- 'ID' => $userid,
- 'Password' => $oldpassword
- );
- $data = array(
- 'Password' => $newpassword
- );
- $res = M('jms_vehicle')->createSave($where,$data);
- if(!$res){
- $this->api_fail(C('FAIL'),'修改密码失败');
- }
- $this->api_success('修改成功');
-
- }
-
-
- public function get_baojing_info( ){
- //$this->token_verify();
- $plate = I('get.plate');
- $msg = M('jms_baojing_message')->where(array('Type'=>C('STOLEN_ALARM'),'LicensePlate'=>$plate))->select();
- if(!$msg){
- $this->api_fail(C('FAIL'),'报警信息不存在');
- }
- $this->api_success('成功',$msg);
- }
-
-
- public function get_map_index_data( ){
- $this->token_verify();
- $deviceNumber = $_GET['data']['deviceNumber'];
- $licensePlate = $_GET['data']['licensePlate'];
- $gpsNumber = $_GET['data']['gpsNumber'];
-
- if(!$deviceNumber){
- $this->api_fail(C('FAIL'),'faild, no deviceNumber !');
- }
-
- //获取车辆最新位置mysql
- /*
- $result = M('jms_vehicle')->field('GpsLongitude, GpsLatitude, Address, FenceShapeInfo, LockStatus, FenceAlarmEnable, Battery, GpsOnlineTime, Speed, CityId')->where(array('DeviceNumber' => $deviceNumber))->find();
- */
-
- //redis获取
- $vehicle = Redis('fdrc_vehicle','hash');
- //var_dump($vehicle);
- $vehicleInfo = $vehicle->get($deviceNumber);
- $vehicleInfo = json_decode($vehicleInfo, true);
-
-
- $rlfd_vehicle_fence = Redis('rlfd_vehicle_fence','hash');
- $fence = $rlfd_vehicle_fence->get($licensePlate);
- //$fence = json_decode($fence, true);
-
- //末次位置和时间
- $lastLocReis = Redis('rfld_gps_last_location','hash');
- $lastLoction = $lastLocReis->get($gpsNumber);
- //var_dump($lastLoction);
- if($lastLoction){
- $lastLoction = json_decode($lastLoction, true);
- $alterVehLoction = \Jms\Algo\Geometry::convertBd09ToGcj02($lastLoction['GpsLatitude'], $lastLoction['GpsLongitude']);
- $onlineTime = $lastLoction['GpsOnlineTime'];
-
- }else{
- $onlineTime = false;
- }
- $lastLoactionTime = $onlineTime;
- //心跳时间
- $gpsHeart = Redis('rfld_gps_last_heartbeat','hash');
- $heartTime = $gpsHeart->get($gpsNumber);
- if(!$heartTime){
- $heartTime = false;
- }
- //心跳时间和末次GPS位置时间比较取最新
- $onlineTime = (strtotime($onlineTime) > strtotime($heartTime) ? $onlineTime: $heartTime);
-
- if(!$onlineTime){
- $onlineTimeInfo = false;
- }else{
- $interval = time() - strtotime($onlineTime);
- if($interval > C('IS_ONOFFLINE_INTERVAL_SECONDS')){
- $offlineDisplay = $this->getFormatTime($interval);
- $onlineTimeInfo = array(
- 'online' => false,
- 'time' => $onlineTime,
- 'humenDisplay' => $offlineDisplay
- );
- }else{
- $onlineTimeInfo = array(
- 'online' => true,
- 'time' => $onlineTime
- );
- }
-
- }
-
-
- /*
- if(!$result['GpsLongitude'] || !$result['GpsLatitude']){
-
- $where = array('ID' => $result['CityId']);
- $cityLngLat = M('jms_city')->field('CenterLng, CenterLat')->where($where)->find();
- $result['GpsLongitude'] = $cityLngLat['CenterLng'];
- $result['GpsLatitude'] = $cityLngLat['CenterLat'];
- }
- */
- $mapData = array(
- 'vehicleLocation' => array('longitude' => $alterVehLoction['lng'], 'latitude' => $alterVehLoction['lat']),
- // 'vehicleAddress' => $result['Address'],
- 'lockStatus' => $vehicleInfo['LockStatus'],
- 'fenceShapeInfo' => $fence,
- 'battery' => $lastLoction['Battery'],
- // 'fenceAlarmStatus' => $result['FenceAlarmEnable'],
- 'onlineTime' => $onlineTimeInfo,
- 'lastLoactionTime' => $lastLoactionTime,
- 'speed' => $result['Speed']
- );
-
- $this->api_success('success', $mapData);
-
- }
-
-
- public function get_insure_info( ){
- $this->token_verify();
- $cityid = I('get.cityid');
- $insure_info = M('jms_insurance')->where(array('CityId'=>$cityid))->select();
- if(!$insure_info){
- $this->api_fail(C('FAIL'),'保险信息不存在');
- }
- $this->api_success('成功',$insure_info);
- }
-
-
- public function get_user_platenumber( ){
- $this->token_verify();
- $userid = I('get.userid');
- if(!$userid){
- $this->api_fail(C('FAIL'),'用户id不存在');
- }
- $plate_info = M('jms_vehicle')->where(array('ID'=>$userid))->field('ID,LicensePlate')->select();
- if(!$plate_info){
- $this->api_fail(C('FAIL'),'该车主没有使用的车牌');
- }
- $this->api_success('成功',$plate_info);
- }
-
-
- public function submit_add_baojing( ){
- $this->token_verify();
- $post_data = I('post.data');
- if( empty($post_data) ){
- $this->api_fail(C('FAIL'),'报警信息不能为空!');
- }
- $mobile = trim($post_data['UserPhone']);
- if(!preg_match("/^1[345678]{1}\d{9}$/",$mobile)){
- $this->api_fail(C('FAIL'),'手机号格式不正确!');
- }
- $date = $post_data['StolenDate'];
- if($date == '请选择'){
- $this->api_fail(C('FAIL'),'请选择被盗日期');
- }
- $Keyword = strtoupper($post_data['LicensePlate']);
- if ( empty($Keyword)) {
- $this->api_fail(C('FAIL'),'报警车辆不能为空');
- }
- $userid = $post_data['userid'];
- if ( empty($userid)) {
- $this->api_fail(C('FAIL'),'用户id不能为空');
- }
- $stolenCityId = $post_data['StolenCityId'];
- if ( empty($stolenCityId)) {
- $this->api_fail(C('FAIL'),'请选择事发城市');
- }
- $stolenaddress = $post_data['StolenAddress'];
- if ( empty($stolenaddress)) {
- $this->api_fail(C('FAIL'),'事发地址不能为空');
- }
- $WoContent = trim($post_data['WoContent']);
- if (empty($WoContent)) {
- $this->api_fail(C('FAIL'),'报警原因不能为空');
- }
- //获取登录用户城市id
- /*$cond = array('ID'=>$userid);
- $cityid = M('uc_user')->where($cond)->getField('CityId');
- if(!$cityid){
- $this->api_fail('failerror','获取登录城市失败!');
- }*/
- $vehicle_info = M('jms_vehicle')->where(array( 'LicensePlate|IdCard|UserPhone' => $Keyword ))->field('ID,UserId,CityId,IdCard,UserPhone,LicensePlate')->find();
- if(!$vehicle_info){
- $this->api_fail(C('FAIL'),'报警车辆不存在!');
- }
- /*if( $vehicle_info['CityId'] != $cityid ){
- $this->api_fail('failerror','该车辆不在管辖区域,无法添加报警!');
- }
- if(!$vehicle_info['UserId']){
- $this->api_fail('failerror','此车辆还未开户,不能添加报警信息!');
- }*/
-
- //$vehicle_id = $vehicle_info['ID'];
- /*$chezhu_id = $vehicle_info['UserId'];
- //$chezhu_info = fd_get_userinfo($chezhu_id);
- //$chezhu_info = get_chezhu_info($chezhu_id);*/
- //$this->api_check_vehicle_isrepeat2($vehicle_id);
- if ($post_data['StolenDate'] != '请选择') {
- $StolenDate = $post_data['StolenDate'];
- $StolenDate = date('Y-m-d',strtotime($StolenDate));
- // 被盗日期不能超过当前时间
- $now_time = date('Y-m-d');
- if(strtotime($StolenDate) > strtotime($now_time)){
- $this->api_fail(C('FAIL'),'被盗日期不能超过当前时间!');
- }
- } else {
- $StolenDate = date('Y-m-d');
- }
- if(M('jms_baojing')->where(array('LicensePlate' => $vehicle_info['LicensePlate'],'StolenState'=>0))->find()){
- $this->api_fail(C('FAIL'),'报警信息已经存在');
- }
- $StolenCityId = explode(',',$stolenCityId);
- $StolenCityId = $StolenCityId[2]+1000;
- $data = array(
- 'WoContent' => $WoContent,
- 'VehicleId' => $userid,
- 'LicensePlate' => $vehicle_info['LicensePlate'],
- 'IdCard' => $vehicle_info['IdCard'],
- 'UserId' => $userid,
- 'UserPhone' =>$mobile,
- 'CityId' => $vehicle_info['CityId'],
- 'SubmitUserId' => $userid,
- 'SubmitTime' => date('Y-m-d H:i:s'),
- 'StolenDate' => $StolenDate,
- 'StolenCityId' => $StolenCityId, //新增:被盗城市id
- 'StolenAddress' => $stolenaddress
- );
- if (!M('jms_baojing')->createAdd($data)) {
- $this->api_fail(C('FAIL'),'添加报警信息失败');
- }
- $this->api_success('添加报警信息成功');
-
- }
-
-
- public function update_jg_registrationid( ){
- $this->token_verify();
- $post_data = I('post.data');
- //$post_data = json_decode(htmlspecialchars_decode(I('post.data')),true);
-
- if( empty($post_data) ){
- $this->api_fail(C('FAIL'),'post_data不能为空!');
- }
- $regid = $post_data['regid'];//极光推设备唯一标识id
- if( empty($regid) ){
- $this->api_fail(C('FAIL'),'极光推注册id不能为空!');
- }
- if(!$post_data['uid']){
- $this->api_fail(C('FAIL'),'uid不能为空!');
- }
- $cond = array(
- 'ID' => $post_data['uid']
- );
- $result = M('jms_vehicle')->where($cond)->setField('JgClientRegistrationId',$regid);
- if( false === $result ){
- $this->api_fail(C('FAIL'),'更新极光推注册信息失败! error:'.M('jms_vehicle')->getDbError());
- }
- $this->api_success('更新成功');
- }
-
-
- public function save_fence_info( ){
- $this->token_verify();
- $fence_info =I('post.data');
- $fenceData = htmlspecialchars_decode($fence_info['data']);
- $plate = $fence_info['plate'];
- if( !$fence_info || !$plate){
- json_fail('Missing param !');
- }
- $fence_data = json_decode($fenceData, true);
- // 保存百度地图
- $fence_data['data']['center'] = \Jms\Algo\Geometry::convertGcj02ToBd09($fence_data['data']['center']['lat'], $fence_data['data']['center']['lng']);
- $data = array(
- 'fenceStatus' => $fence_info['fenceAlarmEnable'] == 'true' ? true : false,
- 'fenceInfo' => $fence_data
- );
- //围栏信息改为存入redis表 rlfd_vehicle_fence( key车牌号,value围栏信息)
- $rlfd_vehicle_fence = Redis('rlfd_vehicle_fence','hash');
- $key = $plate;
- $val = json_encode($data, JSON_UNESCAPED_UNICODE);
- $hash = array($key=>$val);
- $result = $rlfd_vehicle_fence->add($hash);
- if( $result === false ){
- json_fail('保存失败');
- }
- json_success('保存成功');
- }
-
-
- public function get_gps_route( ){
- $this->token_verify();
- $postParm = I('post.data');
- $search_date = $postParm['date'];
- $gps_number = $postParm['gpsNumber'];
- if( !$gps_number || !$search_date){
- json_fail('Missing param !');
- }
-
-
- $timestamp = strtotime($search_date);
- if( !$timestamp ){
- json_fail('Date format error !');
- }
- $start_date = strtotime( date('Y-m-d 00:00:00',$timestamp) );
- $end_date = strtotime( date('Y-m-d 23:59:59',$timestamp) );
- $cond = array(
- 'DeviceId' => $gps_number,
- 'DeviceTime' => array( 'between', array($start_date,$end_date) ),
- );
- $fields = 'Longitude as lng,Latitude as lat,Speed as speed, DeviceTime as deviceTime';
- $dateStr = str_replace("-","",$search_date);
- $route_list = M('gps_location_'.$dateStr, '', C('DB_DSN_GPS'))->field($fields)->where($cond)->order('DeviceTime asc')->select();
- //var_dump(M('gps_location_'.$dateStr, '', C('DB_DSN_GPS'))->getLastSql());
- if( !$route_list ){
- json_fail('无轨迹 !');
- }
-
- foreach($route_list as &$v){
- $v['deviceTime'] = date('Y-m-d H:i:s', $v['deviceTime']);
- }
-
- $route_data = json_encode($route_list);
- //$testData = json_encode($testData);
- json_success('success',$route_data);
- //json_success('success',$testData);
-
- }
-
-
- public function change_lock_status( ){
- $this->token_verify();
- $lock_state = I('post.data')['lockStatus'];
- $device_number = I('post.data')['deviceNumber'];
- if( !$device_number || $lock_state === ''){
- json_fail('Missing param !');
- }
- //检查锁定状态值
- if( !is_numeric($lock_state) && ($lock_state != 0 && $lock_state != 1) ){
- json_fail('unknown state !');
- }
- $cond = array('DeviceNumber' => $device_number);
- $result = M('jms_vehicle')->where($cond)->setField('LockStatus',$lock_state);
- if( $result === false ){
- json_fail('设置失败');
- }
- json_success('设置成功');
- }
-
-
- public function api_success( $msg, $data ){
- $array = array(
- 'success'=>true,
- 'message'=>$msg,
- 'data' => $data,
- 'code'=>200
- );
- echo json_encode($array,JSON_UNESCAPED_UNICODE);
- exit;
- }
-
-
- public function api_fail( $code, $msg, $data ){
- $array = array(
- 'success'=>false,
- 'message'=>$msg,
- 'data' => $data,
- 'code'=>$code
- );
- echo json_encode($array,JSON_UNESCAPED_UNICODE);
- exit;
- }
-
-
- public function get_gonggao_info( ){
- $this->token_verify();
- $plate = I('get.plate');
- $msg = M('jms_baojing_message')->where(array('Type'=>C('BROADCASTING'),'LicensePlate'=>$plate))->select();
- if(!$msg){
- $this->api_fail(C('FAIL'),'公告信息不存在');
- }
- $this->api_success('成功',$msg);
- }
-
-
- public function token_verify( ){
- $token = I('token');//用户登录token
- $login_mark = I('loginMark');
- if(!$token){
- $this->api_fail(C('FAIL'),'token不存在 !');
- }
- if(!$login_mark){
- $this->api_fail(C('FAIL'),'login_mark不存在 !');
- }
- //获取token
- $redis = Redis('czapp_client_login_session','hash');
- $key = $login_mark;
- $val = json_decode($redis->get($key),true);
-
- if(!$val){
- $this->api_fail(C('FAIL'),'无效token1 !');
- }
-
- //验证token是否一致
- if( $token != $val['token'] ){
- $this->api_fail(C('FAIL'),'无效token2 !');
- }
-
- //验证token是否过期
- if(!$val['login_time']){
- $this->api_fail(C('FAIL'),'没有登录时间,token校验失败 !');
- }
- $login_time = strtotime($val['login_time']);
- $end_time = $login_time + $val['expire']*60;
- if(time()>$end_time){
- $this->api_fail(C('TOKEN_OVERTIME'),'token失效,请重新登录 !');
- }
- }
-
-
- public function get_gonggao_detail( ){
- header('Access-Control-Allow-Origin:*');
- $this->token_verify();
- $plate = I('get.plate');
- $msg = M('jms_baojing_message')->where(array('Type'=>C('BROADCASTING'),'LicensePlate'=>$plate))->find();
- if(!$msg){
- $this->api_fail(C('FAIL'),'公告信息不存在');
- }
- $this->api_success('成功',$msg);
- }
-
-
- public function get_baojing_detail( ){
- $this->token_verify();
- $plate = I('get.plate');
- $addtime = I('get.addtime');
- $msg = M('jms_baojing_message')->where(array('Type'=>C('STOLEN_ALARM'),'LicensePlate'=>$plate,'AddTime'=>$addtime))->find();
- if(!$msg){
- $this->api_fail(C('FAIL'),'报警信息不存在');
- }
- $this->api_success('成功',$msg);
- }
-
-
- public function register( ){
- $where = array('LicensePlate'=>I('post.LicensePlate'));
- $userinfo = M('jms_vehicle')->where($where)->find();
- if(!$userinfo){
- $this->api_fail(C('FAIL'),'用户车牌还未登记');
- }
- if($userinfo['FullName'] != I('post.FullName')){
- $this->api_fail(C('FAIL'),'姓名和备案时填写不一致');
- }
- if($userinfo['IdCard'] != I('post.IdCard')){
- $this->api_fail(C('FAIL'),'身份证和备案时填写不一致');
- }
- $data = array(
- 'Password' => I('post.Password'),
- );
- $result = M('jms_vehicle')->createSave($where,$data);
- if(!$result){
- $this->api_fail(C('FAIL'),'注册失败');
- }
- $this->api_success('注册成功');
- }
-
-
- public function get_fence_info( ){
- $this->token_verify();
- $plate = I('get.data');
- if( !$plate){
- json_fail('Missing param !');
- }
-
- $rlfd_vehicle_fence = Redis('rlfd_vehicle_fence','hash');
- $fence = $rlfd_vehicle_fence->get($plate);
- if( !$fence ){
- json_fail('无围栏 !');
- }
- $fence_info = json_decode($fence, true);
- // 转高德地图坐标
- $fence_info['fenceInfo']['data']['center'] = \Jms\Algo\Geometry::convertBd09ToGcj02($fence_info['fenceInfo']['data']['center']['lat'], $fence_info['fenceInfo']['data']['center']['lng']);
- $fence = json_encode($fence_info);
- json_success('success',$fence);
-
- }
-
-
- public function get_gps_route_table( ){
- $this->token_verify();
- $postParm = I('post.data');
- $search_date = $postParm['date'];
- $gps_number = $postParm['gpsNumber'];
- if( !$gps_number || !$search_date){
- json_fail('请检查GPS标签或者日期 !');
- }
- //$list = $this->getBTGpsRoute($search_date,'1');//test
- $list = $this->getBTGpsRoute($search_date, $gps_number);
- $lngLatAlter = new \Jms\Algo\Geometry();
- $respData = array();
- foreach($list as $v){
- $alterRes = $lngLatAlter->convertBd09ToGcj02($v['Latitude'], $v['Longitude']);
- $nv = array(
- 'lat' => $alterRes['lat'],
- 'lng' => $alterRes['lng'],
- 'speed' => $v['Speed'],
- 'deviceTime' => $v['OnlineTime']
- );
- array_push($respData, $nv);
- }
- /*
- foreach(&$respData as &$v){
- $v['deviceTime'] = date('Y-m-d H:i:s', $v['deviceTime']);
- }
- */
- if(!$respData){
- json_success('无轨迹');
- }
- $route_data = json_encode($respData);
- //$testData = json_encode($testData);
- json_success('success',$route_data);
- //json_success('success',$testData);
- }
-
-
- private function getBTGpsRoute( $date, $gpsNumber ){
- if(!$gpsNumber){
- return false;
- }
- if(!$date){
- $date = date('Y-m-d');
- }
- //获取所有轨迹信号
- $option = array();
- $option['pagesize'] = 1000;
- $option['asc'];
- $option['fields'] = array('Longitude','Latitude','Speed','DeviceTime');
- $routesig = new \Rlfd\Route\RouteSignal();
- $list = $routesig->queryEbicyleDailyGpsSignals($gpsNumber, $date,$option);
-
- //var_dump($list);
- //var_dump(array('route'=>$list,'vehicle'=>$vehicle_info));
- return $list;
- }
-
-
- public function get_driving_data( ){
- $gpsNumber = $_GET['data']['gpsNumber'];
- //var_dump($_GET);
- $days = C('DRIVING_STATISTICS_DAYS');
- if(!$gpsNumber){
- json_fail('未获取到gps设备号');
- }
- if(!$days){
- $days = 5;
- }
- $drivingData = array();
-
-
-
- for($i = $days-1; $i > 0; --$i){
- $preStr2time = strtotime('-'.$i.'days');
- $date = date('Y-m-d', $preStr2time);
- /*
- $where = array(
- 'GpsDeviceNumber' => $gpsNumber,
- 'Date' => $date
- );
- $sqlData = M('gps_driving_data')->where($where)->find();//当天前的数据查询sql数据库
- if($sqlData){
- $dayData = array(
- 'date' => $date,
- 'averageSpeed' => $sqlData['AverageSpeed'],
- 'totalTime' => $sqlData['TotalTime'],
- 'totalDist' => $sqlData['TotalDistance']
- );
- array_push($drivingData, $dayData);
- continue;
- }
- */
- $cache = S($gpsNumber.'_cache'.$date);
- if($cache){
- array_push($drivingData, $cache);
- continue;
- }else{
- $dayData = $this->searchDrivingData($gpsNumber, $date);
- array_push($drivingData, $dayData);
- S($gpsNumber.'_cache'.$date, $dayData, 3600*24*7);
- }
-
- }
- //当日
- $todayDate = date('Y-m-d');
-
- $todayCache = S($gpsNumber.'_cache'.$todayDate);
- if(!$todayCache){
- $todayData = $this->searchDrivingData($gpsNumber, $todayDate);
- array_push($drivingData, $todayData);
- $todayCache = S($gpsNumber.'_cache'.$todayData, $todayData, 3600*24);
- }else{
- $newOnlineTime = M('jms_vehicle')->where(array('GpsDeviceNumber' => $gpsNumber))->getField('GpsOnlineTime');
- $nTime = strtotime($newOnlineTime);
- $oTime = strtotime($lastOnlineTime);
- if($nTime == $oTime){
- array_push($drivingData, $todayCache);
- }else{
- $todayData = $this->searchDrivingData($gpsNumber, $date);
- array_push($drivingData, $todayData);
- $todayCache = S($gpsNumber.'_cache'.$todayDate, $todayData, 3600*24);
- }
- }
-
- //dump($drivingData);
- if(!$drivingData){
- json_fail('未查询到近'.$days.'日行驶数据');
- }
-
- json_success('查询成功', $drivingData);
-
-
-
- }
-
-
- private function searchDrivingData( $gpsNumber, $date ){
- if(!$gpsNumber){
- return false;
- }
-
- $start = microtime(true);
-
- $result = $this->getBTGpsRoute( $date,$gpsNumber);
-
- $end = microtime(true);
-
- $totalTime = 0;
- $totalDist = 0;
-
- $lastOnlineTime =end($result)['OnlineTime'];
-
- for($i = 0; $i < count($result)-1; ++$i){
- $lat1 = $result[$i]['lat'];
- $lng1 = $result[$i]['lng'];
- $lat2 = $result[$i+1]['lat'];
- $lng2 = $result[$i+1]['lng'];
- $dist = $this->get_2points_distance($lat1,$lng1,$lat2,$lng2 );
- $totalDist += $dist;
- $time = strtotime($result[$i+1]['OnlineTime']) - strtotime($result[$i]['OnlineTime']);
- $totalTime += ($time/3600);
- }
-
- return array(
- 'totalTime' => $totalTime,
- 'totalDist' => $totalDist,
- // 'averageSpeed' => $totalDist/$totalTime,
- 'lastOnlineTime' => $lastOnlineTime,
- 'caculateTime' => $end - $start
- );
-
-
- }
-
-
- private function get_2points_distance( $lat1, $lng1, $lat2, $lng2, $radius = 6378.137 ){
- $rad = floatval(M_PI / 180.0);
- $lat1 = floatval($lat1) * $rad;
- $lng1 = floatval($lng1) * $rad;
- $lat2 = floatval($lat2) * $rad;
- $lng2 = floatval($lng2) * $rad;
-
- $lat1 = sprintf("%.8f", $lat1);
- $lng1 = sprintf("%.8f", $lng1);
- $lat2 = sprintf("%.8f", $lat2);
- $lng2 = sprintf("%.8f", $lng2);
-
- $theta = $lng2 - $lng1;
-
- $dist = acos(sin($lat1) * sin($lat2) +
- cos($lat1) * cos($lat2) * cos($theta)
- );
-
-
- if ($dist < 0 ) {
- $dist += M_PI;
- }
-
- $dist = $dist * $radius;
- return sprintf('%.8f', $dist);
- }
-
-
- public function test_function( ){
- //距离测试
- /*
- $lat1 = '31.253411';
- $lng1 = '121.518998';
-
- $lat2 = '31.277117';
- $lng2 = '120.744587';
-
- $distance = $this->get_2points_distance($lat1, $lng1, $lat2, $lng2);
- var_dump($distance);
- */
-
- //离线时间测试
- $interval = 343088;
- $time = $this->getFormatTime($interval);
- echo $time;
- }
-
-
- public function get_vehicle_ElectronicPlateUrl( ){
- $this->token_verify();
- $userid = I('userid');
- $electronicPlateUrl = S('key');
- if(!empty($electronicPlateUrl[0]['FrontElectronicPlateUrl']) && !empty($electronicPlateUrl[0]['BackElectronicPlateUrl'])){
- $this->api_success('成功',$electronicPlateUrl[0]);
- }
- else{
- $result = M('jms_vehicle')->where(array('ID'=>$userid))->field('FrontElectronicPlateUrl,BackElectronicPlateUrl')->cache('key',86400)->select();
- $electronicPlateUrl = S('key');
- $this->api_success('成功',$electronicPlateUrl[0]);
- }
-
-
- }
-
-
- public function getCityInfo( ){
- $this->token_verify();
- $cityid = I('get.cityid');
- if(!$cityid){
- $this->api_fail(C('FAIL'),'开户城市不存在');
- }
- $parentcity = M('jms_city')->where(array('ID'=>$cityid))->find();
-
- $child_1 = M('jms_city')->where(array('ParentId'=>$parentcity['ParentId']))->select();
- $this->api_success('成功',$child_1);
-
- }
-
-
- public function get_cityinfo_by_cityid( ){
- $cityid = I('cityid');
- $ids = M('jms_city')->field('ParentId,ProvinceId')->where(array('ID'=>$cityid))->find();
- $result = $ids['ProvinceId'].','.($ids['ParentId']-100).','.($cityid-1000);
- $this->api_success('成功',$result);
-
- }
-
-
- private function getFormatTime( $timeInterval ){
- if ($timeInterval < 60){
- $formatime = $timeInterval.'秒';
- }elseif($timeInterval < 60 * 60){
- $min = floor($timeInterval/60);
- $formatime = $min.'分钟';
- }elseif($timeInterval < 60 * 60 * 24){
- $h = floor($timeInterval/(60*60));
- $formatime = $h.'小时';
- }else{
- $d = floor($timeInterval/(60*60*24));
- $formatime = $d.'天';
- }
-
- return $formatime;
- }
-
- }
|