|
@@ -249,16 +249,16 @@ class CronAction extends Action {
|
|
|
|
|
|
private function produceAcrossAlarmData( $route_info ){
|
|
|
if( !$route_info['DeviceId'] ){
|
|
|
- return 'device id is not exists.';
|
|
|
+ return array('success' => false, 'message' => 'device id is not exists.');
|
|
|
}
|
|
|
if( !$route_info['Longitude'] ){
|
|
|
- return 'longitude is not exists.';
|
|
|
+ return array('success' => false, 'message' => 'longitude is not exists.');
|
|
|
}
|
|
|
if( !$route_info['Latitude'] ){
|
|
|
- return 'latitude is not exists.';
|
|
|
+ return array('success' => false, 'message' => 'latitude is not exists.');
|
|
|
}
|
|
|
if( !$route_info['DeviceTime'] ){
|
|
|
- return 'device time is not exists.';
|
|
|
+ return array('success' => false, 'message' => 'device time is not exists.');
|
|
|
}
|
|
|
// 从数据库中取出车牌号,缓存1天
|
|
|
if( S('plate-'.$route_info['DeviceId']) ){
|
|
@@ -274,14 +274,14 @@ class CronAction extends Action {
|
|
|
$fence = json_decode($fence, true);
|
|
|
|
|
|
if( empty($fence) ){
|
|
|
- return '围栏信息不存在';
|
|
|
+ return array('success' => false, 'message' => '围栏信息不存在');
|
|
|
}
|
|
|
if( !$fence['fenceStatus'] ){
|
|
|
- return '未启用围栏';
|
|
|
+ return array('success' => false, 'message' => '未启用围栏');
|
|
|
}
|
|
|
$fence_info = $fence['fenceInfo'];
|
|
|
if( empty($fence_info['data']) ){
|
|
|
- return '围栏坐标数据不存在';
|
|
|
+ return array('success' => false, 'message' => '围栏坐标数据不存在');
|
|
|
}
|
|
|
// 是否越界
|
|
|
$route_point = array(
|
|
@@ -295,7 +295,7 @@ class CronAction extends Action {
|
|
|
}elseif( $fence_info['type'] == 'polygon' ){ // 多边形围栏
|
|
|
$result = \Jms\Algo\Geometry::isInPolygon($fence_info['data']['vertex'], $route_point);
|
|
|
}else{
|
|
|
- return '未知围栏类型';
|
|
|
+ return array('success' => false, 'message' => '未知围栏类型');
|
|
|
}
|
|
|
if( !$result ){
|
|
|
$alarm_data = array(
|
|
@@ -306,10 +306,9 @@ class CronAction extends Action {
|
|
|
"device_number" => $route_info['DeviceId']
|
|
|
);
|
|
|
kafkaProducer('gps_alarm_msg_queue', $alarm_data); // 添加到kafka
|
|
|
- return '添加告警消息到 gps_alarm_msg_queue ';
|
|
|
+ return array('success' => true, 'message' => '添加围栏告警消息到 gps_alarm_msg_queue');
|
|
|
}
|
|
|
-
|
|
|
- return '没有超出围栏';
|
|
|
+ return array('success' => false, 'message' => '没有超出围栏');
|
|
|
|
|
|
}
|
|
|
|