Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hilo-group
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
hujiebin
hilo-group
Commits
dc9bbe6a
Commit
dc9bbe6a
authored
Jul 24, 2023
by
hujiebin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:svip
parent
017224cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
mic_change.go
domain/service/event_s/mic_change.go
+13
-1
No files found.
domain/service/event_s/mic_change.go
View file @
dc9bbe6a
...
...
@@ -3,6 +3,7 @@ package event_s
import
(
"encoding/json"
"git.hilo.cn/hilo-common/domain"
"git.hilo.cn/hilo-common/protocol/userProxy"
"git.hilo.cn/hilo-common/rpc"
uuid
"github.com/satori/go.uuid"
"hilo-group/domain/event/group_ev"
...
...
@@ -50,9 +51,20 @@ func MicAllRPush(model *domain.Model, txGroupUid string, userId uint64, external
tmpMicUser
=
micContent
.
User
}
seqId
:=
uuid
.
NewV4
()
.
String
()
svip
:=
&
userProxy
.
Svip
{
SvipLevel
:
uint64
(
tmpMicUser
.
SvipLevel
),
}
for
_
,
v
:=
range
tmpMicUser
.
Svip
.
Privileges
{
svip
.
Privileges
=
append
(
svip
.
Privileges
,
&
userProxy
.
SvipPrivilege
{
Type
:
int32
(
v
.
Type
),
CanSwitch
:
v
.
CanSwitch
,
UserSwitch
:
v
.
UserSwitch
,
MysteryCode
:
v
.
MysteryCode
,
})
}
if
err
:=
rpc
.
SendSocketMicChange
(
seqId
,
userId
,
externalId
,
txGroupUid
,
uint32
(
micContent
.
I
),
micContent
.
Lock
,
micContent
.
Forbid
,
micContent
.
MicForbid
,
micContent
.
AgoraId
,
tmpMicUser
.
Id
,
tmpMicUser
.
ExternalId
,
tmpMicUser
.
Avatar
,
tmpMicUser
.
Nick
,
uint32
(
tmpMicUser
.
Sex
),
tmpMicUser
.
Code
,
tmpMicUser
.
IsVip
,
uint32
(
tmpMicUser
.
NobleLeave
),
tmpMicUser
.
HeadwearPicUrl
,
tmpMicUser
.
HeadwearEffectUrl
,
tmpMicUser
.
HeadwearReverseEffectUrl
,
uint32
(
tmpMicUser
.
SvipLevel
),
tmpMicUser
.
MicEffect
,
tmpMicUser
.
HeadwearIcon
);
err
!=
nil
{
tmpMicUser
.
HeadwearPicUrl
,
tmpMicUser
.
HeadwearEffectUrl
,
tmpMicUser
.
HeadwearReverseEffectUrl
,
uint32
(
tmpMicUser
.
SvipLevel
),
tmpMicUser
.
MicEffect
,
tmpMicUser
.
HeadwearIcon
,
svip
);
err
!=
nil
{
model
.
Log
.
Errorf
(
"MicAllRPush err:%+v, groupUuid:%v, externalId:%v, micContent:%+v"
,
err
,
txGroupUid
,
externalId
,
string
(
micContentStr
))
}
else
{
model
.
Log
.
Infof
(
"MicChangeRPush MicAllRPush Marshal micContent, groupUuid:%v, externalId:%v, micContent:%+v"
,
txGroupUid
,
externalId
,
string
(
micContentStr
))
...
...
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