forked from jamalex/notion-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblock.py
884 lines (638 loc) · 24 KB
/
block.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
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
import mimetypes
import os
import random
import requests
import time
import uuid
from cached_property import cached_property
from copy import deepcopy
from .logger import logger
from .maps import property_map, field_map, mapper
from .markdown import plaintext_to_notion, notion_to_plaintext
from .operations import build_operation
from .records import Record
from .settings import S3_URL_PREFIX, BASE_URL
from .utils import (
extract_id,
now,
get_embed_link,
get_embed_data,
add_signed_prefix_as_needed,
remove_signed_prefix_as_needed,
get_by_path,
)
class Children(object):
child_list_key = "content"
def __init__(self, parent):
self._parent = parent
self._client = parent._client
def shuffle(self):
content = self._content_list()
random.shuffle(content)
self._parent.set(self.child_list_key, content)
def filter(self, type=None):
kids = list(self)
if type:
if isinstance(type, str):
type = BLOCK_TYPES.get(type, Block)
kids = [kid for kid in kids if isinstance(kid, type)]
return kids
def _content_list(self):
return self._parent.get(self.child_list_key) or []
def _get_block(self, id):
block = self._client.get_block(id)
# TODO: this is needed because there seems to be a server-side race condition with setting and getting data
# (sometimes the data previously sent hasn't yet propagated to all DB nodes, perhaps? so it fails to load here)
i = 0
while block is None:
i += 1
if i > 20:
return None
time.sleep(0.1)
block = self._client.get_block(id)
if block.get("parent_id") != self._parent.id:
block._alias_parent = self._parent.id
return block
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._content_list() or [])
def __getitem__(self, key):
result = self._content_list()[key]
if isinstance(result, list):
return [self._get_block(id) for id in result]
else:
return self._get_block(result)
def __delitem__(self, key):
self._get_block(self._content_list()[key]).remove()
def __iter__(self):
return iter(self._get_block(id) for id in self._content_list())
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._content_list()
def add_new(self, block_type, child_list_key=None, **kwargs):
"""
Create a new block, add it as the last child of this parent block, and return the corresponding Block instance.
`block_type` can be either a type string, or a Block subclass.
"""
# determine the block type string from the Block class, if that's what was provided
if (
isinstance(block_type, type)
and issubclass(block_type, Block)
and hasattr(block_type, "_type")
):
block_type = block_type._type
elif not isinstance(block_type, str):
raise Exception(
"block_type must be a string or a Block subclass with a _type attribute"
)
block_id = self._client.create_record(
table="block",
parent=self._parent,
type=block_type,
child_list_key=child_list_key,
)
block = self._get_block(block_id)
if kwargs:
with self._client.as_atomic_transaction():
for key, val in kwargs.items():
if hasattr(block, key):
setattr(block, key, val)
else:
logger.warning(
"{} does not have attribute '{}' to be set; skipping.".format(
block, key
)
)
return block
def add_alias(self, block):
"""
Adds an alias to the provided `block`, i.e. adds the block's ID to the parent's content list,
but doesn't change the block's parent_id.
"""
# add the block to the content list of the parent
self._client.submit_transaction(
build_operation(
id=self._parent.id,
path=[self.child_list_key],
args={"id": block.id},
command="listAfter",
)
)
return self._get_block(block.id)
class Block(Record):
"""
Most data in Notion is stored as a "block" (including pages, and all the individual elements within a page).
These blocks have different types, and in some cases we create subclasses of this class to represent those types.
Attributes on the Block are mapped to useful attributes of the server-side data structure, as properties, so you can
get and set values on the API just by reading/writing attributes on these classes. We store a shared local cache on
the `NotionClient` object of all block data, and reference that as needed from here. Data can be refreshed from the
server using the `refresh` method.
"""
_table = "block"
# we'll mark it as an alias if we load the Block as a child of a page that is not its parent
_alias_parent = None
child_list_key = "content"
type = field_map("type")
alive = field_map("alive")
def get_browseable_url(self):
if "page" in self._type:
return BASE_URL + self.id.replace("-", "")
else:
return self.parent.get_browseable_url() + "#" + self.id.replace("-", "")
@property
def children(self):
if not hasattr(self, "_children"):
children_ids = self.get("content", [])
self._client.refresh_records(block=children_ids)
self._children = Children(parent=self)
return self._children
@property
def parent(self):
if not self.is_alias:
parent_id = self.get("parent_id")
parent_table = self.get("parent_table")
else:
parent_id = self._alias_parent
parent_table = "block"
if parent_table == "block":
return self._client.get_block(parent_id)
elif parent_table == "collection":
return self._client.get_collection(parent_id)
elif parent_table == "space":
return self._client.get_space(parent_id)
else:
return None
@property
def space_info(self):
return self._client.post("getPublicPageData", {"blockId": self.id}).json()
def _str_fields(self):
"""
Determines the list of fields to include in the __str__ representation. Override and extend this in subclasses.
"""
fields = super()._str_fields()
# if this is a generic Block instance, include what type of block it is
if type(self) is Block:
fields.append("type")
return fields
@property
def is_alias(self):
return not (self._alias_parent is None)
def _get_mappers(self):
mappers = {}
for name in dir(self.__class__):
field = getattr(self.__class__, name)
if isinstance(field, mapper):
mappers[name] = field
return mappers
def _convert_diff_to_changelist(self, difference, old_val, new_val):
mappers = self._get_mappers()
changed_fields = set()
changes = []
remaining = []
content_changed = False
for d in deepcopy(difference):
operation, path, values = d
# normalize path
path = path if path else []
path = path.split(".") if isinstance(path, str) else path
if operation in ["add", "remove"]:
path.append(values[0][0])
while isinstance(path[-1], int):
path.pop()
path = ".".join(map(str, path))
# check whether it was content that changed
if path == "content":
content_changed = True
continue
# check whether the value changed matches one of our mapped fields/properties
fields = [
(name, field)
for name, field in mappers.items()
if path.startswith(field.path)
]
if fields:
changed_fields.add(fields[0])
continue
remaining.append(d)
if content_changed:
old = deepcopy(old_val.get("content", []))
new = deepcopy(new_val.get("content", []))
# track what's been added and removed
removed = set(old) - set(new)
added = set(new) - set(old)
for id in removed:
changes.append(("content_removed", "content", id))
for id in added:
changes.append(("content_added", "content", id))
# ignore the added/removed items, and see whether order has changed
for id in removed:
old.remove(id)
for id in added:
new.remove(id)
if old != new:
changes.append(("content_reordered", "content", (old, new)))
for name, field in changed_fields:
old = field.api_to_python(get_by_path(field.path, old_val))
new = field.api_to_python(get_by_path(field.path, new_val))
changes.append(("changed_field", name, (old, new)))
return changes + super()._convert_diff_to_changelist(
remaining, old_val, new_val
)
def remove(self, permanently=False):
"""
Removes the node from its parent, and marks it as inactive. This corresponds to what happens in the
Notion UI when you delete a block. Note that it doesn't *actually* delete it, just orphan it, unless
`permanently` is set to True, in which case we make an extra call to hard-delete.
"""
if not self.is_alias:
# If it's not an alias, we actually remove the block
with self._client.as_atomic_transaction():
# Mark the block as inactive
self._client.submit_transaction(
build_operation(
id=self.id, path=[], args={"alive": False}, command="update"
)
)
# Remove the block's ID from a list on its parent, if needed
if self.parent.child_list_key:
self._client.submit_transaction(
build_operation(
id=self.get("parent_id"),
path=[self.parent.child_list_key],
args={"id": self.id},
command="listRemove",
table=self.get("parent_table"),
)
)
if permanently:
block_id = self.id
self._client.post(
"deleteBlocks", {"blockIds": [block_id], "permanentlyDelete": True}
)
del self._client._store._values["block"][block_id]
else:
# Otherwise, if it's an alias, we only remove it from the alias parent's content list
self._client.submit_transaction(
build_operation(
id=self._alias_parent,
path=["content"],
args={"id": self.id},
command="listRemove",
)
)
def move_to(self, target_block, position="last-child"):
assert isinstance(
target_block, Block
), "target_block must be an instance of Block or one of its subclasses"
assert position in ["first-child", "last-child", "before", "after"]
if "child" in position:
new_parent_id = target_block.id
new_parent_table = "block"
else:
new_parent_id = target_block.get("parent_id")
new_parent_table = target_block.get("parent_table")
if position in ["first-child", "before"]:
list_command = "listBefore"
else:
list_command = "listAfter"
list_args = {"id": self.id}
if position in ["before", "after"]:
list_args[position] = target_block.id
with self._client.as_atomic_transaction():
# First, remove the node, before we re-insert and re-activate it at the target location
self.remove()
if not self.is_alias:
# Set the parent_id of the moving block to the new parent, and mark it as active again
self._client.submit_transaction(
build_operation(
id=self.id,
path=[],
args={
"alive": True,
"parent_id": new_parent_id,
"parent_table": new_parent_table,
},
command="update",
)
)
else:
self._alias_parent = new_parent_id
# Add the moving block's ID to the "content" list of the new parent
self._client.submit_transaction(
build_operation(
id=new_parent_id,
path=["content"],
args=list_args,
command=list_command,
)
)
# update the local block cache to reflect the updates
self._client.refresh_records(
block=[
self.id,
self.get("parent_id"),
target_block.id,
target_block.get("parent_id"),
]
)
class DividerBlock(Block):
_type = "divider"
class ColumnListBlock(Block):
"""
Must contain only ColumnBlocks as children.
"""
_type = "column_list"
def evenly_space_columns(self):
with self._client.as_atomic_transaction():
for child in self.children:
child.column_ratio = 1 / len(self.children)
class ColumnBlock(Block):
"""
Should be added as children of a ColumnListBlock.
"""
column_ratio = field_map("format.column_ratio")
_type = "column"
class BasicBlock(Block):
title = property_map("title")
title_plaintext = property_map(
"title",
python_to_api=plaintext_to_notion,
api_to_python=notion_to_plaintext,
markdown=False,
)
color = field_map("format.block_color")
def convert_to_type(self, new_type):
"""
Convert this block into another type of BasicBlock. Returns a new instance of the appropriate class.
"""
assert new_type in BLOCK_TYPES and issubclass(
BLOCK_TYPES[new_type], BasicBlock
), "Target type must correspond to a subclass of BasicBlock"
self.type = new_type
return self._client.get_block(self.id)
def _str_fields(self):
return super()._str_fields() + ["title"]
class TodoBlock(BasicBlock):
_type = "to_do"
checked = property_map(
"checked",
python_to_api=lambda x: "Yes" if x else "No",
api_to_python=lambda x: x == "Yes",
)
def _str_fields(self):
return super()._str_fields() + ["checked"]
class CodeBlock(BasicBlock):
_type = "code"
language = property_map("language")
wrap = field_map("format.code_wrap")
class FactoryBlock(BasicBlock):
"""
Also known as a "Template Button". The title is the button text, and the children are the templates to clone.
"""
_type = "factory"
class HeaderBlock(BasicBlock):
_type = "header"
class SubheaderBlock(BasicBlock):
_type = "sub_header"
class SubsubheaderBlock(BasicBlock):
_type = "sub_sub_header"
class PageBlock(BasicBlock):
_type = "page"
icon = field_map(
"format.page_icon",
api_to_python=add_signed_prefix_as_needed,
python_to_api=remove_signed_prefix_as_needed,
)
cover = field_map(
"format.page_cover",
api_to_python=add_signed_prefix_as_needed,
python_to_api=remove_signed_prefix_as_needed,
)
locked = field_map("format.block_locked")
def get_backlinks(self):
"""
Returns a list of blocks that referencing the current PageBlock. Note that only PageBlocks support backlinks.
"""
data = self._client.post("getBacklinksForBlock", {"blockId": self.id}).json()
backlinks = []
for block in data.get("backlinks") or []:
mention = block.get("mentioned_from")
if not mention:
continue
block_id = mention.get("block_id") or mention.get("parent_block_id")
if block_id:
backlinks.append(self._client.get_block(block_id))
return backlinks
class BulletedListBlock(BasicBlock):
_type = "bulleted_list"
class NumberedListBlock(BasicBlock):
_type = "numbered_list"
class ToggleBlock(BasicBlock):
_type = "toggle"
class QuoteBlock(BasicBlock):
_type = "quote"
class TextBlock(BasicBlock):
_type = "text"
class EquationBlock(BasicBlock):
latex = field_map(
["properties", "title"],
python_to_api=lambda x: [[x]],
api_to_python=lambda x: x[0][0],
)
_type = "equation"
class MediaBlock(Block):
caption = property_map("caption")
def _str_fields(self):
return super()._str_fields() + ["caption"]
class EmbedBlock(MediaBlock):
_type = "embed"
display_source = field_map(
"format.display_source",
api_to_python=add_signed_prefix_as_needed,
python_to_api=remove_signed_prefix_as_needed,
)
source = property_map(
"source",
api_to_python=add_signed_prefix_as_needed,
python_to_api=remove_signed_prefix_as_needed,
)
height = field_map("format.block_height")
full_width = field_map("format.block_full_width")
page_width = field_map("format.block_page_width")
width = field_map("format.block_width")
def set_source_url(self, url):
self.source = remove_signed_prefix_as_needed(url)
self.display_source = get_embed_link(self.source)
def _str_fields(self):
return super()._str_fields() + ["source"]
class EmbedOrUploadBlock(EmbedBlock):
file_id = field_map(["file_ids", 0])
def upload_file(self, path):
mimetype = mimetypes.guess_type(path)[0] or "text/plain"
filename = os.path.split(path)[-1]
data = self._client.post(
"getUploadFileUrl",
{"bucket": "secure", "name": filename, "contentType": mimetype},
).json()
with open(path, "rb") as f:
response = requests.put(
data["signedPutUrl"], data=f, headers={"Content-type": mimetype}
)
response.raise_for_status()
self.display_source = data["url"]
self.source = data["url"]
self.file_id = data["url"][len(S3_URL_PREFIX) :].split("/")[0]
class VideoBlock(EmbedOrUploadBlock):
_type = "video"
class FileBlock(EmbedOrUploadBlock):
size = property_map("size")
title = property_map("title")
_type = "file"
class AudioBlock(EmbedOrUploadBlock):
_type = "audio"
class PDFBlock(EmbedOrUploadBlock):
_type = "pdf"
class ImageBlock(EmbedOrUploadBlock):
_type = "image"
class BookmarkBlock(EmbedBlock):
_type = "bookmark"
bookmark_cover = field_map("format.bookmark_cover")
bookmark_icon = field_map("format.bookmark_icon")
description = property_map("description")
link = property_map("link")
title = property_map("title")
def set_new_link(self, url):
self._client.post("setBookmarkMetadata", {"blockId": self.id, "url": url})
self.refresh()
class LinkToCollectionBlock(MediaBlock):
_type = "link_to_collection"
# TODO: add custom fields
class BreadcrumbBlock(MediaBlock):
_type = "breadcrumb"
class CollectionViewBlock(MediaBlock):
_type = "collection_view"
@property
def collection(self):
collection_id = self.get("collection_id")
if not collection_id:
return None
if not hasattr(self, "_collection"):
self._collection = self._client.get_collection(collection_id)
return self._collection
@collection.setter
def collection(self, val):
if hasattr(self, "_collection"):
del self._collection
self.set("collection_id", val.id)
@property
def views(self):
if not hasattr(self, "_views"):
self._views = CollectionViewBlockViews(parent=self)
return self._views
@property
def title(self):
return self.collection.name
@title.setter
def title(self, val):
self.collection.name = val
@property
def description(self):
return self.collection.description
@description.setter
def description(self, val):
self.collection.description = val
locked = field_map("format.block_locked")
def _str_fields(self):
return super()._str_fields() + ["title", "collection"]
class CollectionViewBlockViews(Children):
child_list_key = "view_ids"
def _get_block(self, view_id):
view = self._client.get_collection_view(
view_id, collection=self._parent.collection
)
i = 0
while view is None:
i += 1
if i > 20:
return None
time.sleep(0.1)
view = self._client.get_collection_view(
view_id, collection=self._parent.collection
)
return view
def add_new(self, view_type="table"):
if not self._parent.collection:
raise Exception(
"Collection view block does not have an associated collection: {}".format(
self._parent
)
)
record_id = self._client.create_record(
table="collection_view", parent=self._parent, type=view_type
)
view = self._client.get_collection_view(
record_id, collection=self._parent._collection
)
view.set("collection_id", self._parent._collection.id)
view_ids = self._parent.get(CollectionViewBlockViews.child_list_key, [])
view_ids.append(view.id)
self._parent.set(CollectionViewBlockViews.child_list_key, view_ids)
# At this point, the view does not see to be completely initialized yet.
# Hack: wait a bit before e.g. setting a query.
# Note: temporarily disabling this sleep to see if the issue reoccurs.
# time.sleep(3)
return view
class CollectionViewPageBlock(CollectionViewBlock):
icon = field_map(
"format.page_icon",
api_to_python=add_signed_prefix_as_needed,
python_to_api=remove_signed_prefix_as_needed,
)
cover = field_map(
"format.page_cover",
api_to_python=add_signed_prefix_as_needed,
python_to_api=remove_signed_prefix_as_needed,
)
_type = "collection_view_page"
class FramerBlock(EmbedBlock):
_type = "framer"
class TweetBlock(EmbedBlock):
_type = "tweet"
class GistBlock(EmbedBlock):
_type = "gist"
class DriveBlock(EmbedBlock):
_type = "drive"
class FigmaBlock(EmbedBlock):
_type = "figma"
class LoomBlock(EmbedBlock):
_type = "loom"
class TypeformBlock(EmbedBlock):
_type = "typeform"
class CodepenBlock(EmbedBlock):
_type = "codepen"
class MapsBlock(EmbedBlock):
_type = "maps"
class InvisionBlock(EmbedBlock):
_type = "invision"
class CalloutBlock(BasicBlock):
icon = field_map("format.page_icon")
_type = "callout"
BLOCK_TYPES = {
cls._type: cls
for cls in locals().values()
if type(cls) == type and issubclass(cls, Block) and hasattr(cls, "_type")
}