|
- <?php
- /**
- * Created by PhpStorm.
- * User: Steven
- * Date: 2017/2/17
- * Time: 14:06
- */
-
- namespace backend\modules\motorcade\models;
-
- use phpDocumentor\Reflection\Types\Null_;
- use Yii;
-
- class BusGps
- {
- private $AK = "qnG9Q2oSgfGlwLUBeYBp7gTvFUCk31me"; //百度访问应用AK
- private $GeocodingUrl = "http://api.map.baidu.com/geocoder/v2/";
-
- /**
- * 获取车辆的最新GPS数据(运营主体下有GPS的车辆)
- * User: Steven
- */
- public function getNewGpsData($bus_list = '', $first = '')
- {
- $main_cooperation_id = Yii::$app->user->identity->MAIN_CORP_ID2;
- // $main_cooperation_id = 7;
- if ($bus_list == '') {
- $sql_str = "";
- } else {
- $sql_str = " and bus_no in($bus_list)";
- }
- $conn = Yii::$app->db;
- $date = date('Y-m-d', time());
-
- /*if ($first == '') {
- $sql = "select bus_no from gps_new as a where create_time = (select max(b.create_time) from gps_new as b where a.bus_no = b.bus_no ) and a.main_corp_id={$main_cooperation_id} $sql_str;";
-
- } else {
- $sql = "select * from gps_new as a where create_time = (select b.create_time from gps_new as b where a.bus_no = b.bus_no order by b.create_time desc limit 1,1 ) and a.main_corp_id={$main_cooperation_id} $sql_str;";
- }*/
- $sql = "select a.bus_no,a.run_date,a.latitude,a.longitude,a.gpsSpeed,a.direction from gps_new a ,(
- select max(ID) as id from gps_new where main_corp_id=$main_cooperation_id and run_date='{$date}' and create_time>'{$date} 00:00:00' GROUP BY bus_no) b where a.id=b.id $sql_str";
- $res = $conn->createCommand($sql)->queryAll();
- return $res;
- }
-
- /**
- * 获取聚合状态下的数据
- * User: Steven
- * @return array
- */
- public function getPolymerData()
- {
- $main_cooperation_id = Yii::$app->user->identity->MAIN_CORP_ID2;
- $conn = Yii::$app->db;
- $today = date('Y-m-d', time());
- /*$sql = "select city as title,group_concat('''',bus_no,'''') as car_list, count(1) as num from gps_new as a where create_time =
- (select max(b.create_time) from gps_new as b where a.bus_no = b.bus_no and b.run_date='{$today}') and a.run_date='{$today}' and a.main_corp_id={$main_cooperation_id} GROUP BY city;";*/
- $sql = "select city as title,group_concat('''',bus_no,'''') as car_list, count(1) as num from(
- select a.bus_no,a.run_date,a.latitude,a.longitude,a.gpsSpeed,a.direction,a.city from gps_new a ,(
- select max(ID) as id from gps_new where main_corp_id=$main_cooperation_id and run_date='{$today}' and create_time>'{$today} 00:00:00' GROUP BY bus_no) b where a.id=b.id) as c GROUP BY c.city";
- $res = $conn->createCommand($sql)->queryAll();
- return $res;
- }
-
-
- /**
- * 查询车辆详细信息
- * User: Steven
- * @param $gpsData
- */
- public function getCarDataService($gpsData, $arr)
- {
- $conn = Yii::$app->db;
- $date = date('Y-m-d', time());
- /*$res = $conn->createCommand("select b.bus_no,b.seat_desc,a.itinerary_name,a.start_time,a.run_status,c.driver_name,d.start_time as end_time
- from bus_order a,base_bus b,base_driver c,bus_itinerary d
- where a.send_bus_res_id=b.BUS_ID and b.BUS_NO='{$gpsData['bus_no']}' and a.send_bus_driver_res_id=c.DRIVER_ID
- and a.itinerary_id=d.itinerary_id and a.run_date='{$date}' and a.cancel_flag=0 and run_status=437
- ORDER BY d.station_seq_id DESC limit 1;
- ")->queryAll();*/
- $res = $conn->createCommand("select a.bus_no,a.seat_desc,b.itinerary_name,b.start_time,b.run_status,c.driver_name,d.start_time as end_time from base_bus a
- LEFT JOIN bus_order b on a.BUS_ID=b.send_bus_res_id and b.run_date='{$date}' and b.cancel_flag=0 and b.run_status=437
- LEFT JOIN base_driver c on b.send_bus_driver_res_id=c.DRIVER_ID
- LEFT JOIN bus_itinerary d on b.itinerary_id=d.itinerary_id
- where a.BUS_NO='{$gpsData['bus_no']}' and a.cancel_flag=0 ORDER BY d.station_seq_id DESC limit 1;
- ")->queryAll();
- if ($res[0]['run_status'] == 437) { //出行中的车次
- $arr[$gpsData['bus_no']] = array(
- 'plateCode' => $gpsData['bus_no'],
- 'seat_desc' => isset($res[0]['seat_desc']) ? $res[0]['seat_desc'] : '',
- 'bus_status' => 1, //车辆状态
- 'bus_desc' => '出车中',
- 'lat' => $gpsData['latitude'],
- 'lng' => $gpsData['longitude'],
- 'dspeed' => $gpsData['gpsSpeed'], //gps速
- 'direction' => $gpsData['direction'],
- 'driver' => isset($res[0]['driver_name']) ? $res[0]['driver_name'] : '',
- 'itinerary_name' => isset($res[0]['itinerary_name']) ? $res[0]['itinerary_name'] : '',
- 'start_time' => isset($res[0]['start_time']) ? $res[0]['start_time'] : '',
- 'end_time' => isset($res[0]['end_time']) ? $res[0]['end_time'] : ''
- );
- } else { //当前车次当前没有出行
- $arr[$gpsData['bus_no']] = array(
- 'plateCode' => $gpsData['bus_no'],
- 'seat_desc' => $res[0]['seat_desc'],
- 'bus_status' => 0, //车辆状态
- 'bus_desc' => '空闲',
- 'lat' => $gpsData['latitude'],
- 'lng' => $gpsData['longitude'],
- 'dspeed' => $gpsData['gpsSpeed'], //gps速
- 'direction' => $gpsData['direction'],
- 'driver' => '',
- 'itinerary_name' => '',
- 'start_time' => '',
- 'end_time' => ''
- );
- }
- return $arr;
- }
-
- /**
- * 获取车辆运营概况统计数据
- * User: Steven
- */
- public function getStatistics($bus_no)
- {
- $main_cooperation_id = Yii::$app->user->identity->MAIN_CORP_ID2;
- $conn = Yii::$app->db;
- $date = date('Y-m-d', time());
- /* $sql = "select bus_id,bus_no from base_bus where GPS_ID <>0 and CANCEL_FLAG=0 and MAIN_CORP_ID={$main_cooperation_id}";
- $bus_list = $conn->createCommand($sql)->queryAll();*/
- $bus_count = count($bus_no); //所有车辆个数
- /*$bus_no_list = '';
- foreach ($bus_list as $value) {
- $bus_no_list .= $bus_no_list == '' ? $value['bus_id'] : ',' . $value['bus_id'];
- }*/
- //TODO:查询当前出车的车辆个数
- $sql_status = "select COUNT(1) as count from bus_order a,base_user b
- where a.create_user_id=b.id and b.MAIN_CORP_ID2=$main_cooperation_id and a.run_date='{$date}' and a.run_status=437 and a.cancel_flag=0";
- $bus_status = $conn->createCommand($sql_status)->queryAll();
- $online_count = $bus_status[0]['count']; //当前出车车辆
- //TODO:今日出车线路分布
- $res = $conn->createCommand("select a.bus_number,a.itinerary_name,a.line_type,a.run_status,b.bus_no
- from bus_order a
- inner join base_bus b on a.send_bus_res_id =b.bus_id and b.main_corp_id=$main_cooperation_id
- where a.run_date='{$date}' and a.run_status in (435,436,437,438);")->queryAll();
- $all_count = 0;
- $provice_count = 0;
- $country_count = 0;
- $shdsn_count = 0;
- $qdh_count = 0;
- $xt_count = 0;
- $wz_count = 0;
- $zz_count = 0;
- $ts_count = 0;
- $poi_arr = array();
- if ($res) {
- foreach ($res as $value) {
- $all_count = $all_count + 1;
- /*if (in_array($value['bus_no'], $bus_no)) {
- //统计车辆运营概况
- if ($value['run_status'] == 437) { //出车
- $on_run_count = $on_run_count + 1;
- $on_bus_list .= $on_bus_list == '' ? $value["bus_no"] : "," . $value["bus_no"];
- } else {
- $off_run_count = $off_run_count + 1;
- $off_bus_list .= $off_bus_list == '' ? $value["bus_no"] : "," . $value["bus_no"];
- }
- }*/
- //统计出车线路分布
- if ($value['line_type'] == 1) { //1:省级 2:市内
- $provice_count = $provice_count + 1;
- } else {
- $country_count = $country_count + 1;
- }
- //上海迪士尼,千岛湖,西塘,乌镇,周庄,汤山
- if (strstr($value['itinerary_name'], '上海迪士尼') != false) { // 包含
- $shdsn_count = $shdsn_count + 1;
- }
- if (strstr($value['itinerary_name'], '千岛湖') != false) {
- $qdh_count = $qdh_count + 1;
- }
- if (strstr($value['itinerary_name'], '西塘') != false) {
- $xt_count = $xt_count + 1;
- }
- if (strstr($value['itinerary_name'], '乌镇') != false) {
- $wz_count = $wz_count + 1;
- }
- if (strstr($value['itinerary_name'], '周庄') != false) {
- $zz_count = $zz_count + 1;
- }
- if (strstr($value['itinerary_name'], '汤山') != false) {
- $ts_count = $ts_count + 1;
- }
-
- }
- $array = array('shdsn_count' => $shdsn_count, 'qdh_count' => $qdh_count, 'xt_count' => $xt_count, 'wz_count' => $wz_count, 'zz_count' => $zz_count, 'ts_count' => $ts_count);
- arsort($array);
- $poi_name = '';
- foreach ($array as $key => $value) {
- if ($value != 0) {
- switch ($key) {
- case 'shdsn_count':
- $poi_name = '上海迪士尼';
- break;
- case 'qdh_count':
- $poi_name = '千岛湖';
- break;
- case 'xt_count':
- $poi_name = '西塘';
- break;
- case 'wz_count':
- $poi_name = '乌镇';
- break;
- case 'zz_count':
- $poi_name = '周庄';
- break;
- case 'ts_count':
- $poi_name = '汤山';
- break;
- }
- $poi_arr[] = array(
- 'poi_name' => $poi_name,
- 'num' => $value,
- 'percent' => round(($value / $all_count) * 100, 2),
- );
- }
- }
- }
- $result = array( //当前车辆运营状况
- 'run_data' => array(
- 0 => array(
- 'sum_run' => $bus_count,
- 'run' => $online_count,
- 'bus_list' => ''
- ),
- 1 => array(
- 'sum_run' => $bus_count,
- 'run' => $bus_count - $online_count,
- 'bus_list' => ''
- ),
- 2 => array(
- 'sum_run' => $bus_count,
- 'run' => 0,
- 'bus_list' => ''
- )
- ),
- 'line_data' => array( //今日出车线路分布
- 'provice_count' => $provice_count,
- 'city_count' => 0,
- 'city_inside_count' => $country_count
- ),
- 'poi_data' => $poi_arr
- );
- /*$res_task = $conn->createCommand("select count(*) as count,line_type from (select distinct a.send_bus_res_id,a.line_type from bus_order a,base_bus b
- where a.send_bus_res_id=b.BUS_ID and b.BUS_NO in({$bus_no}) and a.run_date='{$date}' and a.cancel_flag=0) c GROUP BY line_type;")->queryAll();*/
- return $result;
- }
-
- /**
- *
- * User: Steven
- * @param $bus_num_list
- * @return array
- */
- /*public function getBusOrderByNum($bus_num_list)
- {
- $conn = Yii::$app->db;
- $res = $conn->createCommand("select a.run_date,a.itinerary_name,b.bus_no,c.driver_name from bus_order a
- left join base_bus b on a.send_bus_res_id=b.bus_id
- left join base_driver c on a.send_bus_driver_res_id=c.driver_id
- where a.bus_number in ($bus_num_list)")->queryAll();
- return $res;
- }*/
-
- /**
- * 获取历史轨迹页面左侧车辆列表
- * User: Steven
- * @param $date
- * @return array
- */
- public function getCarList($date, $key_word)
- {
- $main_cooperation_id = Yii::$app->user->identity->MAIN_CORP_ID2;
- $conn = Yii::$app->db;
- $res = $conn->createCommand("select a.bus_no,count(b.send_bus_res_id) as count from base_bus a
- LEFT JOIN bus_order b on a.BUS_ID=b.send_bus_res_id and b.run_date='{$date}' and b.cancel_flag=0
- where a.main_corp_id=$main_cooperation_id and a.gps_id<>0 and a.CANCEL_FLAG=0 and a.bus_no like '%{$key_word}%'
- GROUP BY a.bus_no ORDER BY count DESC")->queryAll();
- return $res;
- }
-
- function objectToArray ($object) {
- if(!is_object($object) && !is_array($object)) {
- return $object;
- }
- return array_map('objectToArray', (array) $object);
- }
- /**
- * 存储GPS数据
- * User: Steven
- * @param $result
- * @return int
- */
- public function uploadGpsData($result)
- {
- $conn = Yii::$app->db;
- $data_arr = array();
- foreach ($result as $item) {
- if ($item['IsOnLine'] == '1') {
- $item['WeiDu'] = $item['WeiDu'] / 1000000;
- $item['JingDu'] = $item['JingDu'] / 1000000;
- $location = $item['WeiDu'] . ',' . $item['JingDu'];
- $data = $this->GeocodingAPI($location, 2);
- $data_arr[] = array(
- date('Y-m-d H:i:s', strtotime($item['DateTime'])), 7, 628,
- $item['CarLPN'], //车牌号
- date('Y-m-d', time()),
- $item['WeiDu'], //维度
- $item['JingDu'], //经度
- $item['Speed'], //gps速度
- $item['Speed'], //速度
- 0, //高度
- $item['Direction'], //方向
- $data['addressComponent']['province'], //所属市区
- $data['addressComponent']['city'], //所属市区
- 0, //里程数
- 0, //油量
- );/**/
- }
- }
- $res = $conn->createCommand()->batchInsert('gps_new', ['create_time', 'main_corp_id', 'org_id', 'bus_no', 'run_date', 'latitude', 'longitude', 'gpsSpeed', 'speed', 'height', 'direction', 'province', 'city', 'mileage', 'oil'], $data_arr)->execute();
- return $res;
- }
-
- /**
- * 上传我们采购的GPS的数据
- * User: Steven
- */
- public
- function uploadGpsZz($data)
- {
- $conn = Yii::$app->db;
- $data_arr = array();
- foreach ($data['data'] as $item) {
- if ($item['device_info'] == 0) {
- $location = $item['lat'] . ',' . $item['lng'];
- $Geocoding = $this->GeocodingAPI($location, 2);
- //IMEI:352477070153196,352477070154186,352477070154426,352477070156637,352477070156678
- $bus_no = '';
- switch ($item['imei']) {
- case '352477070153196':
- $bus_no = '沪ZZ8888';
- break;
- case '352477070154186':
- $bus_no = '沪ZZ9999';
- break;
- case '352477070154426':
- $bus_no = '沪ZZ0000';
- break;
- case '352477070156637':
- $bus_no = '沪ZZ6666';
- break;
- case '352477070156678':
- $bus_no = '沪ZZ5555';
- break;
- }
- $data_arr[] = array(
- date('Y-m-d H:i:s', time()), 10, 1283,
- $bus_no, //车牌号
- date('Y-m-d', time()),
- $item['lat'], //维度
- $item['lng'], //经度
- $item['speed'], //gps速度
- $item['speed'], //速度
- 0, //高度
- $item['course'], //方向
- $Geocoding['addressComponent']['province'], //所属市区
- $Geocoding['addressComponent']['city'] //所属市区
- );
- }
- }
- $res = $conn->createCommand()->batchInsert('gps_new', ['create_time', 'main_corp_id', 'org_id', 'bus_no', 'run_date', 'latitude', 'longitude', 'gpsSpeed', 'speed', 'height', 'direction', 'province', 'city'], $data_arr)->execute();
- return $res;
- }
-
- /**
- * 获取历史轨迹所需要的数据
- * User: Steven
- * @param $bus_no
- * @param $run_date
- * @param $begin_time
- * @param $end_time
- * @return array
- */
- public
- function getHistoryData($bus_no, $run_date, $begin_time, $end_time)
- {
- $main_cooperation_id = Yii::$app->user->identity->MAIN_CORP_ID2;
- $conn = Yii::$app->db;
- /*$res = $conn->createCommand("select latitude,longitude,bus_no,count(longitude)*30 as delay_time
- from gps where bus_no='{$bus_no}' and create_time>'{$run_date} {$begin_time}' and create_time<'{$run_date} {$end_time}'
- GROUP BY longitude ORDER BY create_time")->queryAll();*/
- $sql = "select latitude,longitude,bus_no,count(longitude)*25 as delay_time , create_time
- from gps_new where bus_no='{$bus_no}' and run_date='{$run_date}' and main_corp_id=$main_cooperation_id and cancel_flag=0
- GROUP BY longitude ORDER BY create_time "; // limit 37,2
- $res = $conn->createCommand($sql)->queryAll();
- return $res;
-
- }
-
-
- /**
- * 提供从地址到经纬度坐标或者从经纬度坐标到地址的转换服务
- * User: Steven
- * @param $location (纬度,精度)
- * @param $type 1:从地址到经纬度坐标 2:从经纬度坐标到地址
- * @return array|bool
- */
- public
- function GeocodingAPI($location, $type)
- {
- if ($type == 1) { //从地址到经纬度坐标
- $data = array('address' => $location, 'output' => 'json', 'city' => $location, 'ak' => $this->AK);
- } else { //从经纬度坐标到地址
- $data = array('location' => $location, 'output' => 'json', 'tactics' => 11, 'ak' => $this->AK);
- }
- $res = $this->send_get($this->GeocodingUrl, $data);
- $addressList = json_decode($res, true);
- if (isset($addressList['status']) && $addressList['status'] == 0) {
- if ($type == 1) {
- $data['lng'] = $addressList['result']['location']['lng'];
- $data['lat'] = $addressList['result']['location']['lat'];
- } else {
- $data = $addressList['result'];
- }
- return $data;
- } else {
- return false;
- }
- }
-
- /**
- * 发送get参数(链接,参数数组)
- * User: Steven
- * @param $url
- * @param $get_data
- * @return string
- */
- public
- function send_get($url, $get_data)
- {
- $url_param = http_build_query($get_data);
- $result = file_get_contents($url . "?{$url_param}");
- return $result;
- }
-
- //发送HTTP请求
- public
- function httpsPost($url, $param = array())
- {
- $ch = curl_init(); // 初始化一个 cURL 对象
- curl_setopt($ch, CURLOPT_URL, $url); // 设置需要抓取的URL
- curl_setopt($ch, CURLOPT_HEADER, 0); // // 设置header
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // 设置cURL 参数,要求结果保存到字符串中还是输出到屏幕上。
- // 如果你想PHP去做一个正规的HTTP POST,设置这个选项为一个非零值。这个POST是普通的 application/x-www-from-urlencoded 类型,多数被HTML表单使用。
- curl_setopt($ch, CURLOPT_POST, 1);
- curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($param)); // 传递一个作为HTTP “POST”操作的所有数据的字符串。//http_build_query:生成 URL-encode 之后的请求字符串
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
- curl_setopt($ch, CURLOPT_HTTPHEADER, array(
- 'Content-type:application/x-www-form-urlencoded;charset=utf-8'
- ));
- $rtn = curl_exec($ch); // 运行cURL,请求网页
- if ($errno = curl_errno($ch)) {
- throw new \Exception ('Curl Error(' . $errno . '):' . curl_error($ch));
- }
- curl_close($ch); // 关闭URL请求
- return $rtn; // 返回获取的数据
- }
-
-
- /**
- * 临时:更新历史数据的市级地理位置
- * User: Steven
- * @return int
- */
- public
- function test()
- {
- $conn = Yii::$app->db;
- $sql = "SELECT * FROM gps_new_copy WHERE run_date='2017-03-07' AND province IS NULL ORDER BY create_time LIMIT 0,5000";
- $res = $conn->createCommand($sql)->queryAll();
- foreach ($res as $item) {
- $lo = $item['latitude'] . ',' . $item['longitude'];
- $res = $this->GeocodingAPI($lo, 2);
- $sql = "update gps_new_copy set province='{$res['addressComponent']['province']}',city='{$res['addressComponent']['city']}' where id={$item['ID']}";
- $RES = $conn->createCommand($sql)->execute();
- }
- return $RES;
- }
-
-
- public
- function test1($plateCode, $vehicleId)
- {
- $conn = Yii::$app->db;
- $sql = "update base_bus set GPS_ID={$vehicleId} where MAIN_CORP_ID=7 and org_id=628 and bus_no='{$plateCode}'";
- $RES = $conn->createCommand($sql)->execute();
- return $RES;
- }
-
- }
-
-
-
|