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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
use derive_builder::Builder;
use hex_color::HexColor;
use indexmap::IndexSet;
use serde::{Deserialize, Serialize};
/// As a plug-in developer you can augment your actions with additional data that the user has to
/// fill in.
///
/// It uses the same structures as the native actions from Touch Portal itself.
///
/// You can use this for both static actions as dynamic actions. The user will have to specify
/// values for the given data field within Touch Portal.
#[derive(Debug, Clone, Builder, Deserialize, Serialize)]
pub struct Data {
/// This is the id of the data field.
///
/// Touch Portal will use this for communicating the values or to place the values in the
/// result.
#[builder(setter(into))]
pub(crate) id: String,
#[serde(flatten)]
pub(crate) format: DataFormat,
}
impl Data {
pub fn builder() -> DataBuilder {
DataBuilder::default()
}
}
#[derive(Debug, Clone, Deserialize, Serialize)]
#[serde(tag = "type")]
#[serde(rename_all = "camelCase")]
#[non_exhaustive]
pub enum DataFormat {
/// A data type that accepts a string
Text(TextData),
/// A data type that accepts a number
Number(NumberData),
/// A data type that accepts a true or false value
Switch(SwitchData),
/// A data type that accepts a string where a collection of strings can be chosen from
Choice(ChoiceData),
/// A data type that represents a file which the user can pick with a file chooser
File(FileData),
/// A data type that represents a folder which the user can pick with a folder chooser
Folder(FolderData),
/// A data type that represents a color which the user can pick with a color chooser.
///
/// This value must be in a the format `#RRGGBBAA`.
Color(ColorData),
/// A data type that represents a field for the user to specify the lower bound of the slider
/// range.
///
/// The amount of decimals will also specify the precision. For example, if the user sets the
/// lower bound to 1, all values will be whole numbers. If the value is set to 1.0 it will
/// return connector values times 10, if the value is set to 1.00 it will return connector
/// values times 100. The plug-in is responsible of dividing the value to the proper range
/// before it is used. Connectors are only capable of sending integer data.
///
/// If `UpperBound` is also set, both fields will be checked for precision. The higher
/// precision will be used. A range between 1 and 5.0 means it will use the 5.0 for the
/// precision.
///
/// Only available for connectors.
///
/// Only available in API version 10 and above.
LowerBound(BoundData),
/// A data type that represents a field for the user to specify the upper bound of the slider
/// range.
///
/// The amount of decimals will also specify the precision. For example, if the user sets the
/// upper bound to 1, all values of the connector will be send as normal but will be translated
/// to the range specified. If the value is set to 1.0 it will return connector values times
/// 10, if the value is set to 1.00 it will return connector values times 100. The plug-in is
/// responsible of dividing the value to the proper range before it is used. Connectors are
/// only capable of sending integer data.
///
/// If `LowerBound` is also set, both fields will be checked for precision. The higher
/// precision will be used. A range between 1 and 5.0 means it will use the 5.0 for the
/// precision.
///
/// Only available for connectors.
///
/// Only available in API version 10 and above.
UpperBound(BoundData),
// TODO: valueStore
}
#[derive(Debug, Clone, Builder, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TextData {
/// This is the default value the data object has.
#[builder(setter(into), default)]
#[serde(rename = "default")]
#[doc(alias = "default")]
pub(crate) initial: String,
}
impl TextData {
pub fn builder() -> TextDataBuilder {
TextDataBuilder::default()
}
}
fn bool_is_true(b: &bool) -> bool {
*b
}
#[derive(Debug, Clone, Builder, Deserialize, Serialize)]
#[builder(build_fn(validate = "Self::validate"))]
#[serde(rename_all = "camelCase")]
pub struct NumberData {
/// This is the default value the data object has.
#[serde(rename = "default")]
#[doc(alias = "default")]
pub(crate) initial: f64,
/// This field tells the system whether this data field should allow decimals in the number.
///
/// The default is `true`.
#[builder(default = true)]
#[serde(skip_serializing_if = "bool_is_true")]
pub(crate) allow_decimals: bool,
/// This is the lowest number that will be accepted.
///
/// The user will get a message to correct the data if it is lower and the new value will be
/// rejected.
#[serde(skip_serializing_if = "Option::is_none")]
#[builder(setter(into, strip_option), default)]
pub(crate) min_value: Option<f64>,
/// This is the highest number that will be accepted.
///
/// The user will get a message to correct the data if it is higher and the new value will be
/// rejected.
#[serde(skip_serializing_if = "Option::is_none")]
#[builder(setter(into, strip_option), default)]
pub(crate) max_value: Option<f64>,
}
impl NumberData {
pub fn builder() -> NumberDataBuilder {
NumberDataBuilder::default()
}
}
impl NumberDataBuilder {
fn validate(&self) -> Result<(), String> {
let initial = self.initial.expect("initial is required");
let min = self.min_value.flatten();
let max = self.max_value.flatten();
if let Some(min_val) = min
&& initial < min_val
{
if let Some(max_val) = max {
return Err(format!(
"initial value {} is outside the allowed range [{}, {}]",
initial, min_val, max_val
));
} else {
return Err(format!(
"initial value {} is below the minimum allowed value {}",
initial, min_val
));
}
}
if let Some(max_val) = max
&& initial > max_val
{
if let Some(min_val) = min {
return Err(format!(
"initial value {} is outside the allowed range [{}, {}]",
initial, min_val, max_val
));
} else {
return Err(format!(
"initial value {} is above the maximum allowed value {}",
initial, max_val
));
}
}
Ok(())
}
}
#[derive(Debug, Clone, Builder, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct SwitchData {
/// This is the default value the data object has.
#[serde(rename = "default")]
#[doc(alias = "default")]
pub(crate) initial: bool,
}
impl SwitchData {
pub fn builder() -> SwitchDataBuilder {
SwitchDataBuilder::default()
}
}
#[derive(Debug, Clone, Builder, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ChoiceData {
/// This is the default value the data object has.
#[builder(setter(into))]
#[serde(rename = "default")]
#[doc(alias = "default")]
pub(crate) initial: String,
#[builder(setter(each(name = "choice", into)))]
pub(crate) value_choices: Vec<String>,
}
impl ChoiceData {
pub fn builder() -> ChoiceDataBuilder {
ChoiceDataBuilder::default()
}
}
#[derive(Debug, Clone, Builder, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct FileData {
/// This is the default value the data object has.
#[builder(setter(into))]
#[serde(rename = "default")]
#[doc(alias = "default")]
pub(crate) initial: String,
/// This is a collection of extensions allowed to open.
///
/// eg: `"extensions": ["*.jpg","*.png"]`
#[builder(setter(each(name = "extension")), default)]
#[serde(skip_serializing_if = "IndexSet::is_empty")]
pub(crate) extensions: IndexSet<String>,
}
impl FileData {
pub fn builder() -> FileDataBuilder {
FileDataBuilder::default()
}
}
#[derive(Debug, Clone, Builder, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct FolderData {
/// This is the default value the data object has.
#[builder(setter(into))]
#[serde(rename = "default")]
#[doc(alias = "default")]
pub(crate) initial: String,
}
impl FolderData {
pub fn builder() -> FolderDataBuilder {
FolderDataBuilder::default()
}
}
#[derive(Debug, Clone, Builder, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ColorData {
/// This is the default value the data object has.
#[builder(setter(into))]
#[serde(rename = "default")]
#[doc(alias = "default")]
pub(crate) initial: HexColor,
}
impl ColorData {
pub fn builder() -> ColorDataBuilder {
ColorDataBuilder::default()
}
}
#[derive(Debug, Clone, Builder, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct BoundData {
/// This is the default value the data object has.
#[serde(rename = "default")]
#[doc(alias = "default")]
pub(crate) initial: i64,
/// This is the lowest number that will be accepted.
///
/// The user will get a message to correct the data if it is lower and the new value will be
/// rejected.
#[serde(skip_serializing_if = "Option::is_none")]
#[builder(setter(into, strip_option), default)]
pub(crate) min_value: Option<i64>,
/// This is the highest number that will be accepted.
///
/// The user will get a message to correct the data if it is higher and the new value will be
/// rejected.
#[serde(skip_serializing_if = "Option::is_none")]
#[builder(setter(into, strip_option), default)]
pub(crate) max_value: Option<i64>,
}
impl BoundData {
pub fn builder() -> BoundDataBuilder {
BoundDataBuilder::default()
}
}
#[test]
fn serialize_example_action_data_text() {
assert_eq!(
serde_json::to_value(
Data::builder()
.id("actiondata001")
.format(DataFormat::Text(
TextData::builder().initial("any text").build().unwrap()
))
.build()
.unwrap()
)
.unwrap(),
serde_json::json! {{
"id":"actiondata001",
"type":"text",
"default":"any text"
}}
);
}
#[test]
fn serialize_example_action_data_number() {
assert_eq!(
serde_json::to_value(
Data::builder()
.id("first")
.format(DataFormat::Number(
NumberData::builder()
.initial(200.)
.min_value(100.)
.max_value(350.)
.build()
.unwrap()
))
.build()
.unwrap()
)
.unwrap(),
serde_json::json! { {
"id":"first",
"type":"number",
"default":200.0,
"minValue":100.0,
"maxValue":350.0,
}}
);
}
#[test]
fn serialize_example_action_data_choice() {
assert_eq!(
serde_json::to_value(
Data::builder()
.id("second")
.format(DataFormat::Choice(
ChoiceData::builder()
.initial("200")
.choice("200")
.choice("400")
.choice("600")
.choice("800")
.build()
.unwrap()
))
.build()
.unwrap()
)
.unwrap(),
serde_json::json! {{
"id":"second",
"type":"choice",
"default":"200",
"valueChoices": [
"200",
"400",
"600",
"800"
]
}}
);
}
#[test]
fn serialize_example_action_data_switch() {
assert_eq!(
serde_json::to_value(
Data::builder()
.id("actiondata003")
.format(DataFormat::Switch(
SwitchData::builder().initial(true).build().unwrap()
))
.build()
.unwrap()
)
.unwrap(),
serde_json::json! {{
"id":"actiondata003",
"type":"switch",
"default":true
}}
);
}