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
|
pub mod paging;
pub mod properties;
pub mod search;
pub mod text;
use crate::models::properties::{PropertyConfiguration, PropertyValue};
use crate::models::text::RichText;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use crate::Identifiable;
pub use chrono::{DateTime, Utc};
pub use serde_json::value::Number;
use std::fmt::{Display, Formatter};
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Copy, Clone)]
#[serde(rename_all = "lowercase")]
enum ObjectType {
Database,
List,
}
/// A zero-cost wrapper type around a Database ID
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Hash, Clone)]
#[serde(transparent)]
pub struct DatabaseId(String);
impl DatabaseId {
pub fn id(&self) -> &str {
&self.0
}
}
impl Identifiable for DatabaseId {
type Type = DatabaseId;
fn id(&self) -> &Self::Type {
self
}
}
impl Display for DatabaseId {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
self.0.fmt(f)
}
}
/// Represents a Notion Database
/// See https://developers.notion.com/reference/database
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Clone)]
pub struct Database {
/// Unique identifier for the database.
id: DatabaseId,
/// Date and time when this database was created.
created_time: DateTime<Utc>,
/// Date and time when this database was updated.
last_edited_time: DateTime<Utc>,
/// Name of the database as it appears in Notion.
title: Vec<RichText>,
/// Schema of properties for the database as they appear in Notion.
//
// key string
// The name of the property as it appears in Notion.
//
// value object
// A Property object.
properties: HashMap<String, PropertyConfiguration>,
}
impl Identifiable for Database {
type Type = DatabaseId;
fn id(&self) -> &Self::Type {
&self.id
}
}
#[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)]
pub struct ListResponse<T> {
results: Vec<T>,
next_cursor: Option<String>,
has_more: bool,
}
impl<T> ListResponse<T> {
pub fn results(&self) -> &[T] {
&self.results
}
}
/// A zero-cost wrapper type around a Page ID
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Hash, Clone)]
#[serde(transparent)]
pub struct PageId(String);
impl PageId {
pub fn id(&self) -> &str {
&self.0
}
}
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Clone)]
#[serde(tag = "type")]
#[serde(rename_all = "snake_case")]
pub enum Parent {
#[serde(rename = "database_id")]
Database {
database_id: DatabaseId,
},
#[serde(rename = "page_id")]
Page {
page_id: PageId,
},
Workspace,
}
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Clone)]
pub struct Properties {
#[serde(flatten)]
properties: HashMap<String, PropertyValue>,
}
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Clone)]
pub struct Page {
id: PageId,
/// Date and time when this page was created.
created_time: DateTime<Utc>,
/// Date and time when this page was updated.
last_edited_time: DateTime<Utc>,
/// The archived status of the page.
archived: bool,
properties: Properties,
parent: Parent,
}
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Clone)]
pub struct Block {}
#[derive(Serialize, Deserialize, Clone)]
#[serde(tag = "object")]
pub enum Object {
Database {
#[serde(flatten)]
database: Database,
},
Page {},
List {
list: ListResponse<Object>,
},
}
/// A zero-cost wrapper type around a Page ID
#[derive(Serialize, Deserialize, Debug, Eq, PartialEq, Hash, Clone)]
#[serde(transparent)]
pub struct UserId(String);
impl UserId {
pub fn id(&self) -> &str {
&self.0
}
}
#[derive(Serialize, Deserialize, Clone, Debug, Eq, PartialEq)]
pub struct UserCommon {
id: UserId,
name: Option<String>,
avatar_url: Option<String>,
}
#[derive(Serialize, Deserialize, Clone, Debug, Eq, PartialEq)]
pub struct Person {
email: String,
}
#[derive(Serialize, Deserialize, Clone, Debug, Eq, PartialEq)]
pub struct Bot {
email: String,
}
#[derive(Serialize, Deserialize, Clone, Debug, Eq, PartialEq)]
#[serde(tag = "type")]
pub enum User {
Person {
#[serde(flatten)]
common: UserCommon,
person: Person,
},
Bot {
#[serde(flatten)]
common: UserCommon,
bot: Bot,
},
}
#[cfg(test)]
mod tests {
use crate::models::{ListResponse, Page};
#[test]
fn deserialize_page() {
let _page: Page = serde_json::from_str(include_str!("models/tests/page.json")).unwrap();
}
#[test]
fn deserialize_query_result() {
let _page: ListResponse<Page> =
serde_json::from_str(include_str!("models/tests/query_result.json")).unwrap();
}
}
|