Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wecloud_im_server
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hewei
wecloud_im_server
Commits
54bcc71c
Commit
54bcc71c
authored
Apr 21, 2022
by
Future
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加日志
parent
2eede395
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
core/src/main/java/com/wecloud/im/action/RtcAction.java
+7
-0
No files found.
core/src/main/java/com/wecloud/im/action/RtcAction.java
View file @
54bcc71c
package
com
.
wecloud
.
im
.
action
;
import
com.alibaba.fastjson.JSON
;
import
io.geekidea.springbootplus.framework.common.api.ApiCode
;
import
io.geekidea.springbootplus.framework.common.enums.BaseEnum
;
import
io.swagger.annotations.Api
;
...
...
@@ -38,6 +39,7 @@ public class RtcAction {
@ActionMapping
(
"/createAndCall"
)
@ApiOperation
(
value
=
"创建频道,并邀请客户端加入"
,
notes
=
"创建频道,并邀请客户端加入"
)
public
WsResponse
<
CreateRtcChannelResult
>
createAndCall
(
CreateRtcChannelParam
data
)
{
log
.
info
(
"音频通话,创建频道并邀请客户端加入,入参 {}"
,
JSON
.
toJSONString
(
data
));
if
(
BaseEnum
.
valueOf
(
CallTypeEnum
.
class
,
data
.
getCallType
())
==
null
)
{
return
WsResponse
.
fail
(
ApiCode
.
PARAMETER_EXCEPTION
);
}
...
...
@@ -48,6 +50,7 @@ public class RtcAction {
@ActionMapping
(
"/join"
)
@ApiOperation
(
value
=
"同意进入频道"
,
notes
=
""
)
public
WsResponse
<
Map
<
String
,
Boolean
>>
join
(
JoinRtcChannelParam
data
)
{
log
.
info
(
"音频通话,同意进入频道,入参 {}"
,
JSON
.
toJSONString
(
data
));
rtcService
.
join
(
data
);
return
WsResponse
.
ok
();
}
...
...
@@ -55,6 +58,7 @@ public class RtcAction {
@ActionMapping
(
"/reject"
)
@ApiOperation
(
value
=
"拒接进入频道"
,
notes
=
""
)
public
WsResponse
<
Map
<
String
,
Boolean
>>
reject
(
RejectRtcChannelParam
data
)
{
log
.
info
(
"音频通话,拒接进入频道,入参 {}"
,
JSON
.
toJSONString
(
data
));
rtcService
.
reject
(
data
);
return
WsResponse
.
ok
();
}
...
...
@@ -62,6 +66,7 @@ public class RtcAction {
@ActionMapping
(
"/leave"
)
@ApiOperation
(
value
=
"主动挂断(离开频道)"
,
notes
=
""
)
public
WsResponse
<
Map
<
String
,
Boolean
>>
leave
(
LeaveRtcChannelParam
data
)
{
log
.
info
(
"音频通话,主动挂断(离开频道),入参 {}"
,
JSON
.
toJSONString
(
data
));
rtcService
.
leave
(
data
);
return
WsResponse
.
ok
();
}
...
...
@@ -69,6 +74,7 @@ public class RtcAction {
@ActionMapping
(
"/sdpForward"
)
@ApiOperation
(
value
=
"SDP数据转发"
,
notes
=
""
)
public
WsResponse
<
Map
<
String
,
Boolean
>>
sdpForward
(
SdpForwardParam
data
)
{
log
.
info
(
"音频通话,SDP数据转发,入参 {}"
,
JSON
.
toJSONString
(
data
));
rtcService
.
sdpForward
(
data
);
return
WsResponse
.
ok
();
}
...
...
@@ -76,6 +82,7 @@ public class RtcAction {
@ActionMapping
(
"/candidateForward"
)
@ApiOperation
(
value
=
"candidate候选者数据转发"
,
notes
=
""
)
public
WsResponse
<
Map
<
String
,
Boolean
>>
candidateForward
(
CandidateForwardParam
data
)
{
log
.
info
(
"音频通话,candidate候选者数据转发,入参 {}"
,
JSON
.
toJSONString
(
data
));
rtcService
.
candidateForward
(
data
);
return
WsResponse
.
ok
();
}
...
...
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