|
@@ -187,8 +187,6 @@ class NoticeAction extends Action {
|
|
|
);
|
|
|
// 可选项
|
|
|
$options = array(
|
|
|
- 'sendno' => 100,
|
|
|
- 'time_to_live' => 100,
|
|
|
);
|
|
|
// 组装推送
|
|
|
$cid = $client->push()->getCid();
|
|
@@ -342,11 +340,13 @@ class NoticeAction extends Action {
|
|
|
|
|
|
public function getResultInterval( $interval, $msg_data, $type, $cache ){
|
|
|
$last_alarm_time = S( $cache.$msg_data['device_number'] );
|
|
|
- if( time() - $last_alarm_time < $interval ){
|
|
|
+
|
|
|
+ if($last_alarm_time){
|
|
|
return array( 'success' => false , 'message' => $msg_data['device_number'] . '【'. $type .'】' . ' 不可推送,推送间隔最小为:'. $interval. '秒,最后一次告警时间:'.$last_alarm_time );
|
|
|
- }else{
|
|
|
- return array( 'success' => true , 'message' => $msg_data['device_number'] . '【'. $type .'】' .' 不在限制间隔内,可以推送');
|
|
|
}
|
|
|
+ $last_alarm_time = time();
|
|
|
+ S($cache.$msg_data['device_number'], $last_alarm_time, $interval);
|
|
|
+ return array( 'success' => true , 'message' => $msg_data['device_number'] . '【'. $type .'】' .' 不在限制间隔内,可以推送');
|
|
|
}
|
|
|
|
|
|
|