forked from lavender/watch-party
53 lines
1.3 KiB
Rust
53 lines
1.3 KiB
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Serialize, Deserialize)]
|
|
pub struct Viewer {
|
|
#[serde(default, skip_serializing_if = "Option::is_none")]
|
|
pub nickname: Option<String>,
|
|
#[serde(default, skip_serializing_if = "Option::is_none")]
|
|
pub colour: Option<String>,
|
|
}
|
|
|
|
#[derive(Clone, Serialize, Deserialize)]
|
|
#[serde(tag = "op", content = "data")]
|
|
pub enum WatchEventData {
|
|
SetPlaying {
|
|
playing: bool,
|
|
time: u64,
|
|
},
|
|
SetTime {
|
|
#[serde(default, skip_serializing_if = "Option::is_none")]
|
|
from: Option<u64>,
|
|
to: u64,
|
|
},
|
|
|
|
UserJoin,
|
|
UserLeave,
|
|
ChatMessage(String),
|
|
Ping(String),
|
|
UpdateViewerList(Vec<Viewer>),
|
|
}
|
|
|
|
#[derive(Clone, Serialize, Deserialize)]
|
|
pub struct WatchEvent {
|
|
#[serde(default, skip_serializing_if = "Option::is_none")]
|
|
pub user: Option<String>,
|
|
#[serde(default, skip_serializing_if = "Option::is_none")]
|
|
pub colour: Option<String>,
|
|
#[serde(flatten)]
|
|
pub data: WatchEventData,
|
|
#[serde(default)]
|
|
pub reflected: bool,
|
|
}
|
|
|
|
impl WatchEvent {
|
|
pub fn new(user: String, colour: String, data: WatchEventData) -> Self {
|
|
WatchEvent {
|
|
user: Some(user),
|
|
colour: Some(colour),
|
|
data,
|
|
reflected: false,
|
|
}
|
|
}
|
|
}
|