Files
huangjingfen/pro_v3.5.1/app/controller/admin/v1/wechat/Reply.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

152 lines
4.3 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\controller\admin\v1\wechat;
use app\services\other\QrcodeServices;
use app\controller\admin\AuthController;
use app\services\wechat\WechatReplyServices;
use app\services\wechat\WechatKeyServices;
use think\annotation\Inject;
/**
* 关键字管理 控制器
* Class Reply
* @package app\admin\controller\wechat
*/
class Reply extends AuthController
{
/**
* @var WechatReplyServices
*/
#[Inject]
protected WechatReplyServices $services;
/**
* 关注回复
* @return mixed|void
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function reply()
{
$where = $this->request->getMore([
['key', ''],
]);
if ($where['key'] == '') return $this->fail('请输入参数key');
$info = $this->services->getDataByKey($where['key']);
return $this->success(compact('info'));
}
/**
* 关键字回复列表
* */
public function index()
{
$where = $this->request->getMore([
['key', ''],
['type', ''],
]);
$list = $this->services->getKeyAll($where);
return $this->success($list);
}
/**
* 关键字详情
* */
public function read($id)
{
$info = $this->services->getKeyInfo($id);
return $this->success(compact('info'));
}
/**
* 保存关键字
* */
public function save($id = 0)
{
$data = $this->request->postMore([
'key',
'type',
['status', 0],
['data', []],
]);
try {
if (!isset($data['key']) && empty($data['key']))
return $this->fail('请输入关键字');
if (!isset($data['type']) && empty($data['type']))
return $this->fail('请选择回复类型');
if (!in_array($data['type'], $this->services->replyType()))
return $this->fail('回复类型有误!');
if (!isset($data['data']) || !is_array($data['data']))
return $this->fail('回复消息参数有误!');
$res = $this->services->redact($data['data'], $id, $data['key'], $data['type'], $data['status']);
if (!$res)
return $this->fail('保存失败!');
else
return $this->success('保存成功!', $data);
} catch (\Throwable $e) {
return $this->fail($e->getMessage());
}
}
/**
* 删除关键字
* */
public function delete($id)
{
if (!$this->services->delete($id)) {
return $this->fail('删除失败,请稍候再试!');
} else {
/** @var WechatKeyServices $keyServices */
$keyServices = app()->make(WechatKeyServices::class);
$res = $keyServices->delete($id, 'reply_id');
if (!$res) {
return $this->fail('删除失败,请稍候再试!');
}
}
return $this->success('删除成功!');
}
/**
* 修改状态
* @param $id
* @param $status
* @return mixed
*/
public function set_status($id, $status)
{
if ($status == '' || $id == 0) return $this->fail('参数错误');
$this->services->update($id, ['status' => $status], 'id');
return $this->success($status == 0 ? '禁用成功' : '启用成功');
}
/**
* 生成关注回复二维码
* @param $id
* @return mixed
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function code_reply($id)
{
if (!$id) {
return $this->fail('参数错误');
}
/** @var QrcodeServices $qrcode */
$qrcode = app()->make(QrcodeServices::class);
$code = $qrcode->getForeverQrcode('reply', $id);
if (!$code['ticket']) {
return $this->fail('获取二维码失败,请检查是否配置公众号');
}
return $this->success($code->toArray());
}
}