forked from infinitaslearning/notionater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·414 lines (356 loc) · 11.5 KB
/
index.js
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
#!/usr/bin/env node
require('dotenv').config()
const prompts = require('prompts')
const { Command } = require('commander')
const { Client, LogLevel } = require('@notionhq/client')
const fg = require('fast-glob')
const fs = require('fs')
const path = require('path')
const { markdownToBlocks } = require('@tryfabric/martian')
const plugins = []
const { toSentenceCase } = require('js-convert-case')
const debug = require('debug')('notionater')
const cliProgress = require('cli-progress')
/**
* Parse cmd line
*/
const program = new Command()
program
.option('-t, --token <token>', 'Notion token (https://www.notion.so/my-integrations)')
.option('-b, --basePage <page>', 'Page title to import under', '')
.option('-d, --basePath <basePath>', 'What to use as the base path (if images are referenced locally)', process.cwd())
.option('-g, --glob <glob>', 'Glob to find files to import, will be relative to basePath')
.option('-p, --plugins <plugins>', 'Add plugins to the processing chain, e.g. -x devops-users', 'none')
.option('-c, --config <config>', 'Path to a config json file')
.option('-s, --skipEmpty', 'Skip empty pages', false)
.option('-r, --relativePath', 'Relative image urls', false)
.option('--azureBlobUrl <azureBlobUrl>', 'Azure blob storage url')
.option('--azureBlobAccount <azureBlobAccount>', 'Azure Blob storage account')
program.parse(process.argv)
let options = program.opts()
if (options.config) {
try {
const config = require(path.resolve(options.config))
options = { ...options, ...config }
} catch (ex) {
console.log(`Error parsing config: ${ex.message}`)
process.exit()
}
}
debug('Working with options', options)
/**
* Setup notion client
*/
if (!options.token) {
console.log('You must provide an integration token: notionater -t XXX')
process.exit()
}
if (!options.glob) {
console.log('You must provide glob style path to the folder to import, e.g. my-project/**/**.md')
process.exit()
}
const notion = new Client({
auth: options.token,
logLevel: LogLevel.ERROR
})
const folderPaths = {}
const processFilePath = async (path, parents, parentPageId) => {
if (!folderPaths[path]) {
debug('Creating folder page: ' + path + ' ...')
try {
const response = await notion.pages.create({
parent: {
page_id: parents.length > 0 ? parents[parents.length - 1] : parentPageId
},
icon: {
type: 'emoji',
emoji: '📁'
},
properties: {
title: {
id: 'title',
type: 'title',
title: [
{
text: {
content: toSentenceCase(decodeURI(path))
}
}
]
}
}
})
// Store it for later
folderPaths[path] = response.id
} catch (ex) {
debug(ex.message)
}
}
return folderPaths[path]
}
const postParseTables = (blocks) => {
// We want to convert the tables to databases, and strip them from the document
const filteredBlocks = []
const tables = []
let tableNumber = 0
for (const block of blocks) {
if (block.object !== 'unsupported') filteredBlocks.push(block)
if (block.object === 'unsupported' && block.type === 'table') {
// Create a dummy block
tableNumber++
tables.push(block)
const paragraphBlock = {
object: 'block',
type: 'paragraph',
paragraph: {
text: [
{
type: 'text',
annotations: {
italic: true,
color: 'orange'
},
text: {
content: `Table moved - see linked Database ${tableNumber}`
}
}
]
}
}
filteredBlocks.push(paragraphBlock)
}
}
return { filteredBlocks, tables }
}
const createTables = async (tables, parentPageId, parentPageTitle, overallProgress) => {
// Now we have a page, create the tables!
let tableNumber = 0
for (const table of tables) {
tableNumber++
const tableData = table.table.children.map((rows) => {
return rows.table_row.children.map((cells) => {
if (cells.table_cell.children) {
return cells.table_cell.children[0].text
} else {
return { content: '' }
}
})
})
const tableHeader = tableData.shift()
const tableHeaderProperties = {}
tableHeader.forEach((header, index) => {
if (index === 0) {
tableHeaderProperties[header.content || `Header ${index}`] = {
title: {}
}
} else {
tableHeaderProperties[header.content || `Header ${index}`] = {
rich_text: {}
}
}
})
debug(`Adding table to '${parentPageTitle}' with ${tableData.length} rows ...`)
const tableProgress = !process.env.DEBUG ? overallProgress.create(tableData.length, 0, { filename: `Creating table ${tableNumber} ...` }) : null
const database = await notion.databases.create({
parent: {
page_id: parentPageId
},
title: [{
type: 'text',
text: {
content: `${parentPageTitle} - Database ${tableNumber}`
}
}],
properties: tableHeaderProperties
})
if (!process.env.DEBUG) tableProgress.increment()
const databaseId = database.id
// Traverse the database in reverse to ensure it ends up in the right order
for (const tableRow in tableData.reverse()) {
const tableDataProperties = {}
tableHeader.forEach((header, index) => {
if (index === 0) {
tableDataProperties[header.content || `Header ${index}`] = {
title: [
{
type: 'text',
text: tableData[tableRow][index] || { content: '' }
}
]
}
} else {
tableDataProperties[header.content || `Header ${index}`] = {
rich_text: [{
type: 'text',
text: tableData[tableRow][index] || { content: '' }
}]
}
}
})
await notion.pages.create({
parent: {
database_id: databaseId
},
properties: tableDataProperties
})
if (!process.env.DEBUG && tableProgress) tableProgress.increment()
}
if (!process.env.DEBUG && overallProgress) overallProgress.remove(tableProgress)
}
}
const processFile = async (file, parentPageId, progress) => {
// First we need to ensure we have all the parent pages created
const parentFolder = options.basePath.match(/([^/]*)\/*$/)[1]
const pathList = file.split('/')
pathList.unshift(parentFolder) // Pre-pend the parent folder
const fileName = pathList.pop() // lose the file
let blocks, fileText
const fileProgress = !process.env.DEBUG ? progress.create(pathList.length + 2, 0, { filename: `${fileName}` }) : null
const parents = await pathList.reduce(async (memo, innerFile) => {
const results = await memo
const result = await processFilePath(innerFile, results, parentPageId)
if (!process.env.DEBUG) fileProgress?.increment()
return [...results, result]
}, [])
debug('Processing markdown file: ' + fileName + ' ...')
// Now create our actual file
try {
const currentFile = path.resolve(options.basePath, file)
fileText = fs.readFileSync(currentFile, 'utf8').toString()
if (!fileText) {
debug('Skipping empty file', fileName)
if (!process.env.DEBUG) fileProgress.stop()
if (!process.env.DEBUG && progress) progress.remove(fileProgress)
return { status: 'Skipped', file }
}
// Execute pre-parse plugins
for (const plugin of plugins) {
if (plugin.preParse) {
fileText = await plugin.preParse(fileText, progress, currentFile)
};
};
blocks = markdownToBlocks(fileText, { strictImageUrls: false, allowUnsupportedObjectType: true })
// Execute post-parse plugins
for (const plugin of plugins) {
if (plugin.postParse) {
blocks = await plugin.postParse(blocks, notion, options, progress, currentFile)
};
};
} catch (ex) {
debug(ex)
if (!process.env.DEBUG && fileProgress) fileProgress.stop()
if (!process.env.DEBUG && progress) progress.remove(fileProgress)
return { status: 'Error', file, message: ex.message }
}
if (!process.env.DEBUG && fileProgress) fileProgress.increment()
const { filteredBlocks, tables } = postParseTables(blocks)
const pageTitle = toSentenceCase(decodeURI(fileName).replace('.md', ''))
try {
const response = await notion.pages.create({
parent: {
page_id: parents.length > 0 ? parents[parents.length - 1] : parentPageId
},
properties: {
title: {
id: 'title',
type: 'title',
title: [
{
text: {
content: pageTitle
}
}
]
}
},
children: filteredBlocks
})
if (!process.env.DEBUG && fileProgress) fileProgress.increment()
if (tables.length) {
await createTables(tables, response.id, pageTitle, progress)
}
} catch (ex) {
debug(ex.message)
return { status: 'Error', file, message: ex.message }
}
if (!process.env.DEBUG && fileProgress) fileProgress.stop()
if (!process.env.DEBUG && progress) progress.remove(fileProgress)
return { status: 'OK', file }
}
const loadPlugins = (pluginsToLoad) => {
if (pluginsToLoad[0] === 'none') return
pluginsToLoad.forEach((plugin) => {
try {
plugins.push(require(`./plugins/${plugin}`))
} catch (ex) {
debug('Error loading plugin', ex.message)
}
})
}
const start = async () => {
loadPlugins(options.plugins.split(','))
const files = await fg([options.glob], {
dot: false,
cwd: options.basePath
})
if (!files.length) {
console.log('No files found to import, make sure you add your glob in quotes: -g "folder/**/**.md"')
return
}
const response = await notion.search({
query: options.basePage,
filters: {
archived: false
}
})
if (!response.results.length) {
console.log('No pages found - try a different base page search?')
return
}
const pages = response.results.map((page) => {
if (page.properties.title) {
return { title: page.properties.title.title[0].plain_text, value: page.id }
} else {
return { title: 'invalid page', value: '' }
}
})
let selectedPage = {}
if (pages.length > 1) {
selectedPage = await prompts({
type: 'select',
name: 'page',
message: 'Choose the page to import under:',
choices: pages
})
} else {
selectedPage = { page: pages[0].value }
}
if (!selectedPage.page) {
return
}
// create new container
const progress = new cliProgress.MultiBar({
stopOnComplete: true,
clearOnComplete: true,
hideCursor: true,
fps: 10,
format: '[{bar}] {percentage}% | ETA: {eta}s | {value}/{total} | {filename}'
}, cliProgress.Presets.shades_grey)
const overallProgress = !process.env.DEBUG ? progress.create(files.length, 0, { filename: 'Overall progress' }) : null
const errorFiles = []
await files.reduce(async (memo, file) => {
const results = await memo
const result = await processFile(file, selectedPage.page, progress)
if (result.status === 'Error') {
errorFiles.push(result)
};
if (!process.env.DEBUG && overallProgress) overallProgress.increment()
return [...results, result]
}, [])
progress.stop()
if (errorFiles.length) {
fs.writeFileSync('notionater-errors.json', JSON.stringify({ errors: errorFiles }))
console.log(`There were ${errorFiles.length} errors, written to 'notionater-errors.txt'`)
}
}
start()