use crate::EventTypeFlags;
use std::sync::Arc;
use twilight_gateway_queue::Queue;
use twilight_http::Client;
use twilight_model::gateway::{
payload::outgoing::{identify::IdentifyProperties, update_presence::UpdatePresencePayload},
Intents,
};
#[derive(Clone, Debug)]
pub struct Config {
pub(crate) event_types: EventTypeFlags,
pub(crate) gateway_url: Option<Box<str>>,
pub(crate) http_client: Arc<Client>,
pub(super) identify_properties: Option<IdentifyProperties>,
pub(super) intents: Intents,
pub(super) large_threshold: u64,
pub(super) presence: Option<UpdatePresencePayload>,
pub(super) queue: Arc<dyn Queue>,
pub(crate) shard: [u64; 2],
pub(super) token: Box<str>,
pub(crate) session_id: Option<Box<str>>,
pub(crate) sequence: Option<u64>,
}
impl Config {
pub const fn event_types(&self) -> EventTypeFlags {
self.event_types
}
pub fn gateway_url(&self) -> Option<&str> {
self.gateway_url.as_deref()
}
pub fn http_client(&self) -> &Client {
&self.http_client
}
pub const fn identify_properties(&self) -> Option<&IdentifyProperties> {
self.identify_properties.as_ref()
}
pub const fn intents(&self) -> Intents {
self.intents
}
pub const fn large_threshold(&self) -> u64 {
self.large_threshold
}
pub const fn presence(&self) -> Option<&UpdatePresencePayload> {
self.presence.as_ref()
}
pub const fn shard(&self) -> [u64; 2] {
self.shard
}
pub const fn token(&self) -> &str {
&self.token
}
}
#[cfg(test)]
mod tests {
use super::Config;
use static_assertions::assert_impl_all;
use std::fmt::Debug;
assert_impl_all!(Config: Clone, Debug, Send, Sync);
}