forked from jamalex/notion-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollection.py
799 lines (652 loc) · 24.4 KB
/
collection.py
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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
from cached_property import cached_property
from copy import deepcopy
from datetime import datetime, date
from tzlocal import get_localzone
from uuid import uuid1
from .block import Block, PageBlock, Children, CollectionViewBlock
from .logger import logger
from .maps import property_map, field_map
from .markdown import markdown_to_notion, notion_to_markdown
from .operations import build_operation
from .records import Record
from .utils import (
add_signed_prefix_as_needed,
extract_id,
remove_signed_prefix_as_needed,
slugify,
)
class NotionDate(object):
start = None
end = None
timezone = None
reminder = None
def __init__(self, start, end=None, timezone=None, reminder=None):
self.start = start
self.end = end
self.timezone = timezone
self.reminder = reminder
@classmethod
def from_notion(cls, obj):
if isinstance(obj, dict):
data = obj
elif isinstance(obj, list):
data = obj[0][1][0][1]
else:
return None
start = cls._parse_datetime(data.get("start_date"), data.get("start_time"))
end = cls._parse_datetime(data.get("end_date"), data.get("end_time"))
timezone = data.get("time_zone")
reminder = data.get("reminder")
return cls(start, end=end, timezone=timezone, reminder=reminder)
@classmethod
def _parse_datetime(cls, date_str, time_str):
if not date_str:
return None
if time_str:
return datetime.strptime(date_str + " " + time_str, "%Y-%m-%d %H:%M")
else:
return datetime.strptime(date_str, "%Y-%m-%d").date()
def _format_datetime(self, date_or_datetime):
if not date_or_datetime:
return None, None
if isinstance(date_or_datetime, datetime):
return (
date_or_datetime.strftime("%Y-%m-%d"),
date_or_datetime.strftime("%H:%M"),
)
else:
return date_or_datetime.strftime("%Y-%m-%d"), None
def type(self):
name = "date"
if isinstance(self.start, datetime):
name += "time"
if self.end:
name += "range"
return name
def to_notion(self):
if self.end:
self.start, self.end = sorted([self.start, self.end])
start_date, start_time = self._format_datetime(self.start)
end_date, end_time = self._format_datetime(self.end)
reminder = self.reminder
if not start_date:
return []
data = {"type": self.type(), "start_date": start_date}
if end_date:
data["end_date"] = end_date
if reminder:
data["reminder"] = reminder
if "time" in data["type"]:
data["time_zone"] = str(self.timezone or get_localzone())
data["start_time"] = start_time or "00:00"
if end_date:
data["end_time"] = end_time or "00:00"
return [["‣", [["d", data]]]]
class NotionSelect(object):
valid_colors = [
"default",
"gray",
"brown",
"orange",
"yellow",
"green",
"blue",
"purple",
"pink",
"red",
]
id = None
color = "default"
value = None
def __init__(self, value, color="default"):
self.id = str(uuid1())
self.color = self.set_color(color)
self.value = value
def set_color(self, color):
if color not in self.valid_colors:
if self.color:
return self.color
return "default"
return color
def to_dict(self):
return {"id": self.id, "value": self.value, "color": self.color}
class Collection(Record):
"""
A "collection" corresponds to what's sometimes called a "database" in the Notion UI.
"""
_table = "collection"
name = field_map(
"name", api_to_python=notion_to_markdown, python_to_api=markdown_to_notion
)
description = field_map(
"description",
api_to_python=notion_to_markdown,
python_to_api=markdown_to_notion,
)
cover = field_map("cover")
@property
def templates(self):
if not hasattr(self, "_templates"):
template_ids = self.get("template_pages", [])
self._client.refresh_records(block=template_ids)
self._templates = Templates(parent=self)
return self._templates
def get_schema_properties(self):
"""
Fetch a flattened list of all properties in the collection's schema.
"""
properties = []
schema = self.get("schema")
for id, item in schema.items():
prop = {"id": id, "slug": slugify(item["name"])}
prop.update(item)
properties.append(prop)
return properties
def check_schema_select_options(self, prop, values):
"""
Check and update the prop dict with new values
"""
schema_update = False
current_options = list([p["value"].lower() for p in prop["options"]])
if not isinstance(values, list):
values = [values]
for v in values:
if v and v.lower() not in current_options:
schema_update = True
prop["options"].append(NotionSelect(v).to_dict())
return schema_update, prop
def get_schema_property(self, identifier):
"""
Look up a property in the collection's schema, by "property id" (generally a 4-char string),
or name (human-readable -- there may be duplicates, so we pick the first match we find).
"""
for prop in self.get_schema_properties():
if identifier == prop["id"] or slugify(identifier) == prop["slug"]:
return prop
if identifier == "title" and prop["type"] == "title":
return prop
return None
def add_row(self, update_views=True, **kwargs):
"""
Create a new empty CollectionRowBlock under this collection, and return the instance.
"""
row_id = self._client.create_record("block", self, type="page")
row = CollectionRowBlock(self._client, row_id)
with self._client.as_atomic_transaction():
for key, val in kwargs.items():
setattr(row, key, val)
if update_views:
# make sure the new record is inserted at the end of each view
for view in self.parent.views:
if view is None or isinstance(view, CalendarView):
continue
view.set("page_sort", view.get("page_sort", []) + [row_id])
return row
@property
def parent(self):
assert self.get("parent_table") == "block"
return self._client.get_block(self.get("parent_id"))
def _get_a_collection_view(self):
"""
Get an arbitrary collection view for this collection, to allow querying.
"""
parent = self.parent
assert isinstance(parent, CollectionViewBlock)
assert len(parent.views) > 0
return parent.views[0]
def query(self, **kwargs):
return CollectionQuery(self, self._get_a_collection_view(), **kwargs).execute()
def get_rows(self, **kwargs):
return self.query(**kwargs)
def _convert_diff_to_changelist(self, difference, old_val, new_val):
changes = []
remaining = []
for operation, path, values in difference:
if path == "rows":
changes.append((operation, path, values))
else:
remaining.append((operation, path, values))
return changes + super()._convert_diff_to_changelist(
remaining, old_val, new_val
)
class CollectionView(Record):
"""
A "view" is a particular visualization of a collection, with a "type" (board, table, list, etc)
and filters, sort, etc.
"""
_table = "collection_view"
name = field_map("name")
type = field_map("type")
@property
def parent(self):
assert self.get("parent_table", "block")
return self._client.get_block(self.get("parent_id"))
def __init__(self, *args, collection, **kwargs):
self.collection = collection
super().__init__(*args, **kwargs)
def build_query(self, **kwargs):
return CollectionQuery(
collection=self.collection, collection_view=self, **kwargs
)
def default_query(self):
return self.build_query(**self.get("query", {}))
class BoardView(CollectionView):
_type = "board"
group_by = field_map("query.group_by")
class TableView(CollectionView):
_type = "table"
class ListView(CollectionView):
_type = "list"
class CalendarView(CollectionView):
_type = "calendar"
def build_query(self, **kwargs):
calendar_by = self._client.get_record_data("collection_view", self._id)[
"query"
]["calendar_by"]
return super().build_query(calendar_by=calendar_by, **kwargs)
class GalleryView(CollectionView):
_type = "gallery"
def _normalize_property_name(prop_name, collection):
if not prop_name:
return ""
else:
prop = collection.get_schema_property(prop_name)
if not prop:
return ""
return prop["id"]
def _normalize_query_data(data, collection, recursing=False):
if not recursing:
data = deepcopy(data)
if isinstance(data, list):
return [
_normalize_query_data(item, collection, recursing=True) for item in data
]
elif isinstance(data, dict):
# convert slugs to property ids
if "property" in data:
data["property"] = _normalize_property_name(data["property"], collection)
# convert any instantiated objects into their ids
if "value" in data:
if hasattr(data["value"], "id"):
data["value"] = data["value"].id
for key in data:
data[key] = _normalize_query_data(data[key], collection, recursing=True)
return data
class CollectionQuery(object):
def __init__(
self,
collection,
collection_view,
search="",
type="table",
aggregate=[],
aggregations=[],
filter=[],
sort=[],
calendar_by="",
group_by="",
):
assert not (
aggregate and aggregations
), "Use only one of `aggregate` or `aggregations` (old vs new format)"
self.collection = collection
self.collection_view = collection_view
self.search = search
self.type = type
self.aggregate = _normalize_query_data(aggregate, collection)
self.aggregations = _normalize_query_data(aggregations, collection)
self.filter = _normalize_query_data(filter, collection)
self.sort = _normalize_query_data(sort, collection)
self.calendar_by = _normalize_property_name(calendar_by, collection)
self.group_by = _normalize_property_name(group_by, collection)
self._client = collection._client
def execute(self):
result_class = QUERY_RESULT_TYPES.get(self.type, QueryResult)
return result_class(
self.collection,
self._client.query_collection(
collection_id=self.collection.id,
collection_view_id=self.collection_view.id,
search=self.search,
type=self.type,
aggregate=self.aggregate,
aggregations=self.aggregations,
filter=self.filter,
sort=self.sort,
calendar_by=self.calendar_by,
group_by=self.group_by,
),
self,
)
class CollectionRowBlock(PageBlock):
@property
def is_template(self):
return self.get("is_template")
@cached_property
def collection(self):
return self._client.get_collection(self.get("parent_id"))
@property
def schema(self):
return [
prop
for prop in self.collection.get_schema_properties()
if prop["type"] not in ["formula", "rollup"]
]
def __getattr__(self, attname):
return self.get_property(attname)
def __setattr__(self, attname, value):
if attname.startswith("_"):
# we only allow setting of new non-property attributes that start with "_"
super().__setattr__(attname, value)
elif attname in self._get_property_slugs():
self.set_property(attname, value)
elif slugify(attname) in self._get_property_slugs():
self.set_property(slugify(attname), value)
elif hasattr(self, attname):
super().__setattr__(attname, value)
else:
raise AttributeError("Unknown property: '{}'".format(attname))
def _get_property_slugs(self):
slugs = [prop["slug"] for prop in self.schema]
if "title" not in slugs:
slugs.append("title")
return slugs
def __dir__(self):
return self._get_property_slugs() + super().__dir__()
def get_property(self, identifier):
prop = self.collection.get_schema_property(identifier)
if prop is None:
raise AttributeError(
"Object does not have property '{}'".format(identifier)
)
val = self.get(["properties", prop["id"]])
return self._convert_notion_to_python(val, prop)
def _convert_diff_to_changelist(self, difference, old_val, new_val):
changed_props = set()
changes = []
remaining = []
for d in difference:
operation, path, values = d
path = path.split(".") if isinstance(path, str) else path
if path and path[0] == "properties":
if len(path) > 1:
changed_props.add(path[1])
else:
for item in values:
changed_props.add(item[0])
else:
remaining.append(d)
for prop_id in changed_props:
prop = self.collection.get_schema_property(prop_id)
old = self._convert_notion_to_python(
old_val.get("properties", {}).get(prop_id), prop
)
new = self._convert_notion_to_python(
new_val.get("properties", {}).get(prop_id), prop
)
changes.append(("prop_changed", prop["slug"], (old, new)))
return changes + super()._convert_diff_to_changelist(
remaining, old_val, new_val
)
def _convert_notion_to_python(self, val, prop):
if prop["type"] in ["title", "text"]:
val = notion_to_markdown(val) if val else ""
if prop["type"] in ["number"]:
if val is not None:
val = val[0][0]
if "." in val:
val = float(val)
else:
val = int(val)
if prop["type"] in ["select"]:
val = val[0][0] if val else None
if prop["type"] in ["multi_select"]:
val = [v.strip() for v in val[0][0].split(",")] if val else []
if prop["type"] in ["person"]:
val = (
[self._client.get_user(item[1][0][1]) for item in val if item[0] == "‣"]
if val
else []
)
if prop["type"] in ["email", "phone_number", "url"]:
val = val[0][0] if val else ""
if prop["type"] in ["date"]:
val = NotionDate.from_notion(val)
if prop["type"] in ["file"]:
val = (
[
add_signed_prefix_as_needed(
item[1][0][1], client=self._client, id=self.id
)
for item in val
if item[0] != ","
]
if val
else []
)
if prop["type"] in ["checkbox"]:
val = val[0][0] == "Yes" if val else False
if prop["type"] in ["relation"]:
val = (
[
self._client.get_block(item[1][0][1])
for item in val
if item[0] == "‣"
]
if val
else []
)
if prop["type"] in ["created_time", "last_edited_time"]:
val = self.get(prop["type"])
val = datetime.utcfromtimestamp(val / 1000)
if prop["type"] in ["created_by", "last_edited_by"]:
val = self.get(prop["type"] + "_id")
val = self._client.get_user(val)
return val
def get_all_properties(self):
allprops = {}
for prop in self.schema:
propid = slugify(prop["name"])
allprops[propid] = self.get_property(propid)
return allprops
def set_property(self, identifier, val):
prop = self.collection.get_schema_property(identifier)
if prop is None:
raise AttributeError(
"Object does not have property '{}'".format(identifier)
)
if prop["type"] in ["select"] or prop["type"] in ["multi_select"]:
schema_update, prop = self.collection.check_schema_select_options(prop, val)
if schema_update:
self.collection.set(
"schema.{}.options".format(prop["id"]), prop["options"]
)
path, val = self._convert_python_to_notion(val, prop, identifier=identifier)
self.set(path, val)
def _convert_python_to_notion(self, val, prop, identifier="<unknown>"):
if prop["type"] in ["title", "text"]:
if not val:
val = ""
if not isinstance(val, str):
raise TypeError(
"Value passed to property '{}' must be a string.".format(identifier)
)
val = markdown_to_notion(val)
if prop["type"] in ["number"]:
if val is not None:
if not isinstance(val, float) and not isinstance(val, int):
raise TypeError(
"Value passed to property '{}' must be an int or float.".format(
identifier
)
)
val = [[str(val)]]
if prop["type"] in ["select"]:
if not val:
val = None
else:
valid_options = [p["value"].lower() for p in prop["options"]]
val = val.split(",")[0]
if val.lower() not in valid_options:
raise ValueError(
"Value '{}' not acceptable for property '{}' (valid options: {})".format(
val, identifier, valid_options
)
)
val = [[val]]
if prop["type"] in ["multi_select"]:
if not val:
val = []
valid_options = [p["value"].lower() for p in prop["options"]]
if not isinstance(val, list):
val = [val]
for v in val:
if v and v.lower() not in valid_options:
raise ValueError(
"Value '{}' not acceptable for property '{}' (valid options: {})".format(
v, identifier, valid_options
)
)
val = [[",".join(val)]]
if prop["type"] in ["person"]:
userlist = []
if not isinstance(val, list):
val = [val]
for user in val:
user_id = user if isinstance(user, str) else user.id
userlist += [["‣", [["u", user_id]]], [","]]
val = userlist[:-1]
if prop["type"] in ["email", "phone_number", "url"]:
val = [[val, [["a", val]]]]
if prop["type"] in ["date"]:
if isinstance(val, date) or isinstance(val, datetime):
val = NotionDate(val)
if isinstance(val, NotionDate):
val = val.to_notion()
else:
val = []
if prop["type"] in ["file"]:
filelist = []
if not isinstance(val, list):
val = [val]
for url in val:
url = remove_signed_prefix_as_needed(url)
filename = url.split("/")[-1]
filelist += [[filename, [["a", url]]], [","]]
val = filelist[:-1]
if prop["type"] in ["checkbox"]:
if not isinstance(val, bool):
raise TypeError(
"Value passed to property '{}' must be a bool.".format(identifier)
)
val = [["Yes" if val else "No"]]
if prop["type"] in ["relation"]:
pagelist = []
if not isinstance(val, list):
val = [val]
for page in val:
if isinstance(page, str):
page = self._client.get_block(page)
pagelist += [["‣", [["p", page.id]]], [","]]
val = pagelist[:-1]
if prop["type"] in ["created_time", "last_edited_time"]:
val = int(val.timestamp() * 1000)
return prop["type"], val
if prop["type"] in ["created_by", "last_edited_by"]:
val = val if isinstance(val, str) else val.id
return prop["type"], val
return ["properties", prop["id"]], val
def remove(self):
# Mark the block as inactive
self._client.submit_transaction(
build_operation(
id=self.id, path=[], args={"alive": False}, command="update"
)
)
class TemplateBlock(CollectionRowBlock):
@property
def is_template(self):
return self.get("is_template")
@is_template.setter
def is_template(self, val):
assert val is True, "Templates must have 'is_template' set to True."
self.set("is_template", True)
class Templates(Children):
child_list_key = "template_pages"
def _content_list(self):
return self._parent.get(self.child_list_key) or []
def add_new(self, **kwargs):
kwargs["block_type"] = "page"
kwargs["child_list_key"] = self.child_list_key
kwargs["is_template"] = True
return super().add_new(**kwargs)
class QueryResult(object):
def __init__(self, collection, result, query):
self.collection = collection
self._client = collection._client
self._block_ids = self._get_block_ids(result)
self.aggregates = result.get("aggregationResults", [])
self.aggregate_ids = [
agg.get("id") for agg in (query.aggregate or query.aggregations)
]
self.query = query
def _get_block_ids(self, result):
return result["blockIds"]
def _get_block(self, id):
block = CollectionRowBlock(self._client, id)
block.__dict__["collection"] = self.collection
return block
def get_aggregate(self, id):
for agg_id, agg in zip(self.aggregate_ids, self.aggregates):
if id == agg_id:
return agg["value"]
return None
def __repr__(self):
if not len(self):
return "[]"
rep = "[\n"
for child in self:
rep += " {},\n".format(repr(child))
rep += "]"
return rep
def __len__(self):
return len(self._block_ids)
def __getitem__(self, key):
return list(iter(self))[key]
def __iter__(self):
return iter(self._get_block(id) for id in self._block_ids)
def __reversed__(self):
return reversed(iter(self))
def __contains__(self, item):
if isinstance(item, str):
item_id = extract_id(item)
elif isinstance(item, Block):
item_id = item.id
else:
return False
return item_id in self._block_ids
class TableQueryResult(QueryResult):
_type = "table"
class BoardQueryResult(QueryResult):
_type = "board"
class CalendarQueryResult(QueryResult):
_type = "calendar"
def _get_block_ids(self, result):
block_ids = []
for week in result["weeks"]:
block_ids += week["items"]
return block_ids
class ListQueryResult(QueryResult):
_type = "list"
class GalleryQueryResult(QueryResult):
_type = "gallery"
COLLECTION_VIEW_TYPES = {
cls._type: cls
for cls in locals().values()
if type(cls) == type and issubclass(cls, CollectionView) and hasattr(cls, "_type")
}
QUERY_RESULT_TYPES = {
cls._type: cls
for cls in locals().values()
if type(cls) == type and issubclass(cls, QueryResult) and hasattr(cls, "_type")
}