Evacuation from Space!
Go to file
2023-08-28 23:15:32 +03:00
gradle/wrapper Update versions 2023-06-16 11:23:04 +03:00
src/main Add full chat extraction 2023-08-28 23:15:32 +03:00
.gitignore Full extraction 2022-04-26 21:20:46 +03:00
.space.kts Change deploy address 2023-06-20 18:23:47 +03:00
build.gradle.kts Add repositories export 2023-08-21 20:32:40 +03:00
gradle.properties initial commit 2021-12-26 15:28:53 +03:00
gradlew initial commit 2021-12-26 15:28:53 +03:00
gradlew.bat initial commit 2021-12-26 15:28:53 +03:00
README.md Documentation 2022-04-27 09:26:24 +03:00
settings.gradle.kts Add repositories export 2023-08-21 20:32:40 +03:00

Space Document Extractor

The aim of this repository is to help to generate stand-alone version of JetBrains Space documents. Those documents are written in MarkDown format and could include images. In order to do that one have to do several steps:

  • Download a page as markdown to a directory.
  • Download attached images to specific directory.
  • Replace references to attachments in MarkDown files.

This project uses Space SDK to organize those steps.

Setting up Space Application

In order to access data in Space, one needs to create a Space Application and add appropriate permissions. I am not sure which permissions cover access to image, but here are those that I allowed:

  • Provide external attachment unfurls
  • Provide external inline unfurls
  • View project data
  • View book metadata
  • View content

For restricted projects, one needs to manually add the project and its permission to allowed.

Then one needs to copy clientId and clientSecret for the application and use them as command line parameters.

Downloading texts

Text and binary documents are processed recursively starting at given folderId or project root if it is not defined.

Download images

The images in space documents are inserted in the following format: ![](/d/aaaabbbbcccc?f=0 "name.png"). Our aim is to detect those links in files and download appropriate images. Those links could not be replaced directly, because access requires OAuth authentication. For that we need to use access token from Space SDK.

Replace references

After file is successfully downloaded, the reference in file must be replaced with a local one.

Command line interface

Usage: space-document-extractor options_list
Options: 
    --spaceUrl -> Url of the space instance like 'https://mipt-npm.jetbrains.space' (always required) { String }
    --project -> The key of the exported project (always required) { String }
    --path -> Target directory. Default is './output/project-key'. { String }
    --folderId -> FolderId for the folder to export. By default uses project root. { String }
    --clientId -> Space application client ID (if not defined, use environment value 'space.clientId') { String }
    --clientSecret -> Space application client secret (if not defined, use environment value 'space.clientSecret') { String }
    --help, -h -> Usage info 

Typical application usage:

.\space-document-extractor --spaceUrl "your space URL" --project "your project key" --clientId "your client ID" --clientSecret "your client secret"

It will download all documents and postprocess markdown files, replacing image links with downloaded image in images directory (each subdirectory will have its own images.