全栈小学生 0e47055ccb v1.0.0-beta.1
2023-04-15 17:12:49 +08:00

131 lines
3.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的saas管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud-admin.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\adminapi\controller\message;
use app\adminapi\controller\BaseAdminController;
use app\enum\sys\SmsEnum;
use app\service\admin\message\MessageService;
use app\service\admin\message\SmsService;
use extend\exception\AdminException;
use think\Response;
class Message extends BaseAdminController
{
/**
* 消息列表
* @return Response
*/
public function lists()
{
$res = (new MessageService())->getList();
return success($res);
}
public function info($key)
{
$res = (new MessageService())->getInfo($key);
return success($res);
}
/**
* 消息启动与关闭
* @return Response
*/
public function updateStatus()
{
$data = $this->request->params([
['key', ''],
['type', ''],
['status', 0],
]);
(new MessageService())->updateMessageStatus($data['key'], $data['type'], $data['status']);
return success();
}
/**
* 短信配置列表
*/
public function smsList()
{
$res = (new SmsService())->getList();
return success($res);
}
/**
* 短信配置详情
* @param $sms_type
* @return Response
*/
public function smsConfig($sms_type)
{
$res = (new SmsService())->getConfig($sms_type);
return success($res);
}
/**
* 短信配置修改
* @return Response
*/
public function updateSms($sms_type)
{
//参数获取
$sms_type_list = SmsEnum::getType();
if(!array_key_exists($sms_type, $sms_type_list)) throw new AdminException(204002);
//数据验证
$data = [
['is_use', 0]
];
foreach ($sms_type_list[$sms_type]['params'] as $k_param => $v_param)
{
$data[] = [$k_param, ''];
}
$request_data = $this->request->params($data);
(new SmsService())->setConfig($sms_type, $request_data);
return success();
}
/**
* 消息列表
* @return Response
*/
public function getLogList()
{
$data = $this->request->params([
['key', ''],
['receiver', ''],
]);
$res = (new MessageService())->getLogPage($data);
return success($res);
}
/**
* 消息修改
* @return Response
*/
public function update()
{
$data = $this->request->params([
['key', ''],
['type', ''],
['status', ''],
['sms_id', ''],
['wechat_first', ''],
['wechat_remark', ''],
]);
(new MessageService())->update($data['key'], $data['type'], $data);
return success();
}
}