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 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
//! # Filter for Conversations List //! [slack api docs 🔗] //! //! Provides a way to filter the list of options //! in a [conversations select menu 🔗] or //! [conversations multi-select menu 🔗]. //! //! [slack api docs 🔗]: https://api.slack.com/reference/block-kit/composition-objects#filter_conversations //! [conversations select menu 🔗]: https://api.slack.comhttps://api.slack.com/reference/block-kit/block-elements#conversation_select //! [conversations multi-select menu 🔗]: https://api.slack.comhttps://api.slack.com/reference/block-kit/block-elements#conversation_multi_select use serde::{Deserialize, Serialize}; use validator::Validate; use crate::val_helpr::ValidationResult; /// # Filter for Conversations List /// [slack api docs 🔗] /// /// Provides a way to filter the list of options /// in a [conversations select menu 🔗] or /// [conversations multi-select menu 🔗]. /// /// [slack api docs 🔗]: https://api.slack.com/reference/block-kit/composition-objects#filter_conversations /// [conversations select menu 🔗]: https://api.slack.comhttps://api.slack.com/reference/block-kit/block-elements#conversation_select /// [conversations multi-select menu 🔗]: https://api.slack.comhttps://api.slack.com/reference/block-kit/block-elements#conversation_multi_select #[derive(Clone, Debug, Default, Deserialize, Hash, PartialEq, Serialize, Validate)] pub struct ConversationFilter { #[validate(length(min = 1, max = 4))] include: Option<Vec<ConversationKind>>, exclude_external_shared_channels: Option<bool>, exclude_bot_users: Option<bool>, } impl ConversationFilter { /// Create a Conversation Filter object /// that allows bot users & all kinds of channels; /// including cross-org shared channels. /// /// # Example /// ``` /// use slack_blocks::compose::ConversationFilter; /// /// let filter = ConversationFilter::new(); /// // TODO: once conversationselect is implemented /// // let select = ConversationSelect::from_filter(filter); /// ``` pub fn new() -> Self { Default::default() } /// Chainable setter method that allows you to restrict /// the kinds of channels that will appear in the /// conversation select menu. /// /// For excluding cross-org shared channels, see /// `exclude_external_shared_channels`. /// /// For excluding DMs with bots, see `exclude_bot_users`. /// /// # Arguments /// - `kinds` - A **non-empty** unique collection of /// `ConversationKind`s, that the select options /// will be restricted to. /// /// # Example /// ``` /// use slack_blocks::compose::ConversationFilter; /// use slack_blocks::compose::conversation_filter::ConversationKind; /// /// let filter = ConversationFilter::new() /// .include_conversation_kinds(vec![ /// ConversationKind::PublicChannel, /// ]); /// /// // TODO: once conversationselect is implemented /// // let select = ConversationSelect::from_filter(filter); /// ``` pub fn include_conversation_kinds(mut self, kinds: impl IntoIterator<Item = ConversationKind>) -> Self { let mut kinds: Vec<_> = kinds.into_iter().collect(); match kinds.len() { | 0 => self, | _ => { kinds.dedup(); self.include = Some(kinds); self }, } } /// Chainable setter method that allows cross-org /// shared channels to appear in the conversation /// select menu. /// /// Note that this setting is the default, and that /// calling this method is a no-op. It exists purely /// as declarative sugar for filter construction. /// /// For excluding cross-org shared channels, see /// `exclude_external_shared_channels`. /// /// # Example /// ``` /// use slack_blocks::compose::ConversationFilter; /// /// let filter = ConversationFilter::new().include_external_shared_channels(); /// /// // TODO: once conversationselect is implemented /// // let select = ConversationSelect::from_filter(filter); /// ``` pub fn include_external_shared_channels(self) -> Self { self } /// Chainable setter method that prevents cross-workspace /// shared channels from appearing in the conversation /// select menu. /// /// # Example /// ``` /// use slack_blocks::compose::ConversationFilter; /// /// let filter = ConversationFilter::new().exclude_external_shared_channels(); /// /// // TODO: once conversationselect is implemented /// // let select = ConversationSelect::from_filter(filter); /// ``` pub fn exclude_external_shared_channels(mut self) -> Self { self.exclude_external_shared_channels = Some(true); self } /// Chainable setter method that allows conversations /// with Bot Users to appear in the conversation /// select menu. /// /// This is the default behavior. /// /// For excluding bot user DMs, see `exclude_bot_users`. /// /// # Example /// ``` /// use slack_blocks::compose::ConversationFilter; /// /// let filter = ConversationFilter::new().include_bot_users(); /// /// // TODO: once conversationselect is implemented /// // let select = ConversationSelect::from_filter(filter); /// ``` pub fn include_bot_users(self) -> Self { self } /// Chainable setter method that prevents DMs with /// Bot users from appearing in the conversation /// select menu. /// /// # Example /// ``` /// use slack_blocks::compose::ConversationFilter; /// /// let filter = ConversationFilter::new().exclude_bot_users(); /// /// // TODO: once conversationselect is implemented /// // let select = ConversationSelect::from_filter(filter); /// ``` pub fn exclude_bot_users(mut self) -> Self { self.exclude_bot_users = Some(true); self } /// Validate that this Conversation Filter object /// agrees with Slack's model requirements. /// /// This type has runtime checks that prevent it from /// failing validation. /// /// # Errors /// - Never /// /// # Example /// ``` /// use slack_blocks::compose::ConversationFilter; /// /// let filter = ConversationFilter::new().include_conversation_kinds(vec![]); /// /// assert_eq!(false, matches!(filter.validate(), Err(_))); /// ``` pub fn validate(&self) -> ValidationResult { Validate::validate(self) } } // TODO: move this somewhere else. it is 100% gonna be used elsewhere. /// Type of slack "conversations"; dms and channels. #[derive(Copy, Clone, Debug, Deserialize, Hash, PartialEq, Serialize)] pub enum ConversationKind { /// A direct message #[serde(rename = "im")] Dm, /// A group DM #[serde(rename = "mpim")] GroupDm, /// A public channel #[serde(rename = "public")] PublicChannel, /// A private channel #[serde(rename = "private")] PrivateChannel, }