REST API to export modulestore XBlocks as OLX.
This was originally a separate plugin called openedx-olx-rest-api. It provides a Studio API that any user with course authoring permission can use to get the OLX of an individual XBlock or a unit. Without this, the only way to get an XBlock's OLX was to download the tarball of the entire course. Examples of usage (be logged in to Studio on devstack): Simple HTML XBlock: http://localhost:18010/api/olx-export/v1/xblock/block-v1:edX+DemoX+Demo_Course+type@html+block@030e35c4756a4ddc8d40b95fbbfff4d4/ Exporting a unit: http://localhost:18010/api/olx-export/v1/xblock/block-v1:edX+DemoX+Demo_Course+type@vertical+block@134df56c516a4a0dbb24dd5facef746e/ Example output for an HTML block: { "root_block_id":"block-v1:edX+DemoX+Demo_Course+type@html+block@030e35c4756a4ddc8d40b95fbbfff4d4", "blocks":{ "block-v1:edX+DemoX+Demo_Course+type@html+block@030e35c4756a4ddc8d40b95fbbfff4d4":{ "olx":"<html display_name=\"Blank HTML Page\"><![CDATA[\n<p><strong>Welcome to the edX Demo Course Introduction.</strong></p>\n]]></html>\n" } } } The code is designed primarily for use when importing content into Blockstore. So it will: * Export HTML blocks as a combined OLX/HTML file, with the HTML in a CDATA section * Convert vertical blocks to unit blocks (unit is like a vertical but has no UI elements) * Detect static files (such as images) used by the XBlock and list the absolute URL of each static file in the "static_files": {...} JSON element for each XBlock that has at least one static file usage. This can handle static files that are in mongo ("contentstore" / "Files & Uploads") as well as files generated on-the-fly during OLX serialization via the export_fs API (mostly this is video transcripts).
Showing
- openedx/core/djangoapps/olx_rest_api/__init__.py 0 additions, 0 deletionsopenedx/core/djangoapps/olx_rest_api/__init__.py
- openedx/core/djangoapps/olx_rest_api/adapters.py 129 additions, 0 deletionsopenedx/core/djangoapps/olx_rest_api/adapters.py
- openedx/core/djangoapps/olx_rest_api/apps.py 25 additions, 0 deletionsopenedx/core/djangoapps/olx_rest_api/apps.py
- openedx/core/djangoapps/olx_rest_api/block_serializer.py 163 additions, 0 deletionsopenedx/core/djangoapps/olx_rest_api/block_serializer.py
- openedx/core/djangoapps/olx_rest_api/test_adapters.py 49 additions, 0 deletionsopenedx/core/djangoapps/olx_rest_api/test_adapters.py
- openedx/core/djangoapps/olx_rest_api/test_views.py 127 additions, 0 deletionsopenedx/core/djangoapps/olx_rest_api/test_views.py
- openedx/core/djangoapps/olx_rest_api/urls.py 14 additions, 0 deletionsopenedx/core/djangoapps/olx_rest_api/urls.py
- openedx/core/djangoapps/olx_rest_api/views.py 117 additions, 0 deletionsopenedx/core/djangoapps/olx_rest_api/views.py
- setup.py 1 addition, 0 deletionssetup.py
Loading
Please register or sign in to comment