1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051 |
- <?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');
- if(!$plate){
- json_fail('未获取到车牌');
- }
- $pageSize = I('get.pagesize');
- if(!$pageSize){
- $pageSize = 10;
- }
- $page = I('get.page');
- if(!$page){
- $page = 0;
- }
- $start = $pageSize * $page;
- $where =array('LicensePlate'=>$plate, 'Type' => array('neq', C('BROADCASTING') ) );
- $msg = M('jms_baojing_message')->where($where)->limit($start, $pageSize)->order('AddTime desc')->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(!$licensePlate){
- json_fail('无法获取到车牌');
- }
- if(!$gpsNumber){
- json_fail('无法获取到gps设备号');
- }
- //获取车辆最新位置mysql
- /*
- $result = M('jms_vehicle')->field('GpsLongitude, GpsLatitude, Address, FenceShapeInfo, LockStatus, FenceAlarmEnable, Battery, GpsOnlineTime, Speed, CityId')->where(array('DeviceNumber' => $deviceNumber))->find();
- */
-
- //redis获取
- $vehicle = Redis('czapp_lock_status','hash');
- //var_dump($vehicle);
- $lockStatus = $vehicle->get($licensePlate);
-
-
-
- $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' => $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'),'请选择事发城市');
- }
- $bjtype = $post_data['bjtypeid'];
- if ( empty($bjtype)) {
- $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;
- $bjtype = explode(',',$bjtype);
- if($bjtype[2]=='-'){
- $alarmnumber = $bjtype[1];
- }else{
- $alarmnumber = $bjtype[2];
- }
- $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,
- 'AlarmNumber' => $alarmnumber
- );
- 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'];
- if($lock_state === ''){
- json_fail('无法获取锁车状态');
- }
- $device_number = I('post.data')['deviceNumber'];
- $gpsNumber = I('post.data')['gpsNumber'];
- $plate = I('post.data')['plate'];
- if( !$device_number && !$gpsNumber){
- json_fail('无法获取rfid或者gps设备号,无法锁车 !');
- }
- if(!$device_number){
- $cond = array('GpsDeviceNumber' => $gpsNumber);
- }else{
- $cond = array('DeviceNumber' => $device_number);
- }
-
- if(!$plate){
- json_fail('无法获取车牌号');
- }
- //检查锁定状态值
- if( !is_numeric($lock_state) && ($lock_state != 0 && $lock_state != 1) ){
- json_fail('未知的锁车状态值 !');
- }
-
- $result = M('jms_vehicle')->where($cond)->setField('LockStatus',$lock_state);
- if( $result === false ){
- json_fail('设置失败');
- }
- //同步redis
- $vehicle = Redis('czapp_lock_status','hash');
- $hash = array($plate => $lock_state);
-
- $lockStatus = $vehicle->add($hash);
- if(!$lockStatus){
- json_fail('同步锁车状态失败');
- }
- if($lock_state == 1){
- $lastLoction = Redis('rfld_gps_last_location', 'hash');
- $lockInfo = $lastLoction->get($gpsNumber);
- if(!$lockInfo){
- json_fail('无法获取到末次定位位置,请确保定位正常');
- }
-
- $lockInfoRedis = Redis('czapp_lockinfo', 'hash');
- $lockInfoRes = $lockInfoRedis->add(array($gpsNumber => $lockInfo));
- if(!$lockInfoRes){
- 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');
- if(!$plate){
- json_fail('无法获取车牌');
- }
- $cityid = I('get.cityid');
- if(!$cityid){
- $cityid = C('MAP_DEFAULT_CITY_ID');
- }
- $pageSize = I('get.pagesize');
- if(!$pageSize){
- $pageSize = 10;
- }
- $page = I('get.page');
- if(!$page){
- $page = 0;
- }
- $start = $pageSize * $page;
-
- $msg = M('jms_baojing_message')->where(array('Type'=>C('BROADCASTING'), 'CityId' => $cityid))->limit($start, $pageSize)->order('AddTime desc')->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');
- $id = I('get.id');
- $msg = M('jms_baojing_message')->where(array('ID' => $id, 'LicensePlate'=>$plate))->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_fail('无轨迹');
- }
- $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['sort'] = 'asc';
- $option['fields'] = array('Longitude','Latitude','Speed','DeviceTime');
- $routesig = new \Rlfd\Route\RouteSignal();
-
- // huang 2019.07.25
- if (C('FDV2.GPS_JAVA_HOST')) {//GPS轨迹查询_java接口域名
- $list = $routesig->queryEbicyleDailyGpsSignalsJava($gpsNumber, $date,$option);
- } else {
- $list = $routesig->queryEbicyleDailyGpsSignals($gpsNumber, $date,$option);
- }
- // huang 2019.07.25
-
- //$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']);
-
- if($time < 300){
- $totalTime += $time;
- }
- }
-
- if($totalTime){
- $totalTime = $totalTime/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('electronicPlateUrl_'.$userid);
- if(!empty($electronicPlateUrl['FrontElectronicPlateUrl']) && !empty($electronicPlateUrl['BackElectronicPlateUrl'] )){
- $this->api_success('成功',$electronicPlateUrl);
- }
- else{
- $vehicle_info = M('jms_vehicle')->where(array('ID'=>$userid))->field('FrontElectronicPlateUrl,BackElectronicPlateUrl')->find();
- S('electronicPlateUrl_'.$userid,$vehicle_info,86400);
- $this->api_success('成功',$vehicle_info);
- }
- }
-
-
- 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;
- }
-
-
- public function get_insurance_detail( ){
- $this->token_verify();
- $data = I('post.');
- $plate = $data['plate'];
- $vehicleId = M('jms_vehicle')->where(array('LicensePlate'=>$plate))->field('ID')->find();
- $insureInfo = M('jms_insure')->where(array('VehicleId'=>$vehicleId['ID']))->field('InsuranceId,StartDate,EndDate')->find();
- if($insureInfo){
- $insuranceInfo = M('jms_insurance')->where(array('ID'=>$insureInfo['InsuranceId']))->field('InsuranceName')->find();
- $insuranceDetailInfo = M('jms_insurance_detail')->where(array('VehicleId'=>$vehicleId['ID']))->select();
- $result['insuranceDetailInfo'] = $insuranceDetailInfo;
- $result['insuranceName'] = $insuranceInfo['InsuranceName'];
- $result['insureInfo'] = $insureInfo;
- $this->api_success('成功',$result);
- }
- else{
- $this->api_success('无保险',null);
- }
-
- }
-
-
- public function get_article_info( ){
- $this->token_verify();
- $pageSize = I('get.pagesize');
- if(!$pageSize){
- $pageSize = 10;
- }
- $page = I('get.page');
- if(!$page){
- $page = 0;
- }
- $start = $pageSize * $page;
- $where =array('IsRelease'=>1);
- $msg = M('jms_article')->where($where)->limit($start, $pageSize)->order('AddTime desc')->select();
- if(!$msg){
- $this->api_fail(C('FAIL'),'公告信息不存在');
- }
- $this->api_success('成功',$msg);
- }
-
-
- public function get_article_detail( ){
- $this->token_verify();
- //$plate = I('get.plate');
- $id = I('get.id');
- $msg = M('jms_article')->where(array('ID' => $id))->find();
- if(!$msg){
- $this->api_fail(C('FAIL'),'公告信息不存在');
- }
- $this->api_success('成功',$msg);
- }
-
-
- public function get_contact_us( ){
- $this->token_verify();
- $typeid = M('jms_yy_config_type')->where(array('CityId'=>'0','TypeCode'=>'CZAPP_ContactUs'))->getField('ID');
- $where = array('TypeId'=>$typeid,'Name'=>'联系我们','CityId'=>'0');
- $msg = M('jms_yy_config')->where($where)->find();
- if(!$msg){
- $this->api_fail(C('FAIL'),'联系我们不存在');
- }
- $this->api_success('成功',$msg);
- }
-
-
- public function get_about_us( ){
- $this->token_verify();
- $typeid = M('jms_yy_config_type')->where(array('CityId'=>'0','TypeCode'=>'CZAPP_AboutUs'))->getField('ID');
- $where = array('TypeId'=>$typeid,'Name'=>'关于我们','CityId'=>'0');
- $msg = M('jms_yy_config')->where($where)->find();
- if(!$msg){
- $this->api_fail(C('FAIL'),'关于我们不存在');
- }
- $this->api_success('成功',$msg);
- }
-
- }
|