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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
|
use crate::ids::{PageId, UserId};
use crate::models::paging::{Pageable, Paging, PagingCursor};
use crate::models::Number;
use chrono::{DateTime, Utc};
use serde::ser::SerializeMap;
use serde::{Serialize, Serializer};
#[derive(Serialize, Debug, Eq, PartialEq, Hash, Copy, Clone)]
#[serde(rename_all = "snake_case")]
pub enum SortDirection {
Ascending,
Descending,
}
#[derive(Serialize, Debug, Eq, PartialEq, Hash, Copy, Clone)]
#[serde(rename_all = "snake_case")]
pub enum SortTimestamp {
LastEditedTime,
}
#[derive(Serialize, Debug, Eq, PartialEq, Hash, Copy, Clone)]
#[serde(rename_all = "snake_case")]
pub enum FilterValue {
Page,
Database,
}
#[derive(Serialize, Debug, Eq, PartialEq, Hash, Copy, Clone)]
#[serde(rename_all = "snake_case")]
pub enum FilterProperty {
Object,
}
#[derive(Serialize, Debug, Eq, PartialEq, Clone)]
pub struct Sort {
/// The name of the timestamp to sort against.
timestamp: SortTimestamp,
direction: SortDirection,
}
#[derive(Serialize, Debug, Eq, PartialEq, Clone)]
pub struct Filter {
property: FilterProperty,
value: FilterValue,
}
#[derive(Serialize, Debug, Eq, PartialEq, Default)]
pub struct SearchRequest {
#[serde(skip_serializing_if = "Option::is_none")]
query: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
sort: Option<Sort>,
#[serde(skip_serializing_if = "Option::is_none")]
filter: Option<Filter>,
#[serde(flatten)]
paging: Option<Paging>,
}
#[derive(Serialize, Debug, Eq, PartialEq, Clone)]
#[serde(rename_all = "snake_case")]
pub enum TextCondition {
Equals(String),
DoesNotEqual(String),
Contains(String),
DoesNotContain(String),
StartsWith(String),
EndsWith(String),
#[serde(serialize_with = "serialize_to_true")]
IsEmpty,
#[serde(serialize_with = "serialize_to_true")]
IsNotEmpty,
}
fn serialize_to_true<S>(serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
serializer.serialize_bool(true)
}
fn serialize_to_empty_object<S>(serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
// Todo: there has to be a better way?
serializer.serialize_map(Some(0))?.end()
}
#[derive(Serialize, Debug, Eq, PartialEq, Clone)]
#[serde(rename_all = "snake_case")]
pub enum NumberCondition {
Equals(Number),
DoesNotEqual(Number),
GreaterThan(Number),
LessThan(Number),
GreaterThanOrEqualTo(Number),
LessThanOrEqualTo(Number),
#[serde(serialize_with = "serialize_to_true")]
IsEmpty,
#[serde(serialize_with = "serialize_to_true")]
IsNotEmpty,
}
#[derive(Serialize, Debug, Eq, PartialEq, Clone)]
#[serde(rename_all = "snake_case")]
pub enum CheckboxCondition {
Equals(bool),
DoesNotEqual(bool),
}
#[derive(Serialize, Debug, Eq, PartialEq, Clone)]
#[serde(rename_all = "snake_case")]
pub enum SelectCondition {
/// Only return pages where the page property value matches the provided value exactly.
Equals(String),
/// Only return pages where the page property value does not match the provided value exactly.
DoesNotEqual(String),
/// Only return pages where the page property value is empty.
#[serde(serialize_with = "serialize_to_true")]
IsEmpty,
/// Only return pages where the page property value is present.
#[serde(serialize_with = "serialize_to_true")]
IsNotEmpty,
}
#[derive(Serialize, Debug, Eq, PartialEq, Clone)]
#[serde(rename_all = "snake_case")]
pub enum MultiSelectCondition {
/// Only return pages where the page property value contains the provided value.
Contains(String),
/// Only return pages where the page property value does not contain the provided value.
DoesNotContain(String),
/// Only return pages where the page property value is empty.
#[serde(serialize_with = "serialize_to_true")]
IsEmpty,
/// Only return pages where the page property value is present.
#[serde(serialize_with = "serialize_to_true")]
IsNotEmpty,
}
#[derive(Serialize, Debug, Eq, PartialEq, Clone)]
#[serde(rename_all = "snake_case")]
pub enum DateCondition {
/// Only return pages where the page property value matches the provided date exactly.
/// Note that the comparison is done against the date.
/// Any time information sent will be ignored.
Equals(DateTime<Utc>),
/// Only return pages where the page property value is before the provided date.
/// Note that the comparison is done against the date.
/// Any time information sent will be ignored.
Before(DateTime<Utc>),
/// Only return pages where the page property value is after the provided date.
/// Note that the comparison is done against the date.
/// Any time information sent will be ignored.
After(DateTime<Utc>),
/// Only return pages where the page property value is on or before the provided date.
/// Note that the comparison is done against the date.
/// Any time information sent will be ignored.
OnOrBefore(DateTime<Utc>),
/// Only return pages where the page property value is on or after the provided date.
/// Note that the comparison is done against the date.
/// Any time information sent will be ignored.
OnOrAfter(DateTime<Utc>),
/// Only return pages where the page property value is empty.
#[serde(serialize_with = "serialize_to_true")]
IsEmpty,
/// Only return pages where the page property value is present.
#[serde(serialize_with = "serialize_to_true")]
IsNotEmpty,
/// Only return pages where the page property value is within the past week.
#[serde(serialize_with = "serialize_to_empty_object")]
PastWeek,
/// Only return pages where the page property value is within the past month.
#[serde(serialize_with = "serialize_to_empty_object")]
PastMonth,
/// Only return pages where the page property value is within the past year.
#[serde(serialize_with = "serialize_to_empty_object")]
PastYear,
/// Only return pages where the page property value is within the next week.
#[serde(serialize_with = "serialize_to_empty_object")]
NextWeek,
/// Only return pages where the page property value is within the next month.
#[serde(serialize_with = "serialize_to_empty_object")]
NextMonth,
/// Only return pages where the page property value is within the next year.
#[serde(serialize_with = "serialize_to_empty_object")]
NextYear,
}
#[derive(Serialize, Debug, Eq, PartialEq, Clone)]
#[serde(rename_all = "snake_case")]
pub enum PeopleCondition {
Contains(UserId),
/// Only return pages where the page property value does not contain the provided value.
DoesNotContain(UserId),
/// Only return pages where the page property value is empty.
#[serde(serialize_with = "serialize_to_true")]
IsEmpty,
/// Only return pages where the page property value is present.
#[serde(serialize_with = "serialize_to_true")]
IsNotEmpty,
}
#[derive(Serialize, Debug, Eq, PartialEq, Clone)]
#[serde(rename_all = "snake_case")]
pub enum FilesCondition {
/// Only return pages where the page property value is empty.
#[serde(serialize_with = "serialize_to_true")]
IsEmpty,
/// Only return pages where the page property value is present.
#[serde(serialize_with = "serialize_to_true")]
IsNotEmpty,
}
#[derive(Serialize, Debug, Eq, PartialEq, Clone)]
#[serde(rename_all = "snake_case")]
pub enum RelationCondition {
/// Only return pages where the page property value contains the provided value.
Contains(PageId),
/// Only return pages where the page property value does not contain the provided value.
DoesNotContain(PageId),
/// Only return pages where the page property value is empty.
#[serde(serialize_with = "serialize_to_true")]
IsEmpty,
/// Only return pages where the page property value is present.
#[serde(serialize_with = "serialize_to_true")]
IsNotEmpty,
}
#[derive(Serialize, Debug, Eq, PartialEq, Clone)]
#[serde(rename_all = "snake_case")]
pub enum FormulaCondition {
/// Only return pages where the result type of the page property formula is "text"
/// and the provided text filter condition matches the formula's value.
Text(TextCondition),
/// Only return pages where the result type of the page property formula is "number"
/// and the provided number filter condition matches the formula's value.
Number(NumberCondition),
/// Only return pages where the result type of the page property formula is "checkbox"
/// and the provided checkbox filter condition matches the formula's value.
Checkbox(CheckboxCondition),
/// Only return pages where the result type of the page property formula is "date"
/// and the provided date filter condition matches the formula's value.
Date(DateCondition),
}
#[derive(Serialize, Debug, Eq, PartialEq, Clone)]
#[serde(rename_all = "snake_case")]
pub enum PropertyCondition {
RichText(TextCondition),
Number(NumberCondition),
Checkbox(CheckboxCondition),
Select(SelectCondition),
MultiSelect(MultiSelectCondition),
Date(DateCondition),
People(PeopleCondition),
Files(FilesCondition),
Relation(RelationCondition),
Formula(FormulaCondition),
/// Returns pages when **any** of the filters inside the provided vector match.
Or(Vec<PropertyCondition>),
/// Returns pages when **all** of the filters inside the provided vector match.
And(Vec<PropertyCondition>),
}
#[derive(Serialize, Debug, Eq, PartialEq, Clone)]
pub struct FilterCondition {
pub property: String,
#[serde(flatten)]
pub condition: PropertyCondition,
}
#[derive(Serialize, Debug, Eq, PartialEq, Hash, Copy, Clone)]
#[serde(rename_all = "snake_case")]
pub enum DatabaseSortTimestamp {
CreatedTime,
LastEditedTime,
}
#[derive(Serialize, Debug, Eq, PartialEq, Clone)]
pub struct DatabaseSort {
// Todo: Should property and timestamp be mutually exclusive? (i.e a flattened enum?)
// the documentation is not clear:
// https://developers.notion.com/reference/post-database-query#post-database-query-sort
#[serde(skip_serializing_if = "Option::is_none")]
pub property: Option<String>,
/// The name of the timestamp to sort against.
#[serde(skip_serializing_if = "Option::is_none")]
pub timestamp: Option<DatabaseSortTimestamp>,
pub direction: SortDirection,
}
#[derive(Serialize, Debug, Eq, PartialEq, Default, Clone)]
pub struct DatabaseQuery {
#[serde(skip_serializing_if = "Option::is_none")]
pub sorts: Option<Vec<DatabaseSort>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub filter: Option<FilterCondition>,
#[serde(flatten)]
pub paging: Option<Paging>,
}
impl Pageable for DatabaseQuery {
fn start_from(
self,
starting_point: Option<PagingCursor>,
) -> Self {
DatabaseQuery {
paging: Some(Paging {
start_cursor: starting_point,
page_size: self.paging.and_then(|p| p.page_size),
}),
..self
}
}
}
#[derive(Debug, Eq, PartialEq)]
pub enum NotionSearch {
/// When supplied, limits which pages are returned by comparing the query to the page title.
Query(String),
/// When supplied, sorts the results based on the provided criteria.
///
/// Limitation: Currently only a single sort is allowed and is limited to `last_edited_time`
Sort {
timestamp: SortTimestamp,
direction: SortDirection,
},
/// When supplied, filters the results based on the provided criteria.
///
/// Limitation: Currently the only filter allowed is `object` which will filter by type of object (either page or database)
Filter {
/// The name of the property to filter by.
/// Currently the only property you can filter by is the `object` type.
property: FilterProperty,
/// The value of the property to filter the results by.
/// Possible values for object type include `page` or `database`.
value: FilterValue,
},
}
impl NotionSearch {
pub fn filter_by_databases() -> Self {
Self::Filter {
property: FilterProperty::Object,
value: FilterValue::Database,
}
}
}
impl From<NotionSearch> for SearchRequest {
fn from(search: NotionSearch) -> Self {
match search {
NotionSearch::Query(query) => SearchRequest {
query: Some(query),
..Default::default()
},
NotionSearch::Sort {
direction,
timestamp,
} => SearchRequest {
sort: Some(Sort {
timestamp,
direction,
}),
..Default::default()
},
NotionSearch::Filter { property, value } => SearchRequest {
filter: Some(Filter { property, value }),
..Default::default()
},
}
}
}
#[cfg(test)]
mod tests {
mod text_filters {
use crate::models::search::PropertyCondition::RichText;
use crate::models::search::{FilterCondition, TextCondition};
use serde_json::json;
#[test]
fn text_property_equals() -> Result<(), Box<dyn std::error::Error>> {
let json = serde_json::to_value(&FilterCondition {
property: "Name".to_string(),
condition: RichText(TextCondition::Equals("Test".to_string())),
})?;
assert_eq!(
json,
json!({"property":"Name","rich_text":{"equals":"Test"}})
);
Ok(())
}
#[test]
fn text_property_contains() -> Result<(), Box<dyn std::error::Error>> {
let json = serde_json::to_value(&FilterCondition {
property: "Name".to_string(),
condition: RichText(TextCondition::Contains("Test".to_string())),
})?;
assert_eq!(
dbg!(json),
json!({"property":"Name","rich_text":{"contains":"Test"}})
);
Ok(())
}
#[test]
fn text_property_is_empty() -> Result<(), Box<dyn std::error::Error>> {
let json = serde_json::to_value(&FilterCondition {
property: "Name".to_string(),
condition: RichText(TextCondition::IsEmpty),
})?;
assert_eq!(
dbg!(json),
json!({"property":"Name","rich_text":{"is_empty":true}})
);
Ok(())
}
#[test]
fn text_property_is_not_empty() -> Result<(), Box<dyn std::error::Error>> {
let json = serde_json::to_value(&FilterCondition {
property: "Name".to_string(),
condition: RichText(TextCondition::IsNotEmpty),
})?;
assert_eq!(
dbg!(json),
json!({"property":"Name","rich_text":{"is_not_empty":true}})
);
Ok(())
}
}
}
|