|
@@ -83,7 +83,7 @@ class NoticeAction extends Action {
|
|
if($msg_data){
|
|
if($msg_data){
|
|
// 使用极光推送消息
|
|
// 使用极光推送消息
|
|
if(!C('JPUSH_APP_KEY') || !C('JPUSH_MASTER_SECRET')){
|
|
if(!C('JPUSH_APP_KEY') || !C('JPUSH_MASTER_SECRET')){
|
|
- echo 'jpush app key or secret not exists',PHP_EOL;
|
|
|
|
|
|
+ echo $msg_data['device_number'] . 'jpush app key or secret not exists'.PHP_EOL;
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
$jpush_client = new \JPush\Client( C('JPUSH_APP_KEY'), C('JPUSH_MASTER_SECRET') );
|
|
$jpush_client = new \JPush\Client( C('JPUSH_APP_KEY'), C('JPUSH_MASTER_SECRET') );
|
|
@@ -290,7 +290,7 @@ class NoticeAction extends Action {
|
|
$cache = 'last_outage_alarm_';
|
|
$cache = 'last_outage_alarm_';
|
|
}
|
|
}
|
|
|
|
|
|
- if($msg_data['type'] == \Rlfd\Alarm\PushTypeEnum::FENCE_ALARM ){
|
|
|
|
|
|
+ if($msg_data['type'] == \Rlfd\Alarm\PushTypeEnum::HIGHVOLTAGE_ALARM ){
|
|
$interval = C('HIGHVOLTAGE_ALARM_INTERVAL_SECOND') ? C('HIGHVOLTAGE_ALARM_INTERVAL_SECOND') : 300;
|
|
$interval = C('HIGHVOLTAGE_ALARM_INTERVAL_SECOND') ? C('HIGHVOLTAGE_ALARM_INTERVAL_SECOND') : 300;
|
|
$type = '高电压报警';
|
|
$type = '高电压报警';
|
|
$cache = 'last_highvoltage_alarm_';
|
|
$cache = 'last_highvoltage_alarm_';
|
|
@@ -302,7 +302,7 @@ class NoticeAction extends Action {
|
|
if($lockStatus == 1){
|
|
if($lockStatus == 1){
|
|
return array('success' => false, 'message' => $msg_data['device_number'].'已启用czapp锁车,无需推送gps位移告警');
|
|
return array('success' => false, 'message' => $msg_data['device_number'].'已启用czapp锁车,无需推送gps位移告警');
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
$interval = C('SHIFT_ALARM_INTERVAL_SECOND') ? C('SHIFT_ALARM_INTERVAL_SECOND') : 120;
|
|
$interval = C('SHIFT_ALARM_INTERVAL_SECOND') ? C('SHIFT_ALARM_INTERVAL_SECOND') : 120;
|
|
$type = 'gps位移报警';
|
|
$type = 'gps位移报警';
|
|
$cache = 'last_shift_alarm_';
|
|
$cache = 'last_shift_alarm_';
|
|
@@ -320,7 +320,7 @@ class NoticeAction extends Action {
|
|
$cache = 'last_takeapart_alarm_';
|
|
$cache = 'last_takeapart_alarm_';
|
|
}
|
|
}
|
|
|
|
|
|
- if($msg_data['type'] == \Rlfd\Alarm\PushTypeEnum::TAKEAPART_ALARM ){
|
|
|
|
|
|
+ if($msg_data['type'] == \Rlfd\Alarm\PushTypeEnum::CRASH_ALARM ){
|
|
$interval = C('CRASH_ALARM_INTERVAL_SECOND') ? C('CRASH_ALARM_INTERVAL_SECOND') : 120;
|
|
$interval = C('CRASH_ALARM_INTERVAL_SECOND') ? C('CRASH_ALARM_INTERVAL_SECOND') : 120;
|
|
$type = '碰撞报警';
|
|
$type = '碰撞报警';
|
|
$cache = 'last_crash_alarm_';
|
|
$cache = 'last_crash_alarm_';
|
|
@@ -339,13 +339,13 @@ class NoticeAction extends Action {
|
|
|
|
|
|
|
|
|
|
public function getResultInterval( $interval, $msg_data, $type, $cache ){
|
|
public function getResultInterval( $interval, $msg_data, $type, $cache ){
|
|
- $last_alarm_time = S( $cache.$msg_data['device_number'] );
|
|
|
|
|
|
+ $last_alarm_time = S( $cache.'-'.$type.'-'.$msg_data['device_number'] );
|
|
|
|
|
|
if($last_alarm_time){
|
|
if($last_alarm_time){
|
|
return array( 'success' => false , 'message' => $msg_data['device_number'] . '【'. $type .'】' . ' 不可推送,推送间隔最小为:'. $interval. '秒,最后一次告警时间:'.$last_alarm_time );
|
|
return array( 'success' => false , 'message' => $msg_data['device_number'] . '【'. $type .'】' . ' 不可推送,推送间隔最小为:'. $interval. '秒,最后一次告警时间:'.$last_alarm_time );
|
|
}
|
|
}
|
|
$last_alarm_time = time();
|
|
$last_alarm_time = time();
|
|
- S($cache.$msg_data['device_number'], $last_alarm_time, $interval);
|
|
|
|
|
|
+ S($cache.'-'.$type.'-'.$msg_data['device_number'], $last_alarm_time, $interval);
|
|
return array( 'success' => true , 'message' => $msg_data['device_number'] . '【'. $type .'】' .' 不在限制间隔内,可以推送');
|
|
return array( 'success' => true , 'message' => $msg_data['device_number'] . '【'. $type .'】' .' 不在限制间隔内,可以推送');
|
|
}
|
|
}
|
|
|
|
|