chore: 重写初始提交(清空历史,整理后全量提交)
This commit is contained in:
@@ -0,0 +1,126 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | YwxApp [ WE CAN DO IT JUST THINK ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2026-2036 http://ywxapp.cn All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: ywxapp<admin@ywxapp.cn>
|
||||
// +----------------------------------------------------------------------
|
||||
declare (strict_types = 1);
|
||||
|
||||
namespace addon\wxchat\controller\backend;
|
||||
|
||||
use addon\wxchat\model\WxchatRealnameAuth;
|
||||
use think\facade\Db;
|
||||
use think\facade\View;
|
||||
use ywxapp\controller\BackendBase;
|
||||
|
||||
/**
|
||||
* 真人认证 - 后台审核(列表 / 详情 / 通过 / 驳回)
|
||||
*/
|
||||
class WxchatAuth extends BackendBase
|
||||
{
|
||||
// 插件后台按框架惯例放宽登录校验(与 mqttbroker 等插件后台一致)
|
||||
|
||||
protected $noNeedVerify = ['*'];
|
||||
|
||||
|
||||
protected function initialize() {}
|
||||
|
||||
|
||||
public function index()
|
||||
{
|
||||
if ($this->request->isAjax()) {
|
||||
return $this->lists();
|
||||
}
|
||||
return View::fetch('wxchatauth/index');
|
||||
}
|
||||
|
||||
/**
|
||||
* 认证记录列表(关联用户昵称)
|
||||
*/
|
||||
public function lists()
|
||||
{
|
||||
$page = (int) $this->request->param('page', 1);
|
||||
$limit = (int) $this->request->param('limit', 15);
|
||||
$kw = trim((string) $this->request->param('keyword', ''));
|
||||
$status = $this->request->param('status', '');
|
||||
|
||||
$query = WxchatRealnameAuth::alias('a')
|
||||
->join('user u', 'u.uid = a.uid', 'left')
|
||||
->field('a.*, u.nickname, u.avatar');
|
||||
if ($kw !== '') {
|
||||
$query->where('a.real_name', 'like', "%{$kw}%")
|
||||
->whereOr('u.nickname', 'like', "%{$kw}%");
|
||||
}
|
||||
if ($status !== '') {
|
||||
$query->where('a.status', (int) $status);
|
||||
}
|
||||
$total = $query->count();
|
||||
$rows = $query->order('a.create_at', 'desc')
|
||||
->page($page, $limit)->select();
|
||||
|
||||
$this->result->setCount($total)->success($rows->toArray());
|
||||
}
|
||||
|
||||
/**
|
||||
* 详情
|
||||
*/
|
||||
public function detail()
|
||||
{
|
||||
$id = (int) $this->request->param('id', 0);
|
||||
$row = WxchatRealnameAuth::alias('a')
|
||||
->join('user u', 'u.uid = a.uid', 'left')
|
||||
->field('a.*, u.nickname, u.avatar')
|
||||
->where('a.id', $id)->find();
|
||||
if (! $row) {
|
||||
$this->result->error('记录不存在');
|
||||
}
|
||||
$this->result->success($row->toArray());
|
||||
}
|
||||
|
||||
/**
|
||||
* 人工复审:通过 / 驳回
|
||||
*/
|
||||
public function review()
|
||||
{
|
||||
$id = (int) $this->request->post('id', 0);
|
||||
$pass = (int) $this->request->post('pass', 0);
|
||||
$reason = trim((string) $this->request->post('reason', ''));
|
||||
|
||||
$auth = WxchatRealnameAuth::find($id);
|
||||
if (! $auth) {
|
||||
$this->result->error('记录不存在');
|
||||
}
|
||||
$auth->status = $pass ? 1 : 2;
|
||||
$auth->reject_reason = $pass ? '' : $reason;
|
||||
// 插件后台上下文 $this->auth 为会员体系,reviewer 仅作兜底记录
|
||||
try {
|
||||
$auth->reviewer_id = $this->auth->id ?? 0;
|
||||
} catch (\Throwable $e) {
|
||||
$auth->reviewer_id = 0;
|
||||
}
|
||||
$auth->review_at = time();
|
||||
$auth->save();
|
||||
|
||||
if ($pass) {
|
||||
\ywxapp\model\MemberProfile::where('uid', $auth->uid)
|
||||
->update(['is_realname' => 1]);
|
||||
}
|
||||
$this->result->success([], $pass ? '已通过' : '已驳回');
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除认证记录
|
||||
*/
|
||||
public function del($ids = '')
|
||||
{
|
||||
$ids = $this->request->param('ids', '');
|
||||
if (! $ids) {
|
||||
$this->result->error('请选择要删除的数据');
|
||||
}
|
||||
$idArr = array_filter(array_map('intval', explode(',', $ids)));
|
||||
WxchatRealnameAuth::destroy($idArr);
|
||||
$this->result->success([], '删除成功');
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,148 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | YwxApp [ WE CAN DO IT JUST THINK ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2026-2036 http://ywxapp.cn All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: ywxapp<admin@ywxapp.cn>
|
||||
// +----------------------------------------------------------------------
|
||||
declare (strict_types = 1);
|
||||
|
||||
namespace addon\wxchat\controller\backend;
|
||||
|
||||
use addon\wxchat\model\WxchatRoom as WxchatRoomModel;
|
||||
use addon\wxchat\model\WxchatRoomMember;
|
||||
use addon\wxchat\model\WxchatRoomMic;
|
||||
use think\facade\Db;
|
||||
use think\facade\View;
|
||||
use ywxapp\controller\BackendBase;
|
||||
|
||||
/**
|
||||
* 语音 / 视频房 - 后台管理(列表 / 详情 / 编辑 / 关闭 / 删除)
|
||||
*/
|
||||
class WxchatRoom extends BackendBase
|
||||
{
|
||||
// 插件后台按框架惯例放宽登录校验(与 mqttbroker 等插件后台一致)
|
||||
|
||||
protected $noNeedVerify = ['*'];
|
||||
|
||||
|
||||
protected function initialize() {}
|
||||
|
||||
|
||||
public function index()
|
||||
{
|
||||
if ($this->request->isAjax()) {
|
||||
return $this->lists();
|
||||
}
|
||||
return View::fetch('wxchatroom/index');
|
||||
}
|
||||
|
||||
/**
|
||||
* 房间列表(关联房主昵称 + 实时成员数)
|
||||
*/
|
||||
public function lists()
|
||||
{
|
||||
$page = (int) $this->request->param('page', 1);
|
||||
$limit = (int) $this->request->param('limit', 15);
|
||||
$kw = trim((string) $this->request->param('keyword', ''));
|
||||
$type = (int) $this->request->param('type', 0);
|
||||
|
||||
$query = WxchatRoomModel::alias('r')
|
||||
->join('user u', 'u.uid = r.owner_uid', 'left')
|
||||
->field('r.*, u.nickname AS owner_name');
|
||||
if ($kw !== '') {
|
||||
$query->where('r.title', 'like', "%{$kw}%");
|
||||
}
|
||||
if ($type) {
|
||||
$query->where('r.type', $type);
|
||||
}
|
||||
$total = $query->count();
|
||||
$rows = $query->order('r.hot', 'desc')
|
||||
->order('r.create_at', 'desc')
|
||||
->page($page, $limit)->select();
|
||||
|
||||
foreach ($rows as $r) {
|
||||
$r->member_count = (int) WxchatRoomMember::where('room_id', $r->id)->count();
|
||||
}
|
||||
$this->result->setCount($total)->success($rows->toArray());
|
||||
}
|
||||
|
||||
/**
|
||||
* 房间详情 + 成员列表
|
||||
*/
|
||||
public function detail()
|
||||
{
|
||||
$id = (int) $this->request->param('id', 0);
|
||||
$room = WxchatRoomModel::find($id);
|
||||
if (! $room) {
|
||||
$this->result->error('房间不存在');
|
||||
}
|
||||
$members = WxchatRoomMember::alias('m')
|
||||
->join('user u', 'u.uid = m.uid', 'left')
|
||||
->where('m.room_id', $id)
|
||||
->field('m.uid, m.role, m.join_at, u.nickname, u.avatar')
|
||||
->select();
|
||||
$mics = WxchatRoomMic::where('room_id', $id)->order('mic_index')->select();
|
||||
|
||||
$this->result->success([
|
||||
'room' => $room->toArray(),
|
||||
'members' => $members->toArray(),
|
||||
'mics' => $mics->toArray(),
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑(标题 / 公告 / 开关房)
|
||||
*/
|
||||
public function save()
|
||||
{
|
||||
$id = (int) $this->request->post('id', 0);
|
||||
$data = $this->request->only(['title', 'notice', 'status', 'danmaku_on'], 'post');
|
||||
$room = WxchatRoomModel::find($id);
|
||||
if (! $room) {
|
||||
$this->result->error('房间不存在');
|
||||
}
|
||||
if (isset($data['status'])) {
|
||||
$data['status'] = (int) $data['status'];
|
||||
}
|
||||
if (isset($data['danmaku_on'])) {
|
||||
$data['danmaku_on'] = (int) $data['danmaku_on'];
|
||||
}
|
||||
$room->save($data);
|
||||
$this->result->success([], '保存成功');
|
||||
}
|
||||
|
||||
/**
|
||||
* 关闭房间(置 status=0)
|
||||
*/
|
||||
public function close()
|
||||
{
|
||||
$id = (int) $this->request->post('id', 0);
|
||||
$room = WxchatRoomModel::find($id);
|
||||
if (! $room) {
|
||||
$this->result->error('房间不存在');
|
||||
}
|
||||
$room->status = 0;
|
||||
$room->save();
|
||||
$this->result->success([], '已关闭房间');
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除房间(级联清理成员与麦位)
|
||||
*/
|
||||
public function del($ids = '')
|
||||
{
|
||||
$ids = $this->request->param('ids', '');
|
||||
if (! $ids) {
|
||||
$this->result->error('请选择要删除的数据');
|
||||
}
|
||||
$idArr = array_filter(array_map('intval', explode(',', $ids)));
|
||||
Db::transaction(function () use ($idArr) {
|
||||
WxchatRoomMember::whereIn('room_id', $idArr)->delete();
|
||||
WxchatRoomMic::whereIn('room_id', $idArr)->delete();
|
||||
WxchatRoomModel::destroy($idArr);
|
||||
});
|
||||
$this->result->success([], '删除成功');
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | YwxApp [ WE CAN DO IT JUST THINK ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2026-2036 http://ywxapp.cn All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: ywxapp<admin@ywxapp.cn>
|
||||
// +----------------------------------------------------------------------
|
||||
declare (strict_types = 1);
|
||||
|
||||
namespace addon\wxchat\controller\backend;
|
||||
|
||||
use addon\wxchat\model\WxchatTask as WxchatTaskModel;
|
||||
use addon\wxchat\model\WxchatTaskRecord;
|
||||
use think\facade\Db;
|
||||
use think\facade\View;
|
||||
use ywxapp\controller\BackendBase;
|
||||
|
||||
/**
|
||||
* 任务赚钱 - 后台管理(任务配置 / 参与统计 / 上线开关)
|
||||
*/
|
||||
class WxchatTask extends BackendBase
|
||||
{
|
||||
// 插件后台按框架惯例放宽登录校验(与 mqttbroker 等插件后台一致)
|
||||
|
||||
protected $noNeedVerify = ['*'];
|
||||
|
||||
|
||||
protected function initialize() {}
|
||||
|
||||
|
||||
public function index()
|
||||
{
|
||||
if ($this->request->isAjax()) {
|
||||
return $this->lists();
|
||||
}
|
||||
return View::fetch('wxchattask/index');
|
||||
}
|
||||
|
||||
/**
|
||||
* 任务列表(含参与/领取统计)
|
||||
*/
|
||||
public function lists()
|
||||
{
|
||||
$page = (int) $this->request->param('page', 1);
|
||||
$limit = (int) $this->request->param('limit', 15);
|
||||
$kw = trim((string) $this->request->param('keyword', ''));
|
||||
|
||||
$query = WxchatTaskModel::order('sort', 'asc');
|
||||
if ($kw !== '') {
|
||||
$query->where('title', 'like', "%{$kw}%");
|
||||
}
|
||||
$total = $query->count();
|
||||
$rows = $query->page($page, $limit)->select();
|
||||
|
||||
foreach ($rows as $t) {
|
||||
$t->participants = (int) WxchatTaskRecord::where('task_id', $t->id)->count();
|
||||
$t->claimed = (int) WxchatTaskRecord::where('task_id', $t->id)
|
||||
->where('status', 2)->count();
|
||||
}
|
||||
$this->result->setCount($total)->success($rows->toArray());
|
||||
}
|
||||
|
||||
/**
|
||||
* 保存(新增/编辑)
|
||||
*/
|
||||
public function save()
|
||||
{
|
||||
$id = (int) $this->request->post('id', 0);
|
||||
$data = $this->request->only(
|
||||
['title', 'type', 'desc', 'reward_coins', 'target', 'sort', 'status'],
|
||||
'post'
|
||||
);
|
||||
$data['reward_coins'] = (int) ($data['reward_coins'] ?? 0);
|
||||
$data['target'] = max(1, (int) ($data['target'] ?? 1));
|
||||
$data['sort'] = (int) ($data['sort'] ?? 0);
|
||||
$data['status'] = (int) ($data['status'] ?? 1);
|
||||
|
||||
if ($id) {
|
||||
WxchatTaskModel::where('id', $id)->update($data);
|
||||
} else {
|
||||
$data['create_at'] = time();
|
||||
(new WxchatTaskModel())->save($data);
|
||||
}
|
||||
$this->result->success([], '保存成功');
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除任务(同时清理其进度记录)
|
||||
*/
|
||||
public function del($ids = '')
|
||||
{
|
||||
$ids = $this->request->param('ids', '');
|
||||
if (! $ids) {
|
||||
$this->result->error('请选择要删除的数据');
|
||||
}
|
||||
$idArr = array_filter(array_map('intval', explode(',', $ids)));
|
||||
Db::transaction(function () use ($idArr) {
|
||||
WxchatTaskRecord::whereIn('task_id', $idArr)->delete();
|
||||
WxchatTaskModel::destroy($idArr);
|
||||
});
|
||||
$this->result->success([], '删除成功');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user