全栈小学生 e6c822aa8e up niucloud
2025-06-26 15:07:17 +08:00

134 lines
3.4 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 企业快速开发的多应用管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\adminapi\controller\notice;
use app\dict\sys\SmsDict;
use app\service\admin\notice\NoticeService;
use app\service\admin\notice\SmsService;
use core\base\BaseAdminController;
use core\exception\AdminException;
use think\Response;
/**
* 消息管理
* Class Notice
* @description 消息管理
* @package app\adminapi\controller\notice
*/
class Notice extends BaseAdminController
{
/**
* 消息列表
* @description 消息列表
* @return Response
*/
public function lists()
{
$res = (new NoticeService())->getList();
return success($res);
}
/**
* 消息详情
* @description 消息详情
* @param $key
* @return Response
*/
public function info($key)
{
$res = (new NoticeService())->getInfo($key);
return success($res);
}
/**
* 消息启动与关闭
* @description 消息启动与关闭
* @return Response
*/
public function editStatus()
{
$data = $this->request->params([
['key', ''],
['type', ''],
['status', 0],
]);
(new NoticeService())->editMessageStatus($data['key'], $data['type'], $data['status']);
return success();
}
/**
* 短信配置列表
* @description 短信配置列表
* @return Response
*/
public function smsList()
{
$res = (new SmsService())->getList();
return success($res);
}
/**
* 短信配置详情
* @description 短信配置详情
* @param $sms_type
* @return Response
*/
public function smsConfig($sms_type)
{
$res = (new SmsService())->getConfig($sms_type);
return success($res);
}
/**
* 短信配置修改
* @description 短信配置修改
* @return Response
*/
public function editSms($sms_type)
{
//参数获取
$sms_type_list = SmsDict::getType();
if (!array_key_exists($sms_type, $sms_type_list)) throw new AdminException('SMS_TYPE_NOT_EXIST');
//数据验证
$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();
}
/**
* 消息修改
* @description 消息修改
* @return Response
*/
public function edit()
{
$data = $this->request->params([
['key', ''],
['type', ''],
['status', ''],
['sms_id', ''],
['wechat_first', ''],
['wechat_remark', ''],
]);
(new NoticeService())->edit($data['key'], $data['type'], $data);
return success();
}
}