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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
use serde::{Deserialize, Serialize};
use validator::Validate;

use super::text;
use crate::val_helpr::ValidationResult;

/// Used to statically identify `Opt`s as:
/// - being created from mrkdwn
/// - being created from plaintext
/// - whether or not it has `url` set
pub mod marker {
    use crate::text;
    use serde::{Deserialize as De, Serialize as Ser};

    /// Marker struct used to restrict / indicate
    /// `Opt`s created from Mrkdwn or Plain text.
    #[derive(Ser, De, Clone, Debug, Hash, PartialEq)]
    pub struct FromText<T: Into<text::Text>>(std::marker::PhantomData<T>);

    /// Marker struct used to restrict / indicate
    /// `Opt`s created from Plain text + has `url` set.
    #[derive(Ser, De, Clone, Debug, Hash, PartialEq)]
    pub struct FromPlainTextWithUrl;
}

/// # Option Object
/// [slack api docs 🔗]
///
/// An object that represents a single selectable item in a
/// - [select menu 🔗],
/// - [multi-select menu 🔗],
/// - [checkbox group 🔗],
/// - [radio button group 🔗],
/// - or [overflow menu 🔗].
///
/// [slack api docs 🔗]: https://api.slack.com/reference/block-kit/composition-objects#option
/// [select menu 🔗]: https://api.slack.com/reference/block-kit/block-elements#select
/// [multi-select menu 🔗]: https://api.slack.com/reference/block-kit/block-elements#multi_select
/// [checkbox group 🔗]: https://api.slack.com/reference/block-kit/block-elements#checkboxes
/// [radio button group 🔗]: https://api.slack.com/reference/block-kit/block-elements#radio
/// [overflow menu 🔗]: https://api.slack.com/reference/block-kit/block-elements#overflow
#[derive(Clone, Debug, Deserialize, Hash, PartialEq, Serialize, Validate)]
pub struct Opt<Marker = ()> {
    // *       ~~~~~~
    // This allows an `Opt` to _statically_
    // identify itself as:
    // - being created from mrkdwn
    // - being created from plaintext
    // - whether or not it has `url` set
    #[validate(custom = "validate::text")]
    text: text::Text,

    #[validate(length(max = 75))]
    value: String,

    #[validate(custom = "validate::desc")]
    description: Option<text::Text>,

    #[validate(length(max = 3000))]
    url: Option<String>,

    #[serde(skip)]
    __phantom: std::marker::PhantomData<Marker>,
}

// Constructor functions
impl Opt {
    /// Create an Option composition object from its label and
    /// a value to be sent back to your app when it is chosen.
    ///
    /// This returns an `Opt` that can be used by
    ///     overflow, select, and multi-select menus.
    ///     To construct an `Opt` that can be used by
    ///     radio buttons or checkboxes, see `from_mrkdwn_and_value`.
    ///
    /// # Arguments
    ///
    /// - `text` - A [text object 🔗] that defines the text shown in the option on the menu.
    ///     Overflow, select, and multi-select menus
    ///     can only use `plain_text` objects,
    ///     while radio buttons and checkboxes
    ///     can use `mrkdwn` text objects.
    ///     Maximum length for the `text` in this field is 75 characters.
    ///
    /// - `value` - The string value that will be passed to your app
    ///     when this option is chosen.
    ///     Maximum length for this field is 75 characters.
    ///
    /// [text object 🔗]: https://api.slack.com#text
    ///
    /// # Examples
    /// ```
    /// use slack_blocks::text;
    /// use slack_blocks::blocks::Block;
    /// use slack_blocks::blocks::section::Contents as Section;
    /// use slack_blocks::blocks::actions::Contents as Actions;
    /// use slack_blocks::compose::Opt;
    ///
    /// let cities = vec![
    ///   ("San Francisco", "san_francisco"),
    ///   ("San Diego", "san_diego"),
    ///   ("New York City", "nyc"),
    ///   ("Phoenix", "phx"),
    ///   ("Boston", "boston"),
    ///   ("Seattle", "seattle"),
    /// ]
    ///     .into_iter()
    ///     .map(|(title, short_code)| Opt::from_plain_text_and_value(title, short_code))
    ///     .collect::<Vec<_>>();
    ///
    /// let blocks: Vec<Block> = vec![
    ///   Section::from_text(text::Plain::from("Choose your favorite city...")).into(),
    ///   Actions::from_action_elements(vec![]).into() // TODO: add overflow to this example once it exists
    /// ];
    ///
    /// // < send block to slack's API >
    /// ```
    pub fn from_plain_text_and_value(
        text: impl Into<text::Plain>,
        value: impl ToString,
    ) -> Opt<marker::FromText<text::Plain>> {
        Opt::<marker::FromText<text::Plain>> {
            text: text.into().into(),
            value: value.to_string(),
            description: None,
            url: None,
            __phantom: std::marker::PhantomData,
        }
    }

    /// Create an Option composition object from its label and
    /// a value to be sent back to your app when it is chosen.
    ///
    /// This returns an `Opt` that can be used by
    ///     radio buttons or checkboxes.
    ///     To construct an `Opt` that can be used by
    ///     overflow, select, and multi-select menus,
    ///     see `from_plain_text_and_value`.
    ///
    /// # Arguments
    ///
    /// - `text` - A [text object 🔗] that defines the text shown in the option on the menu.
    ///     Overflow, select, and multi-select menus
    ///     can only use `plain_text` objects,
    ///     while radio buttons and checkboxes
    ///     can use `mrkdwn` text objects.
    ///     Maximum length for the `text` in this field is 75 characters.
    ///
    /// - `value` - The string value that will be passed to your app
    ///     when this option is chosen.
    ///     Maximum length for this field is 75 characters.
    ///
    /// [text object 🔗]: https://api.slack.com#text
    ///
    /// # Examples
    /// ```
    /// use slack_blocks::text;
    /// use slack_blocks::blocks::Block;
    /// use slack_blocks::blocks::section::Contents as Section;
    /// use slack_blocks::blocks::actions::Contents as Actions;
    /// use slack_blocks::compose::Opt;
    ///
    /// let options = vec![
    ///     "1",
    ///     "2",
    ///     "3",
    ///     "4",
    ///     "5",
    /// ]
    ///     .into_iter()
    ///     .map(|num| Opt::from_mrkdwn_and_value(num, num))
    ///     .collect::<Vec<_>>();
    ///
    /// let blocks: Vec<Block> = vec![
    ///   Section::from_text(text::Plain::from("On a scale from 1 to 5...")).into(),
    ///   Actions::from_action_elements(vec![]).into() // TODO: add radio buttons to this example once it exists
    /// ];
    ///
    /// // < send block to slack's API >
    /// ```
    pub fn from_mrkdwn_and_value(
        text: impl Into<text::Mrkdwn>,
        value: impl ToString,
    ) -> Opt<marker::FromText<text::Mrkdwn>> {
        Opt::<marker::FromText<text::Mrkdwn>> {
            text: text.into().into(),
            value: value.to_string(),
            description: None,
            url: None,
            __phantom: std::marker::PhantomData,
        }
    }
}

// Methods available to all specializations
impl<M> Opt<M> {
    /// Chainable setter method, that sets a description for this `Opt`.
    ///
    /// # Arguments
    ///
    /// - `desc` - A [`plain_text` only text object 🔗] that defines
    ///     a line of descriptive text shown below the `text` field
    ///     beside the radio button.
    ///     Maximum length for the `text` object within this field
    ///     is 75 characters.
    ///
    /// [`plain_text` only text object 🔗]: https://api.slack.comhttps://api.slack.com/reference/block-kit/composition-objects#text
    ///
    /// # Example
    ///
    /// ```
    /// use slack_blocks::text;
    /// use slack_blocks::blocks::Block;
    /// use slack_blocks::blocks::section::Contents as Section;
    /// use slack_blocks::blocks::actions::Contents as Actions;
    /// use slack_blocks::compose::Opt;
    ///
    /// let options = vec![
    ///     ("1", "Hated it."),
    ///     ("2", "Didn't like it."),
    ///     ("3", "It was OK."),
    ///     ("4", "Liked it!"),
    ///     ("5", "New favorite!!"),
    /// ]
    ///     .into_iter()
    ///     .map(|(num, desc)| {
    ///         Opt::from_mrkdwn_and_value(num, num)
    ///             .with_description(desc)
    ///     })
    ///     .collect::<Vec<_>>();
    ///
    /// let blocks: Vec<Block> = vec![
    ///   Section::from_text(text::Plain::from("On a scale from 1 to 5...")).into(),
    ///   Actions::from_action_elements(vec![]).into() // TODO: add radio buttons to this example once it exists
    /// ];
    ///
    /// // < send block to slack's API >
    /// ```
    pub fn with_description(mut self, desc: impl Into<text::Mrkdwn>) -> Self {
        self.description = Some(desc.into().into());
        self
    }

    /// Validate that this Option composition object
    /// agrees with Slack's model requirements
    ///
    /// # Errors
    /// - If `from_plain_text_and_value` or `from_mrkdwn_and_value`
    ///     was called with `text` longer than 75 chars
    /// - If `from_plain_text_and_value` or `from_mrkdwn_and_value`
    ///     was called with `value` longer than 75 chars
    /// - If `with_url` was called with url longer than 3000 chars
    /// - If `with_description` was called with text longer than 75 chars
    ///
    /// # Example
    /// ```
    /// use slack_blocks::compose::Opt;
    /// use std::iter::repeat;
    ///
    /// let long_string: String = repeat(' ').take(76).collect();
    ///
    /// let opt = Opt::from_plain_text_and_value("My Option", long_string);
    ///
    /// assert_eq!(true, matches!(opt.validate(), Err(_)));
    /// ```
    pub fn validate(&self) -> ValidationResult {
        Validate::validate(self)
    }
}

// Methods available only to `Opt` created from `text::Plain`
impl Opt<marker::FromText<text::Plain>> {
    /// Chainable setter method, that sets a description for this `Opt`.
    ///
    /// **The `url` attribute is only available in [overflow menus 🔗]**.
    ///
    /// If you're using `url`, you'll still receive an [interaction payload 🔗]
    /// and will need to [send an acknowledgement response 🔗].
    ///
    /// # Arguments
    /// - `url` - A URL to load in the user's browser when the option is clicked.
    ///     Maximum length for this field is 3000 characters.
    ///
    /// [overflow menus 🔗]: https://api.slack.com/reference/block-kit/block-elements#overflow
    /// [interaction payload 🔗]: https://api.slack.com/interactivity/handling#payloads
    /// [send an acknowledgement response 🔗]: https://api.slack.com/interactivity/handling#acknowledgment_response
    ///
    /// # Example
    /// ```
    /// use slack_blocks::text;
    /// use slack_blocks::blocks::Block;
    /// use slack_blocks::blocks::section::Contents as Section;
    /// use slack_blocks::blocks::actions::Contents as Actions;
    /// use slack_blocks::compose::Opt;
    ///
    /// let cities = vec![
    ///   ("San Francisco", "san_francisco", "https://www.sftravel.com/"),
    ///   ("San Diego", "san_diego", "https://www.sandiego.org/explore.aspx"),
    ///   ("New York City", "nyc", "https://www.nycgo.com/"),
    ///   ("Phoenix", "phx", "https://www.visitphoenix.com/"),
    ///   ("Boston", "boston", "https://www.boston.gov/visiting-boston"),
    ///   ("Seattle", "seattle", "https://visitseattle.org/"),
    /// ]
    ///     .into_iter()
    ///     .map(|(title, short_code, travel_link)| {
    ///         Opt::from_plain_text_and_value(title, short_code)
    ///             .with_url(travel_link)
    ///     })
    ///     .collect::<Vec<_>>();
    ///
    /// let blocks: Vec<Block> = vec![
    ///   Section::from_text(text::Plain::from("Choose your favorite city...")).into(),
    ///   Actions::from_action_elements(vec![]).into() // TODO: add overflow to this example once it exists
    /// ];
    ///
    /// // < send block to slack's API >
    /// ```
    pub fn with_url(self, url: impl ToString) -> Opt<marker::FromPlainTextWithUrl> {
        Opt::<marker::FromPlainTextWithUrl> {
            text: self.text,
            value: self.value,
            description: self.description,
            url: Some(url.to_string()),
            __phantom: std::marker::PhantomData,
        }
    }
}

pub mod validate {
    use super::*;
    use crate::val_helpr::{below_len, ValidatorResult};

    pub fn text(text: &text::Text) -> ValidatorResult {
        below_len("Option Text", 75, text.as_ref())
    }

    pub fn desc(text: &text::Text) -> ValidatorResult {
        below_len("Option Description", 75, text.as_ref())
    }
}