use std::collections::HashMap;
use ruma::{
MilliSecondsSinceUnixEpoch, OwnedUserId, UserId,
events::poll::{
PollResponseData, compile_unstable_poll_results,
start::PollKind,
unstable_start::{
NewUnstablePollStartEventContent, NewUnstablePollStartEventContentWithoutRelation,
UnstablePollStartContentBlock,
},
},
};
#[derive(Clone, Debug)]
pub struct PollState {
pub(in crate::timeline) fallback_text: Option<String>,
pub(in crate::timeline) poll_start: UnstablePollStartContentBlock,
pub(in crate::timeline) response_data: Vec<ResponseData>,
pub(in crate::timeline) end_event_timestamp: Option<MilliSecondsSinceUnixEpoch>,
pub(in crate::timeline) has_been_edited: bool,
}
#[derive(Clone, Debug)]
pub(in crate::timeline) struct ResponseData {
pub sender: OwnedUserId,
pub timestamp: MilliSecondsSinceUnixEpoch,
pub answers: Vec<String>,
}
impl PollState {
pub(crate) fn new(
poll_start: UnstablePollStartContentBlock,
fallback_text: Option<String>,
) -> Self {
Self {
fallback_text,
poll_start,
response_data: vec![],
end_event_timestamp: None,
has_been_edited: false,
}
}
pub(crate) fn edit(
&self,
replacement: NewUnstablePollStartEventContentWithoutRelation,
) -> Option<Self> {
if self.end_event_timestamp.is_none() {
let mut clone = self.clone();
clone.poll_start = replacement.poll_start;
clone.fallback_text = replacement.text;
clone.has_been_edited = true;
Some(clone)
} else {
None
}
}
pub(crate) fn add_response(
&mut self,
sender: OwnedUserId,
timestamp: MilliSecondsSinceUnixEpoch,
answers: Vec<String>,
) {
self.response_data.push(ResponseData { sender, timestamp, answers });
}
pub(crate) fn remove_response(
&mut self,
sender: &UserId,
timestamp: MilliSecondsSinceUnixEpoch,
) {
if let Some(idx) = self
.response_data
.iter()
.position(|resp| resp.sender == sender && resp.timestamp == timestamp)
{
self.response_data.remove(idx);
}
}
pub(crate) fn end(&mut self, timestamp: MilliSecondsSinceUnixEpoch) -> bool {
if self.end_event_timestamp.is_none() {
self.end_event_timestamp = Some(timestamp);
true
} else {
false
}
}
pub fn fallback_text(&self) -> Option<String> {
self.fallback_text.clone()
}
pub fn results(&self) -> PollResult {
let results = compile_unstable_poll_results(
&self.poll_start,
self.response_data.iter().map(|response_data| PollResponseData {
sender: &response_data.sender,
origin_server_ts: response_data.timestamp,
selections: &response_data.answers,
}),
self.end_event_timestamp,
);
PollResult {
question: self.poll_start.question.text.clone(),
kind: self.poll_start.kind.clone(),
max_selections: self.poll_start.max_selections.into(),
answers: self
.poll_start
.answers
.iter()
.map(|i| PollResultAnswer { id: i.id.clone(), text: i.text.clone() })
.collect(),
votes: results
.iter()
.map(|i| ((*i.0).to_owned(), i.1.iter().map(|i| i.to_string()).collect()))
.collect(),
end_time: self.end_event_timestamp,
has_been_edited: self.has_been_edited,
}
}
pub fn is_edit(&self) -> bool {
self.has_been_edited
}
}
impl From<PollState> for NewUnstablePollStartEventContent {
fn from(value: PollState) -> Self {
let content = UnstablePollStartContentBlock::new(
value.poll_start.question.text.clone(),
value.poll_start.answers.clone(),
);
if let Some(text) = value.fallback_text() {
NewUnstablePollStartEventContent::plain_text(text, content)
} else {
NewUnstablePollStartEventContent::new(content)
}
}
}
#[derive(Debug)]
pub struct PollResult {
pub question: String,
pub kind: PollKind,
pub max_selections: u64,
pub answers: Vec<PollResultAnswer>,
pub votes: HashMap<String, Vec<String>>,
pub end_time: Option<MilliSecondsSinceUnixEpoch>,
pub has_been_edited: bool,
}
#[derive(Debug)]
pub struct PollResultAnswer {
pub id: String,
pub text: String,
}