1
1
import logging
2
2
import os
3
3
from random import choice
4
+ from collections import OrderedDict
4
5
from argparse import ArgumentParser
5
6
6
7
from notion .client import NotionClient
@@ -94,6 +95,19 @@ def block_matches_markdown_block(block, markdown_block_type, **markdown_block):
94
95
return True
95
96
96
97
98
+ def sync_collection_schema (collection , expected_schema ):
99
+ existing_schema = collection .get ('schema' )
100
+
101
+ # The schemas must match!
102
+ if existing_schema == expected_schema :
103
+ return
104
+
105
+ logger .info (f"Updating schema of { collection .id } " )
106
+
107
+ # If they don't, try to make them match.
108
+ collection .set ('schema' , expected_schema )
109
+
110
+
97
111
def sync_collection_rows (block , collection_schema , collection_rows ):
98
112
if block .collection is None :
99
113
logger .info (f"Creating a new collection for { block .id } " )
@@ -102,12 +116,17 @@ def sync_collection_rows(block, collection_schema, collection_rows):
102
116
block .collection = client .get_collection (
103
117
# Low-level use of the API
104
118
# TODO: Update when notion-py provides a better interface for this
105
- client .create_record ("collection" , parent = block , schema = collection_schema )
119
+ client .create_record ("collection" , parent = block , schema = { "title" : { "text" : "_" , "type" : "text" }} )
106
120
)
107
121
108
122
block .views .add_new (view_type = "table" )
109
123
110
- # TODO: Compare collection schema and update the collection if it's not matching.
124
+ collection_schema_ids = ['title' ]
125
+
126
+ for i in range (len (collection_schema ) - 1 ):
127
+ collection_schema_ids .append ('x' + format (i , '0>4x' ))
128
+
129
+ sync_collection_schema (block .collection , dict (zip (collection_schema_ids , collection_schema )))
111
130
112
131
existing_rows = block .collection .get_rows ()
113
132
@@ -122,12 +141,14 @@ def sync_collection_rows(block, collection_schema, collection_rows):
122
141
except StopIteration :
123
142
row_block = block .collection .add_row ()
124
143
125
- for idx , prop_name in enumerate (prop ["name" ] for prop in collection_schema .values ()):
126
- prop_name = prop_name .lower () # The actual prop name in notion-py is lowercase
127
- prop_val = row [idx ]
144
+ if len (row ) > len (collection_schema_ids ):
145
+ row = row [:len (collection_schema_ids )]
146
+
147
+ row = zip (collection_schema_ids , row )
128
148
129
- if getattr (row_block , prop_name ) != prop_val :
130
- setattr (row_block , prop_name , prop_val )
149
+ for schema_id , prop_value in row :
150
+ if row_block .get_property (schema_id ) != prop_value :
151
+ row_block .set_property (schema_id , prop_value )
131
152
132
153
133
154
def sync_markdown_blocks_to_block (markdown_blocks , block ):
0 commit comments