File size: 1,556 Bytes
db5855f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
// @ts-check

import { existsSync, mkdirSync, writeFileSync } from 'fs';
import { join } from 'path';

import { NOTEBOOKS_METADATA_FILE_NAME } from '../shared/constants.js';
import { NotebookMetadataValidationError } from './notebook-metadata-validator.js';

/**

 *

 * @param {string} path

 * @throws {NotebookMetadataValidationError}

 * @returns {Promise<void>}

 */
export async function generateNotebooksMetadataFile(path) {
  /** @typedef {import("./notebook-metadata-collector.js").INotebookMetadata} INotebookMetadata */

  /** @type {Record<string, INotebookMetadata>} */
  const notebooksMetadataMap = {};

  console.info(`Creating notebooks map file...`);

  const { NotebookMetadataHandler } = await import('./notebook-metadata-handler.js');

  const notebooksPaths = NotebookMetadataHandler.getNotebooksPaths();

  for (const notebookPath of notebooksPaths) {
    console.info(`Collecting metadata for notebook "${notebookPath}"`);
    const notebookMetadataHandler = new NotebookMetadataHandler(notebookPath);
    const error = notebookMetadataHandler.validateMetadata();
    if (error) {
      throw new NotebookMetadataValidationError(error);
    }
    notebooksMetadataMap[notebookPath] = notebookMetadataHandler.metadata;
  }

  if (!existsSync(path)) {
    mkdirSync(path, { recursive: true });
  }

  writeFileSync(join(path, NOTEBOOKS_METADATA_FILE_NAME), JSON.stringify(notebooksMetadataMap, null, 2), {
    flag: 'w',
  });

  console.info(`Notebooks map file is created in "${path}".`);
}