-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathRoamPrivateApi.js
386 lines (361 loc) · 11.6 KB
/
RoamPrivateApi.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
const puppeteer = require( 'puppeteer' );
const fs = require( 'fs' );
const path = require('path');
const os = require( 'os' );
const unzip = require( 'node-unzip-2' );
const { isString } = require( 'util' );
const moment = require( 'moment' );
/**
* This class represents wraps Puppeteer and exposes a few methods useful in manipulating Roam Research.
*/
class RoamPrivateApi {
options;
browser;
page;
db;
login;
pass;
constructor( db, login, pass, options = { headless: true, folder: null, nodownload: false } ) {
// If you dont pass folder option, we will use the system tmp directory.
if ( ! options.folder ) {
options.folder = os.tmpdir();
}
options.folder = fs.realpathSync( options.folder );
this.db = db;
this.login = login;
this.pass = pass;
this.options = options;
}
/**
* Run a query on the new Roam Alpha API object.
* More about the query syntax: https://www.zsolt.blog/2021/01/Roam-Data-Structure-Query.html
* @param {string} query - datalog query.
*/
async runQuery( query ) {
return await this.page.evaluate( ( query ) => {
if ( ! window.roamAlphaAPI ) {
return Promise.reject( 'No Roam API detected' );
}
const result = window.roamAlphaAPI.q( query );
console.log( result );
return Promise.resolve( result );
}, query );
}
/**
* Create a block as a child of block.
* @param {string} text
* @param {uid} uid - parent UID where block has to be inserted.
*/
async createBlock( text, uid ) {
const result = await this.page.evaluate( ( text, uid ) => {
if ( ! window.roamAlphaAPI ) {
return Promise.reject( 'No Roam API detected' );
}
const result = window.roamAlphaAPI.createBlock(
{"location":
{"parent-uid": uid,
"order": 0},
"block":
{"string": text}})
console.log( result );
return Promise.resolve( result );
}, text, uid );
// Let's give time to sync.
await this.page.waitForTimeout( 1000 );
return result;
}
/**
* Delete blocks matching the query. Hass some protections, but
* THIS IS VERY UNSAFE. DO NOT USE THIS IF YOU ARE NOT 100% SURE WHAT YOU ARE DOING
* @param {string} query - datalog query to find blocks to delete. Has to return block uid.
* @param {int} limit - limit deleting to this many blocks. Default is 1.
*/
async deleteBlocksMatchingQuery( query, limit ) {
if ( ! limit ) {
limit = 1;
}
return await this.page.evaluate( ( query, limit ) => {
if ( ! window.roamAlphaAPI ) {
return Promise.reject( 'No Roam API detected' );
}
const result = window.roamAlphaAPI.q( query );
console.log( result );
if ( result.length > 100 ) {
return Promise.reject( 'Too many results. Is your query ok?' );
}
const limited = result.slice( 0, limit );
limited.forEach( ( block ) => {
const id = block[0];
console.log( 'DELETING', id );
window.roamAlphaAPI.deleteBlock( { block: { uid: id } } );
} );
return Promise.resolve( limited );
}, query, limit );
}
/**
* Returns a query to find blocks with exact text on the page with title.
* Useful with conjuction with deleteBlocksMatchingQuery,
* @param {string} text - Exact text in the block.
* @param {*} pageTitle - page title to find the blocks in.
*/
getQueryToFindBlocksOnPage( text, pageTitle ) {
text = text.replace( '"', '\"' );
pageTitle = pageTitle.replace( '"', '\"' );
return `[:find ?uid
:where [?b :block/string "${text}"]
[?b :block/uid ?uid]
[?b :block/page ?p]
[?p :node/title "${pageTitle}"]]`;
}
/**
* Returns datalog query to find all blocks containing the text.
* Returns results in format [[ blockUid, text, pageTitle ]].
* @param {string} text - text to search.
*/
getQueryToFindBlocks( text ) {
text = text.replace( '"', '\"' );
return `[:find ?uid ?string ?title :where
[?b :block/string ?string]
[(clojure.string/includes? ?string "${text}")]
[?b :block/uid ?uid]
[?b :block/page ?p]
[?p :node/title ?title]
]`;
}
/**
* When importing in Roam, import leaves an "Import" block.
* This removes that from your daily page.
* THIS IS UNSAFE since it deletes blocks.
*/
async removeImportBlockFromDailyNote() {
await this.deleteBlocksMatchingQuery(
this.getQueryToFindBlocksOnPage(
'Import',
this.dailyNoteTitle()
),
1
);
//Lets give time to sync
await this.page.waitForTimeout( 1000 );
return;
}
/**
* Return page title for the current daily note.
*/
dailyNoteTitle() {
return moment( new Date() ).format( 'MMMM Do, YYYY' );
}
/**
* Return page uid for the current daily note.
*/
dailyNoteUid() {
return moment( new Date() ).format( 'MM-DD-YYYY' );
}
/**
* Export your Roam database and return the JSON data.
* @param {boolean} autoremove - should the zip file be removed after extracting?
*/
async getExportData( autoremove ) {
// Mostly for testing purposes when we want to use a preexisting download.
if ( ! this.options.nodownload ) {
await this.logIn();
await this.downloadExport( this.options.folder );
}
const latestExport = this.getLatestFile( this.options.folder );
const content = await this.getContentsOfRepo( this.options.folder, latestExport );
if ( autoremove ) {
fs.unlinkSync( latestExport );
}
await this.close();
return content;
}
/**
* Logs in to Roam interface.
*/
async logIn() {
if ( this.browser ) {
return this.browser;
}
this.browser = await puppeteer.launch( this.options );
try {
this.page = await this.browser.newPage();
this.page.setDefaultTimeout( 60000 );
await this.page.goto( 'https://roamresearch.com/#/app/' + this.db );
await this.page.waitForNavigation();
await this.page.waitForSelector( 'input[name=email]' );
} catch ( e ) {
console.error( 'Cannot load the login screen!' );
throw e;
}
// Login
await this.page.type( 'input[name=email]', this.login );
await this.page.type( 'input[name=password]', this.pass );
await this.page.click( '.bp3-button' );
await this.page.waitForSelector( '.bp3-icon-more' );
return;
}
/**
* Import blocks to your Roam graph
* @see examples/import.js.
* @param {array} items
*/
async import( items = [] ) {
const fileName = path.resolve( this.options.folder, 'roam-research-private-api-sync.json' );
fs.writeFileSync( fileName, JSON.stringify( items ) );
await this.logIn();
await this.page.waitForSelector( '.bp3-icon-more' );
await this.clickMenuItem( 'Import Files' );
// await this.page.click( '.bp3-icon-more' );
// // This should contain "Export All"
// await this.page.waitFor( 2000 );
// await this.page.click( '.bp3-menu :nth-child(5) a' );
await this.page.waitForSelector( 'input[type=file]' );
await this.page.waitForTimeout( 1000 );
// get the ElementHandle of the selector above
const inputUploadHandle = await this.page.$( 'input[type=file]' );
// Sets the value of the file input to fileToUpload
inputUploadHandle.uploadFile( fileName );
await this.page.waitForSelector( '.bp3-dialog .bp3-intent-primary' );
await this.page.click( '.bp3-dialog .bp3-intent-primary' );
await this.page.waitForTimeout( 3000 );
await this.removeImportBlockFromDailyNote();
return;
}
/**
* Inserts text to your quickcapture.
* @param {string} text
*/
async quickCapture( text = [] ) {
await this.logIn();
const page = await this.browser.newPage();
await page.emulate( puppeteer.devices[ 'iPhone X' ] );
// set user agent (override the default headless User Agent)
await page.goto( 'https://roamresearch.com/#/app/' + this.db );
await page.waitForSelector( '#block-input-quick-capture-window-qcapture' );
if ( isString( text ) ) {
text = [ text ];
}
text.forEach( async function ( t ) {
await page.type( '#block-input-quick-capture-window-qcapture', t );
await page.click( 'button.bp3-intent-primary' );
} );
await page.waitForTimeout( 500 );
// page.close();
await this.close();
return;
}
/**
* Click item in the side-menu. This is mostly internal.
* @param {string} title
*/
async clickMenuItem( title ) {
await this.page.click( '.bp3-icon-more' );
// This should contain "Export All"
await this.page.waitForTimeout( 1000 );
await this.page.evaluate( ( title ) => {
const items = [ ...document.querySelectorAll( '.bp3-menu li a' ) ];
items.forEach( ( item ) => {
console.log( item.innerText, title );
if ( item.innerText === title ) {
item.click();
return;
}
} );
}, title );
}
/**
* Download Roam export to a selected folder.
* @param {string} folder
*/
async downloadExport( folder ) {
await this.page._client.send( 'Page.setDownloadBehavior', {
behavior: 'allow',
downloadPath: folder,
} );
// Try to download
// await this.page.goto( 'https://roamresearch.com/#/app/' + this.db );
// await this.page.waitForNavigation();
await this.page.waitForSelector( '.bp3-icon-more' );
await this.clickMenuItem( 'Export All' );
// await this.page.click( '.bp3-icon-more' );
// // This should contain "Export All"
// await this.page.waitFor( 2000 );
// await this.page.click( '.bp3-menu :nth-child(4) a' );
//Change markdown to JSON:
// This should contain markdown
await this.page.waitForTimeout( 2000 );
await this.page.click( '.bp3-dialog-container .bp3-popover-wrapper button' );
// This should contain JSON
await this.page.waitForTimeout( 2000 );
await this.page.click( '.bp3-dialog-container .bp3-popover-wrapper .bp3-popover-dismiss' );
// This should contain "Export All"
await this.page.waitForTimeout( 2000 );
await this.page.click( '.bp3-dialog-container .bp3-intent-primary' );
await this.page.waitForTimeout( 60000 ); // This can take quite some time on slower systems
// Network idle is a hack to wait until we donwloaded stuff. I don't think it works though.
await this.page.goto( 'https://news.ycombinator.com/', { waitUntil: 'networkidle2' } );
return;
}
/**
* Close the fake browser session.
*/
async close() {
if ( this.browser ) {
await this.page.waitForTimeout( 1000 );
await this.browser.close();
this.browser = null;
}
return;
}
/**
* Get the freshest file in the directory, for finding the newest export.
* @param {string} dir
*/
getLatestFile( dir ) {
const orderReccentFiles = ( dir ) =>
fs
.readdirSync( dir )
.filter( ( f ) => fs.lstatSync( path.resolve( dir, f ) ) && fs.lstatSync( path.resolve( dir, f ) ).isFile() )
.filter( ( f ) => f.indexOf( 'Roam-Export' ) !== -1 )
.map( ( file ) => ( { file, mtime: fs.lstatSync( path.resolve( dir, file ) ).mtime } ) )
.sort( ( a, b ) => b.mtime.getTime() - a.mtime.getTime() );
const getMostRecentFile = ( dir ) => {
const files = orderReccentFiles( dir );
return files.length ? files[ 0 ] : undefined;
};
return path.resolve( dir, getMostRecentFile( dir ).file );
}
/**
* Unzip the export and get the content.
* @param {string} dir
* @param {string} file
*/
getContentsOfRepo( dir, file ) {
return new Promise( ( resolve, reject ) => {
const stream = fs.createReadStream( file ).pipe( unzip.Parse() );
stream.on( 'entry', function ( entry ) {
var fileName = entry.path;
var type = entry.type; // 'Directory' or 'File'
var size = entry.size;
if ( fileName.indexOf( '.json' ) != -1 ) {
entry.pipe( fs.createWriteStream( path.resolve( dir, 'db.json' ) ) );
} else {
entry.autodrain();
}
} );
// Timeouts are here so that the system locks can be removed - takes time on some systems.
stream.on( 'close', function () {
setTimeout( function() {
fs.readFile( path.resolve( dir, 'db.json' ), 'utf8', function ( err, data ) {
if ( err ) {
reject( err );
} else {
resolve( JSON.parse( data ) );
}
} );
}, 1000 );
} );
} );
}
}
module.exports = RoamPrivateApi;