Index.php
6.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?php
/**
* Created by PhpStorm.
* User: YRF
* Date: 2023/11/14
* Time: 16:42
*/
namespace app\api\controller\v8;
//允许所有的跨域请求
header('Access-Control-Allow-Origin: *');
header("Access-Control-Allow-Headers: *");
header('Access-Control-Allow-Methods: POST,GET,OPTIONS');
header('Access-Control-Allow-Credentials: true');
header('Access-Control-Max-Age: 86400');
date_default_timezone_set('PRC');
use app\common\controller\Api;
use app\common\helper\HttpHelper;
use think\Db;
//v6 巡检端功能
class Index extends Api
{
// 无需登录的接口,*表示全部
protected $noNeedLogin = ['*'];
// 无需鉴权的接口,*表示全部
protected $noNeedRight = ['*'];
//1.查询摄像头接口
public function getCamera(){
$url="https://camera.ynzhsk.cn/api/reservoir/hkws/Hardware/getListByReservoir";
$info =HttpHelper::get($url);
$info = json_decode($info, true);
if($info['data']){
return $this->success("返回成功",$info);
}else{
return $this->error("返回失败");
}
}
//获取token
public function tokenLogin(){
$appKey= $this->request->param('appKey',"");
$appSecret= $this->request->param('appSecret',"");
// $appKey="waterPro_54989312";
// $appSecret="bef381707451606b34c1f9b4b18bd5d7";
$url="https://tyuims.tenyes.cn/api/access_token";
$postdata=[
"appKey"=>$appKey,
"appSecret"=>$appSecret,
];
$res =HttpHelper::post($url,$postdata);
$jsondata=json_decode($res,true);
if($jsondata['code']==200){
$loginurl="https://tyuims.tenyes.cn/api/login/token";
$logindata=[
"token"=>$jsondata['data']
];
$res =HttpHelper::post($loginurl,$logindata);
$jsonlogin=json_decode($res,true);
if($jsonlogin['code']==200){
return $this->success($jsonlogin['msg'],$jsonlogin['data']);
}else{
return $this->error("请求失败");
}
}else{
return $this->error("请求失败");
}
}
//获取水厂列表
public function getwaterworks(){
$token= $this->request->param('token',"");
$url="http://124.71.107.128:9040/data_api/v1/getWaterworksListData";
//$token="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjE5OTY5MTA2NzEwIiwicGFzc3dvcmQiOiJhMGUxNWM0NDRmOGNiY2NiNTAwM2U1MDk5OGI2OGZhNyIsImV4cCI6MTczMTY2ODA5MSwiaXNzIjoidWltcyJ9.W3RBwrFdidL9ERykKC_gHtjp911xrkNvUKglSes1w7c";
$res =HttpHelper::postheader($url,"","",$token);
$res=json_decode($res,true);
return $this->success($res['message'],$res['data']);
}
//获取水厂列表
public function getWaterworksDetailData(){
$id= $this->request->param('id',"");
$token= $this->request->param('token',"");
$url="http://124.71.107.128:9040/data_api/v1/getWaterworksDetailData";
$token="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjE5OTY5MTA2NzEwIiwicGFzc3dvcmQiOiJhMGUxNWM0NDRmOGNiY2NiNTAwM2U1MDk5OGI2OGZhNyIsImV4cCI6MTczMTY2ODA5MSwiaXNzIjoidWltcyJ9.W3RBwrFdidL9ERykKC_gHtjp911xrkNvUKglSes1w7c";
$data=['id'=>$id];
$res =HttpHelper::postheader($url,$data,"",$token);
$res=json_decode($res,true);
return $this->success($res['message'],$res['data']);
}
//获得净水设备列表
public function getWaterworksEquipmentListData(){
$token= $this->request->param('token',"");
$url="http://124.71.107.128:9040/data_api/v1/getWaterworksEquipmentListData";
$token="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjE5OTY5MTA2NzEwIiwicGFzc3dvcmQiOiJhMGUxNWM0NDRmOGNiY2NiNTAwM2U1MDk5OGI2OGZhNyIsImV4cCI6MTczMTY2ODA5MSwiaXNzIjoidWltcyJ9.W3RBwrFdidL9ERykKC_gHtjp911xrkNvUKglSes1w7c";
$res =HttpHelper::postheader($url,"","",$token);
$res=json_decode($res,true);
return $this->success($res['message'],$res['data']);
}
//获得净水设备列表
public function getWaterworksEquipmentDetailData(){
$id= $this->request->param('id',"");
$token= $this->request->param('token',"");
$url="http://124.71.107.128:9040/data_api/v1/getWaterworksEquipmentDetailData";
$token="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjE5OTY5MTA2NzEwIiwicGFzc3dvcmQiOiJhMGUxNWM0NDRmOGNiY2NiNTAwM2U1MDk5OGI2OGZhNyIsImV4cCI6MTczMTY2ODA5MSwiaXNzIjoidWltcyJ9.W3RBwrFdidL9ERykKC_gHtjp911xrkNvUKglSes1w7c";
$data=['id'=>$id];
$res =HttpHelper::postheader($url,$data,"",$token);
$res=json_decode($res,true);
return $this->success($res['message'],$res['data']);
}
//-获得净水设备数据列表
public function getWaterworksEquipmentDataListData(){
$token= $this->request->param('token',"");
$url="http://124.71.107.128:9040/data_api/v1/getWaterworksEquipmentDataListData";
$token="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjE5OTY5MTA2NzEwIiwicGFzc3dvcmQiOiJhMGUxNWM0NDRmOGNiY2NiNTAwM2U1MDk5OGI2OGZhNyIsImV4cCI6MTczMTY2ODA5MSwiaXNzIjoidWltcyJ9.W3RBwrFdidL9ERykKC_gHtjp911xrkNvUKglSes1w7c";
$res =HttpHelper::postheader($url,"","",$token);
$res=json_decode($res,true);
return $this->success($res['message'],$res['data']);
}
//-获得设备数据详情
public function getWaterworksEquipmentDataDetailData(){
$id= $this->request->param('id',"");
$token= $this->request->param('token',"");
$url="http://124.71.107.128:9040/data_api/v1/getWaterworksEquipmentDataDetailData";
$token="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6IjE5OTY5MTA2NzEwIiwicGFzc3dvcmQiOiJhMGUxNWM0NDRmOGNiY2NiNTAwM2U1MDk5OGI2OGZhNyIsImV4cCI6MTczMTY2ODA5MSwiaXNzIjoidWltcyJ9.W3RBwrFdidL9ERykKC_gHtjp911xrkNvUKglSes1w7c";
$data=['id'=>$id];
$res =HttpHelper::postheader($url,$data,"",$token);
$res=json_decode($res,true);
return $this->success($res['message'],$res['data']);
}
}