Files
cunkebao_v3/Server/application/cunkebao/controller/device/GetDeviceListV1Controller.php

143 lines
3.9 KiB
PHP
Raw Normal View History

2025-04-16 13:51:29 +08:00
<?php
namespace app\cunkebao\controller\device;
2025-04-16 16:10:37 +08:00
use app\common\model\Device as DeviceModel;
use app\common\model\DeviceUser as DeviceUserModel;
use app\common\model\WechatFriend;
use app\cunkebao\controller\BaseController;
2025-04-16 13:51:29 +08:00
/**
* 设备管理控制器
*/
2025-04-16 16:10:37 +08:00
class GetDeviceListV1Controller extends BaseController
2025-04-16 13:51:29 +08:00
{
/**
* 构建查询条件
*
* @param array $params
* @return array
*/
protected function makeWhere(array $params = []): array
{
$where = [];
// 关键词搜索同时搜索IMEI和备注
if (!empty($keyword = $this->request->param('keyword'))) {
2025-04-16 13:51:29 +08:00
$where[] = ['exp', "d.imei LIKE '%{$keyword}%' OR d.memo LIKE '%{$keyword}%'"];
}
// 设备在线状态
if (is_numeric($alive = $this->request->param('alive'))) {
2025-04-16 13:51:29 +08:00
$where['d.alive'] = $alive;
}
2025-04-16 16:10:37 +08:00
$where['d.companyId'] = $this->getUserInfo('companyId');
2025-04-16 13:51:29 +08:00
$where['d.deleteTime'] = 0;
return array_merge($params, $where);
}
/**
* 获取指定用户的所有设备ID
*
* @return array
*/
protected function makeDeviceIdsWhere(): array
{
$deviceIds = DeviceUserModel::where(
2025-04-16 16:10:37 +08:00
$this->getUserInfo('id'),
$this->getUserInfo('companyId')
2025-04-16 13:51:29 +08:00
)
->column('deviceId');
if (empty($deviceIds)) {
throw new \Exception('请联系管理员绑定设备', 403);
}
$where['d.id'] = ['in', $deviceIds];
return $where;
}
/**
* 获取设备列表
2025-04-17 15:33:49 +08:00
*
2025-04-16 13:51:29 +08:00
* @param array $where 查询条件
* @param int $page 页码
* @param int $limit 每页数量
* @return \think\Paginator 分页对象
*/
protected function getDeviceList(array $where, int $page = 1, int $limit = 10): \think\Paginator
2025-04-16 13:51:29 +08:00
{
$query = DeviceModel::alias('d')
2025-04-17 17:18:35 +08:00
->field(['d.id', 'd.imei', 'd.memo', 'l.wechatId', 'd.alive','wa.nickname','wa.alias', '0 totalFriend'])
2025-04-16 16:10:37 +08:00
->leftJoin('device_wechat_login l', 'd.id = l.deviceId')
2025-04-17 17:18:35 +08:00
->leftJoin('wechat_account wa', 'l.wechatId = wa.wechatId')
->order('d.id desc');
2025-04-16 13:51:29 +08:00
foreach ($where as $key => $value) {
if (is_numeric($key) && is_array($value) && isset($value[0]) && $value[0] === 'exp') {
$query->whereExp('', $value[1]);
continue;
}
$query->where($key, $value);
}
return $query->paginate($this->request->param('limit/d', 10), false, ['page' => $this->request->param('page/d', 1)]);
2025-04-16 13:51:29 +08:00
}
/**
* 统计微信好友
*
2025-04-17 14:34:31 +08:00
* @param \think\Paginator $list
2025-04-16 13:51:29 +08:00
* @return array
*/
2025-04-17 14:34:31 +08:00
protected function countFriend(\think\Paginator $list): array
2025-04-16 13:51:29 +08:00
{
$result = [];
foreach ($list->items() as $item) {
$section = $item->toArray();
if ($item->wechatId) {
$section['totalFriend'] = WechatFriend::where(['ownerWechatId' => $section['wechatId']])->count();
}
array_push($result, $section);
}
return $result;
}
/**
* 获取设备列表
* @return \think\response\Json
*/
public function index()
{
try {
2025-04-16 16:10:37 +08:00
if ($this->getUserInfo('isAdmin') == 1) {
2025-04-16 13:51:29 +08:00
$where = $this->makeWhere();
$result = $this->getDeviceList($where);
2025-04-16 13:51:29 +08:00
} else {
$where = $this->makeWhere($this->makeDeviceIdsWhere());
$result = $this->getDeviceList($where);
2025-04-16 13:51:29 +08:00
}
return json([
'code' => 200,
'msg' => '获取成功',
'data' => [
2025-04-16 16:10:37 +08:00
'list' => $this->countFriend($result),
2025-04-16 13:51:29 +08:00
'total' => $result->total(),
]
]);
} catch (\Exception $e) {
return json([
'code' => $e->getCode(),
2025-04-16 16:10:37 +08:00
'msg' => $e->getMessage()
2025-04-16 13:51:29 +08:00
]);
}
}
}