Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in
Toggle navigation
E
energyai_java
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
葛齐林
energyai_java
Commits
792a9028
Commit
792a9028
authored
Jul 01, 2021
by
co_dengxiongwen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
控制接口
parent
faef3f86
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
195 additions
and
4 deletions
+195
-4
TestClient.java
...n/java/com/devplatform/admin/common/utils/TestClient.java
+148
-0
EquipmentController.java
...form/admin/modules/eq/controller/EquipmentController.java
+38
-4
LiResourceModel.java
...tform/admin/modules/liresource/model/LiResourceModel.java
+9
-0
No files found.
microservice-admin/src/main/java/com/devplatform/admin/common/utils/TestClient.java
0 → 100644
View file @
792a9028
package
com
.
devplatform
.
admin
.
common
.
utils
;
import
org.apache.http.Consts
;
import
org.apache.http.HttpEntity
;
import
org.apache.http.client.ClientProtocolException
;
import
org.apache.http.client.methods.CloseableHttpResponse
;
import
org.apache.http.client.methods.HttpPost
;
import
org.apache.http.entity.ContentType
;
import
org.apache.http.entity.mime.MultipartEntityBuilder
;
import
org.apache.http.entity.mime.content.StringBody
;
import
org.apache.http.impl.client.CloseableHttpClient
;
import
org.apache.http.impl.client.HttpClients
;
import
org.apache.http.util.EntityUtils
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
java.io.ByteArrayOutputStream
;
import
java.io.IOException
;
import
java.io.InputStream
;
import
java.nio.charset.Charset
;
import
java.util.HashMap
;
import
java.util.Map
;
import
java.util.Set
;
/**
* @author Administrator
*/
public
class
TestClient
{
public
static
Map
<
String
,
Object
>
uploadText
(
String
postUrl
,
Map
<
String
,
String
>
postParam
)
{
Logger
log
=
LoggerFactory
.
getLogger
(
TestClient
.
class
);
Map
<
String
,
Object
>
resultMap
=
new
HashMap
<
String
,
Object
>(
5
);
CloseableHttpClient
httpClient
=
HttpClients
.
createDefault
();
try
{
// 把一个普通参数和文件上传给下面这个地址 是一个servlet
HttpPost
httpPost
=
new
HttpPost
(
postUrl
);
// 设置传输参数
MultipartEntityBuilder
multipartEntity
=
MultipartEntityBuilder
.
create
();
// 设置参数
Set
<
String
>
keySet
=
postParam
.
keySet
();
for
(
String
key
:
keySet
)
{
// 相当于<input type="text" name="name" value=name>
multipartEntity
.
addPart
(
key
,
new
StringBody
(
postParam
.
get
(
key
),
ContentType
.
create
(
"text/plain"
,
Consts
.
UTF_8
)));
}
HttpEntity
reqEntity
=
multipartEntity
.
build
();
httpPost
.
setEntity
(
reqEntity
);
log
.
info
(
"发起请求的页面地址 "
+
httpPost
.
getRequestLine
());
// 发起请求 并返回请求的响应
CloseableHttpResponse
response
=
httpClient
.
execute
(
httpPost
);
try
{
log
.
info
(
"----------------------------------------"
);
// 打印响应状态
resultMap
.
put
(
"statusCode"
,
response
.
getStatusLine
().
getStatusCode
());
// 获取响应对象
HttpEntity
resEntity
=
response
.
getEntity
();
if
(
resEntity
!=
null
)
{
// 打印响应长度
log
.
info
(
"Response content length: "
+
resEntity
.
getContentLength
());
// 打印响应内容
resultMap
.
put
(
"data"
,
EntityUtils
.
toString
(
resEntity
,
Charset
.
forName
(
"UTF-8"
)));
}
// 销毁
EntityUtils
.
consume
(
resEntity
);
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
}
finally
{
response
.
close
();
}
}
catch
(
ClientProtocolException
e1
)
{
e1
.
printStackTrace
();
}
catch
(
IOException
e1
)
{
e1
.
printStackTrace
();
}
finally
{
try
{
httpClient
.
close
();
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
}
log
.
info
(
"uploadFile result:"
+
resultMap
);
return
resultMap
;
}
/**
* 检测网络资源是否存在
*
* @return
*/
// public static boolean isNetFileAvailable(String strUrl) {
// InputStream netFileInputStream = null;
// try {
// URL url = new URL(strUrl);
// URLConnection urlConn = url.openConnection();
// netFileInputStream = urlConn.getInputStream();
// if (null != netFileInputStream) {
// return true;
// } else {
// return false;
// }
// } catch (IOException e) {
// return false;
// } finally {
// try {
// if (netFileInputStream != null)
// netFileInputStream.close();
// } catch (IOException e) {
// e.printStackTrace();
// }
// }
// }
public
static
byte
[]
readInputStream
(
InputStream
inStream
)
throws
Exception
{
ByteArrayOutputStream
outStream
=
new
ByteArrayOutputStream
();
// 创建一个Buffer字符串
byte
[]
buffer
=
new
byte
[
1024
];
// 每次读取的字符串长度,如果为-1,代表全部读取完毕
int
len
=
0
;
// 使用一个输入流从buffer里把数据读取出来
while
((
len
=
inStream
.
read
(
buffer
))
!=
-
1
)
{
// 用输出流往buffer里写入数据,中间参数代表从哪个位置开始读,len代表读取的长度
outStream
.
write
(
buffer
,
0
,
len
);
}
// 关闭输入流
inStream
.
close
();
// 把outStream里的数据写入内存
return
outStream
.
toByteArray
();
}
public
static
void
main
(
String
[]
args
)
throws
Exception
{
// 要上传的文件的路径
String
postUrl
=
"http://localhost:8089/command/operation"
;
// 要上传的数据组装
Map
<
String
,
String
>
postParam
=
new
HashMap
<
String
,
String
>(
8
);
postParam
.
put
(
"liResourceId"
,
"f6gf9j86fjdj81s18sdh131e64rti64u1k"
);
postParam
.
put
(
"stationId"
,
"40bf04d6f2e2ec3bfbb43aa51a7fac42"
);
postParam
.
put
(
"params"
,
"1"
);
postParam
.
put
(
"userId"
,
"2d63e635046e4808a38c308c94c9453b"
);
postParam
.
put
(
"levelType"
,
"1"
);
postParam
.
put
(
"controlType"
,
"1"
);
// 调用post工具
Map
<
String
,
Object
>
resultMap
=
uploadText
(
postUrl
,
postParam
);
System
.
out
.
println
(
resultMap
);
}
}
microservice-admin/src/main/java/com/devplatform/admin/modules/eq/controller/EquipmentController.java
View file @
792a9028
...
...
@@ -5,10 +5,14 @@ import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import
com.devplatform.admin.common.scheduling.SimpleJob
;
import
com.devplatform.admin.common.utils.AbstractController
;
import
com.devplatform.admin.common.utils.Constants
;
import
com.devplatform.admin.common.utils.TestClient
;
import
com.devplatform.admin.config.WebSocket
;
import
com.devplatform.admin.modules.eq.bean.TimedTask
;
import
com.devplatform.admin.modules.eq.service.EquipmentService
;
import
com.devplatform.admin.modules.eq.service.TimedTaskService
;
import
com.devplatform.admin.modules.liresource.bean.LiStation
;
import
com.devplatform.admin.modules.liresource.model.LiResourceModel
;
import
com.devplatform.admin.modules.liresource.service.LiStationService
;
import
com.devplatform.admin.modules.sys.bean.SysSystemParams
;
import
com.devplatform.admin.modules.sys.bean.SysSystemRunningTime
;
import
com.devplatform.admin.modules.sys.bean.SysUserEntity
;
...
...
@@ -22,13 +26,11 @@ import org.apache.commons.lang.StringUtils;
import
org.quartz.*
;
import
org.quartz.impl.StdSchedulerFactory
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
org.springframework.web.bind.annotation.*
;
import
java.text.SimpleDateFormat
;
import
java.util.Date
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.Map
;
...
...
@@ -52,6 +54,8 @@ public class EquipmentController extends AbstractController {
@Autowired
private
TimedTaskService
timedTaskService
;
@Autowired
private
LiStationService
liStationService
;
@Autowired
private
WebSocket
webSocket
;
/**
...
...
@@ -352,4 +356,34 @@ public class EquipmentController extends AbstractController {
.
eq
(
TimedTask:
:
getId
,
timedTask
.
getId
()));
return
R
.
ok
();
}
/**
* @Title: 设备开关
* @param model
* @return Map<String,String>
*/
@PostMapping
(
"/onOrOff"
)
public
Map
<
String
,
Object
>
doorOnOff
(
@RequestBody
LiResourceModel
model
)
{
// String postUrl = getUrl(model.getStationId());
String
postUrl
=
"http://localhost:8089/command/operation"
;
Map
<
String
,
String
>
postParam
=
new
HashMap
<
String
,
String
>(
10
);
postParam
.
put
(
"liResourceId"
,
model
.
getId
());
postParam
.
put
(
"params"
,
model
.
getStatus
().
toString
());
postParam
.
put
(
"paramsName"
,
model
.
getActionName
());
postParam
.
put
(
"actionType"
,
model
.
getActionType
().
toString
());
postParam
.
put
(
"userId"
,
getUserId
());
postParam
.
put
(
"userName"
,
getUser
().
getName
());
Map
<
String
,
Object
>
resultMap
=
TestClient
.
uploadText
(
postUrl
,
postParam
);
Map
<
String
,
Object
>
map
=
null
;
if
(
Constants
.
STRING_200
.
equals
(
resultMap
.
get
(
Constants
.
STATUS_CODE
).
toString
()))
{
map
=
JSONObject
.
parseObject
(
resultMap
.
get
(
"data"
).
toString
(),
Map
.
class
);
}
return
map
;
}
private
String
getUrl
(
String
stationId
)
{
LiStation
liStation
=
liStationService
.
getById
(
stationId
);
return
liStation
.
getByx1
();
}
}
microservice-admin/src/main/java/com/devplatform/admin/modules/liresource/model/LiResourceModel.java
View file @
792a9028
...
...
@@ -155,4 +155,13 @@ public class LiResourceModel extends BaseModel {
*/
private
List
<
String
>
list
;
/** 当前操作用户ID,如果是系统自动执行则传0*/
private
String
userId
;
/** 操作类型*/
private
Integer
actionType
;
/** 操作名称*/
private
String
actionName
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment