|
@@ -0,0 +1,159 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+namespace catchAdmin\tag_history\controller;
|
|
|
+
|
|
|
+use catcher\base\CatchRequest as Request;
|
|
|
+use catcher\CatchResponse;
|
|
|
+use catcher\base\CatchController;
|
|
|
+use catchAdmin\tag_history\model\Access as accessModel;
|
|
|
+use catcher\Code;
|
|
|
+
|
|
|
+class Access extends CatchController
|
|
|
+{
|
|
|
+ protected $accessModel;
|
|
|
+ private $label=['44010201','44010202'];
|
|
|
+ private $mac=[];
|
|
|
+ public function __construct(AccessModel $accessModel)
|
|
|
+ {
|
|
|
+ $this->accessModel = $accessModel;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 列表
|
|
|
+ * @time 2023年04月18日 11:50
|
|
|
+ * @param Request $request
|
|
|
+ */
|
|
|
+ public function index(Request $request) : \think\Response
|
|
|
+ {
|
|
|
+ $data = $request->get();
|
|
|
+ $time = isset($data['time']) ? $data['time'] : '';
|
|
|
+ $mac = isset($data['mac']) ? $data['mac'] : '';
|
|
|
+ $tage = isset($data['tage']) ? $data['tage'] : '';
|
|
|
+ $endtime = isset($data['endtime']) ? $data['endtime'] : "";
|
|
|
+ $meter = isset($data['meter']) ? $data['meter'] : "";
|
|
|
+ $where = [];
|
|
|
+ $onewhere=[];
|
|
|
+ if (!empty($time)) {
|
|
|
+ $onewhere[] = ['addTime', '>=', $time];
|
|
|
+ } else {
|
|
|
+ $onewhere[] = ['addTime', '>=', time()];
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!empty($tage)) {
|
|
|
+ $where[] = ['label', 'in', implode(",", $tage)];
|
|
|
+ }
|
|
|
+ $list=[];
|
|
|
+
|
|
|
+ $labelArray=empty($tage) ? $this->label:$tage;
|
|
|
+ foreach($labelArray as $item){
|
|
|
+ $otherWhere=[];
|
|
|
+ // $otherWhere[]=["mac","=",$othermac];
|
|
|
+ $otherWhere[]=["label","=",trim($item)];
|
|
|
+
|
|
|
+ $t1 = $this->accessModel->where($otherWhere)->order("id","desc")->find();
|
|
|
+
|
|
|
+ if(empty($t1)){
|
|
|
+
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ $t1['report_time'] = date('Y-m-d H:i:s', $t1['report_time']);
|
|
|
+ array_push($list,$t1);
|
|
|
+ }
|
|
|
+ return CatchResponse::success($list);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存信息
|
|
|
+ * @time 2023年04月18日 11:50
|
|
|
+ * @param Request $request
|
|
|
+ */
|
|
|
+ public function save(Request $request) : \think\Response
|
|
|
+ {
|
|
|
+ return CatchResponse::success($this->accessModel->storeBy($request->post()));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 读取
|
|
|
+ * @time 2023年04月18日 11:50
|
|
|
+ * @param $id
|
|
|
+ */
|
|
|
+ public function read($id) : \think\Response
|
|
|
+ {
|
|
|
+ return CatchResponse::success($this->accessModel->findBy($id));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 更新
|
|
|
+ * @time 2023年04月18日 11:50
|
|
|
+ * @param Request $request
|
|
|
+ * @param $id
|
|
|
+ */
|
|
|
+ public function update(Request $request, $id) : \think\Response
|
|
|
+ {
|
|
|
+ return CatchResponse::success($this->accessModel->updateBy($id, $request->post()));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除
|
|
|
+ * @time 2023年04月18日 11:50
|
|
|
+ * @param $id
|
|
|
+ */
|
|
|
+ public function delete($id) : \think\Response
|
|
|
+ {
|
|
|
+ return CatchResponse::success($this->accessModel->deleteBy($id));
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * 获取标签
|
|
|
+ */
|
|
|
+ public function getTages(Request $request)
|
|
|
+ {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ return CatchResponse::success($this->label);
|
|
|
+ }
|
|
|
+
|
|
|
+ public function getRecordByTag(Request $request)
|
|
|
+ {
|
|
|
+ $lable = $request->get('lable');
|
|
|
+ $mac = $request->get('mac');
|
|
|
+ $where=[];
|
|
|
+ $limit = 10;
|
|
|
+ $page = 1;
|
|
|
+ if ($request->get('page')) {
|
|
|
+ $page = $request->get('page');
|
|
|
+ }
|
|
|
+ if ($request->get('limit')) {
|
|
|
+ $limit = $request->get('limit');
|
|
|
+ }
|
|
|
+ $times= $request->get("filter_time");
|
|
|
+ if(!empty($request->get("filter_time"))){
|
|
|
+ $where[]= ["time",">=",strtotime($times[0])];
|
|
|
+ $where[]= ["time","<=",strtotime($times[1])];
|
|
|
+ }
|
|
|
+
|
|
|
+ $where[] = ['label', '=', $lable];
|
|
|
+
|
|
|
+
|
|
|
+ $list = $this->accessModel->where($where)->order('id desc')->page($page)->limit($limit)->select();
|
|
|
+ foreach ($list as $key => $value) {
|
|
|
+
|
|
|
+ $list[$key]['report_time'] = date('Y-m-d H:i:s', $value['report_time']);
|
|
|
+
|
|
|
+ }
|
|
|
+ return json([
|
|
|
+ 'code' => Code::SUCCESS,
|
|
|
+ 'message' => 'success',
|
|
|
+ 'count' => $this->accessModel->where($where)->count(),
|
|
|
+ 'current' => $page,
|
|
|
+ 'limit' => $limit,
|
|
|
+ 'data' => $list,
|
|
|
+ ]);
|
|
|
+ }
|
|
|
+ public function getStations(Request $request)
|
|
|
+ {
|
|
|
+
|
|
|
+ return CatchResponse::success($this->mac);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|