Commit c2425517 authored by 冯超鹏's avatar 冯超鹏

no message

parent e1c42c72
Pipeline #244 canceled with stages
......@@ -91,9 +91,9 @@ class ZehongTcpController extends Controller
{
if ($data != []) {
// 报警提醒
$meTcp = new SwooleCommandMeTcpController();
$alarmData = $data['id'] . '/' . $data['status'] . '/' . $data['np'];
$meTcp->swooletcplist($alarmData);
// $meTcp = new SwooleCommandMeTcpController();
// $alarmData = $data['id'] . '/' . $data['status'] . '/' . $data['np'];
// $meTcp->swooletcplist($alarmData);
$this->smsphone($data);
$datainfo = DB::table('device')
->where('devicenum', '=', $data['id'])
......@@ -114,20 +114,21 @@ class ZehongTcpController extends Controller
// 发送手机报警信息
public function smsphone($data)
{
if (Redis::get($data['id']) != '') {
if (Redis::get($data['id']) == '') {
if ($data['status'] != 1 || $data['status'] != 0) {
$sms = new SmsailiyunController();
$code1 = json_encode($sms->sendSms());
$code = json_decode($code1,true);
Log::channel('slack')->info('短信发送初始化 =>' . $code1 . '设备号=>' . $data['id']);
if ($code['Message'] == 'OK' && $code['Code'] == 'OK') {
Redis::set($data['id'], $code1);
Log::channel('slack')->info('短信发送结束 =>' . $code1 . '设备号=>' . $data['id']);
}
}
} else {
if ($data['status'] == 1 || $data['status'] == 0) {
Redis::del($data['id']);
} else {
if ($data['status'] != 1 || $data['status'] != 0) {
$sms = new SmsailiyunController();
$code = json_encode($sms->sendSms(), true);
if ($code['Message'] == 'OK' && $code['Code'] == 'OK') {
Redis::set($data['id'], $code);
Log::channel('slack')->info('短信发送 =>' . $code . '设备号=>' . $data['id']);
}
}
}
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment