Files
huangjingfen/pro_v3.5.1/app/controller/admin/v1/serve/Sms.php
panchengyong c1e74d8e68 chore(php): 统一 ScottPan 文件头与注释域名替换
- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明

Made-with: Cursor
2026-03-29 11:22:58 +08:00

111 lines
2.7 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\controller\admin\v1\serve;
use think\annotation\Inject;
use app\controller\admin\AuthController;
use app\validate\admin\serve\ServeValidate;
use app\services\serve\ServeServices;
/**
* Class Sms
* @package app\controller\admin\v1\serve
*/
class Sms extends AuthController
{
/**
* @var ServeServices
*/
#[Inject]
protected ServeServices $services;
/**
* 开通服务
* @param string $sign
* @return mixed
*/
public function openServe(string $sign)
{
if (!$sign) {
return $this->fail('请设置短信签名');
}
$this->services->sms()->setSign($sign)->open();
return $this->success('开通成功');
}
/**
* 修改短信签名
* @param string $sign
* @return mixed
*/
public function editSign(string $sign)
{
[$sign, $phone, $code] = $this->request->postMore([
['sign', ''],
['phone', ''],
['code', ''],
], true);
$this->validate(['phone' => $phone], ServeValidate::class, 'phone');
if (!$sign) {
return $this->fail('请设置短信签名');
}
$this->services->sms()->modify($sign, $phone, $code);
return $this->success('修改短信签名成功');
}
/**
* 获取短信模板
* @return mixed
*/
public function temps()
{
[$page, $limit, $type] = $this->request->getMore([
['page', 1],
['limit', 10],
['temp_type', 0],
], true);
return $this->success($this->services->getSmsTempsList((int)$page, (int)$limit, (int)$type));
}
/**
* 申请模板
* @return mixed
*/
public function apply()
{
[$title, $content, $type] = $this->request->postMore([
['title', ''],
['content', ''],
['type', 0]
], true);
if (!$title || !$content || !$type) {
return $this->success('请填写申请模板内容');
}
return $this->success($this->services->sms()->apply($title, $content, (int)$type));
}
/**
* 获取申请记录
* @return mixed
*/
public function applyRecord()
{
[$page, $limit, $tempType] = $this->request->getMore([
[['page', 'd'], 1],
[['limit', 'd'], 10],
[['temp_type', 'd'], 0],
], true);
return $this->success($this->services->sms()->applys($tempType, $page, $limit));
}
}