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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
use mumble_protocol::control::msgs;
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct User {
channel: u32,
comment: Option<String>,
hash: Option<String>,
name: String,
priority_speaker: bool,
recording: bool,
suppress: bool, // by me
self_mute: bool, // by self
self_deaf: bool, // by self
mute: bool, // by admin
deaf: bool, // by admin
}
impl User {
pub fn new(mut msg: msgs::UserState) -> Self {
Self {
channel: msg.get_channel_id(),
comment: if msg.has_comment() {
Some(msg.take_comment())
} else {
None
},
hash: if msg.has_hash() {
Some(msg.take_hash())
} else {
None
},
name: msg.take_name(),
priority_speaker: msg.has_priority_speaker() && msg.get_priority_speaker(),
recording: msg.has_recording() && msg.get_recording(),
suppress: msg.has_suppress() && msg.get_suppress(),
self_mute: msg.has_self_mute() && msg.get_self_mute(),
self_deaf: msg.has_self_deaf() && msg.get_self_deaf(),
mute: msg.has_mute() && msg.get_mute(),
deaf: msg.has_deaf() && msg.get_deaf(),
}
}
pub fn parse_user_state(&mut self, mut msg: msgs::UserState) {
if msg.has_channel_id() {
self.channel = msg.get_channel_id();
}
if msg.has_comment() {
self.comment = Some(msg.take_comment());
}
if msg.has_hash() {
self.hash = Some(msg.take_hash());
}
if msg.has_name() {
self.name = msg.take_name();
}
if msg.has_priority_speaker() {
self.priority_speaker = msg.get_priority_speaker();
}
if msg.has_recording() {
self.recording = msg.get_recording();
}
if msg.has_suppress() {
self.suppress = msg.get_suppress();
}
if msg.has_self_mute() {
self.self_mute = msg.get_self_mute();
}
if msg.has_self_deaf() {
self.self_deaf = msg.get_self_deaf();
}
if msg.has_mute() {
self.mute = msg.get_mute();
}
if msg.has_deaf() {
self.deaf = msg.get_deaf();
}
}
pub fn apply_user_diff(&mut self, diff: &mumlib::state::UserDiff) {
if let Some(comment) = diff.comment.clone() {
self.comment = Some(comment);
}
if let Some(hash) = diff.hash.clone() {
self.hash = Some(hash);
}
if let Some(name) = diff.name.clone() {
self.name = name;
}
if let Some(priority_speaker) = diff.priority_speaker {
self.priority_speaker = priority_speaker;
}
if let Some(recording) = diff.recording {
self.recording = recording;
}
if let Some(suppress) = diff.suppress {
self.suppress = suppress;
}
if let Some(self_mute) = diff.self_mute {
self.self_mute = self_mute;
}
if let Some(self_deaf) = diff.self_deaf {
self.self_deaf = self_deaf;
}
if let Some(mute) = diff.mute {
self.mute = mute;
}
if let Some(deaf) = diff.deaf {
self.deaf = deaf;
}
if let Some(channel_id) = diff.channel_id {
self.channel = channel_id;
}
}
pub fn name(&self) -> &str {
&self.name
}
pub fn channel(&self) -> u32 {
self.channel
}
pub fn self_mute(&self) -> bool {
self.self_mute
}
pub fn self_deaf(&self) -> bool {
self.self_deaf
}
pub fn suppressed(&self) -> bool {
self.suppress
}
pub fn set_suppressed(&mut self, value: bool) {
self.suppress = value;
}
}
impl From<&User> for mumlib::state::User {
fn from(user: &User) -> Self {
mumlib::state::User {
comment: user.comment.clone(),
hash: user.hash.clone(),
name: user.name.clone(),
priority_speaker: user.priority_speaker,
recording: user.recording,
suppress: user.suppress,
self_mute: user.self_mute,
self_deaf: user.self_deaf,
mute: user.mute,
deaf: user.deaf,
}
}
}
|