短信模版查询。修改。申请
This commit is contained in:
@@ -2,6 +2,8 @@
|
||||
|
||||
namespace app\command;
|
||||
|
||||
use app\model\AlibabaSms;
|
||||
use support\Log;
|
||||
use support\think\Db;
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
use Symfony\Component\Console\Input\InputInterface;
|
||||
@@ -26,13 +28,44 @@ class QuerySmsStatus extends Command
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询模版审核状态 1小时执行一次
|
||||
* @param InputInterface $input
|
||||
* @param OutputInterface $output
|
||||
* @return int
|
||||
*/
|
||||
protected function execute(InputInterface $input, OutputInterface $output): int
|
||||
{
|
||||
$list = Db::table('sms_user_push_event')->where(['push_type' => 2])->select()->toArray();
|
||||
$list = Db::table('sms_shop_template')->where(['status' => 1])->select()->toArray();
|
||||
Log::info('短信模版审核查询开始->' . json_encode($list));
|
||||
if($list) {
|
||||
foreach ($list as $k => $value) {
|
||||
$data = [
|
||||
'TemplateCode' => $value['template_code']
|
||||
];
|
||||
$res = AlibabaSms::GetSmsTemplate($data);
|
||||
if($res['Code'] == 'OK') {
|
||||
$msg = '';
|
||||
if($res['TemplateStatus'] == 0) {
|
||||
$status = 1;
|
||||
}elseif ($res['TemplateStatus'] == 1) {
|
||||
$status = 2;
|
||||
}elseif ($res['TemplateStatus'] == 2) {
|
||||
$status = -1;
|
||||
$msg = $res['AuditInfo']['RejectInfo'];
|
||||
}elseif ($res['TemplateStatus'] == 10) {
|
||||
$status = -1;
|
||||
$msg = '取消审核';
|
||||
}
|
||||
$update_data = [
|
||||
'status' => $status,
|
||||
'fail_msg' => $msg?:$msg,
|
||||
];
|
||||
$update_status = Db::table('sms_shop_template')->where(['id' => $value['id']])->update($update_data);
|
||||
Log::info('模版查询完毕数据库更新结果---》' . $update_status . '-->更新数据 . ' . json_encode($update_data));
|
||||
}
|
||||
sleep(1);
|
||||
}
|
||||
}
|
||||
return self::SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user