Skip to content

mateusz-garlacz/cs3api4lab

 
 

Repository files navigation

cs3api4lab

Github Actions Status

This is an Extension for Jupyterlab that allow the retrieval of files and and added functionality (i.e sharing) provided by the CS3APIs.

This extension is composed of a Python package named cs3api4lab and a NPM package named cs3api4lab for the frontend extension.

The Python package implements the Jupyter ContentsManager and Checkpoints interfaces, and can be used to replace the default managers.

Requirements

  • JupyterLab >= 2.0

Install

Note: You will need NodeJS to install the extension.

pip install cs3api4lab
jupyter serverextension enable --py cs3api4lab --sys-prefix
jupyter labextension install @sciencemesh/cs3api4lab

To enable the Manager, the following configuration needs to be added to jupyter_notebook_config.py:

c.NotebookApp.contents_manager_class = 'cs3api4lab.CS3APIsManager'

Contributing

Install

The jlpm command is JupyterLab's pinned version of yarn that is installed with JupyterLab. You may use yarn or npm in lieu of jlpm below.

# Clone the repo to your local environment
# Move to cs3api4lab directory

# Install the contents manager
pip install -e .
# Register server extension
jupyter serverextension enable --py cs3api4lab --sys-prefix

# Install dependencies
jlpm
# Build Typescript source
jlpm build
# Link your development version of the extension with JupyterLab
jupyter labextension install .
# Rebuild Typescript source after making changes
jlpm build
# Rebuild JupyterLab after making any changes
jupyter lab build

You can watch the source directory and run JupyterLab in watch mode to watch for changes in the extension's source and automatically rebuild the extension and application.

# Watch the source directory in another terminal tab
jlpm watch
# Run jupyterlab in watch mode in one terminal tab
jupyter lab --watch

Now every change will be built locally and bundled into JupyterLab. Be sure to refresh your browser page after saving file changes to reload the extension (note: you'll need to wait for webpack to finish, which can take 10s+ at times).

Uninstall

pip uninstall cs3api4lab
jupyter labextension uninstall @sciencemesh/cs3api4lab

Setup env for integration testing

Create local IOP instance

Follow the first 3 steps from this tutorial https://reva.link/docs/tutorials/share-tutorial/ or create with commands:

git clone https://github.com/cs3org/reva
cd reva
make deps
make
mkdir -p /var/tmp/reva
cd examples/ocmd/
../../cmd/revad/revad -c ocmd-server-1.toml

Run test

Goto test folder:

cd cs3api4lab/tests

Run cs3 API connector test:

python test_cs3_file_api.py
python test_cs3apismanager.py

Setup env

Create config:

jupyter notebook --generate-config

Enable CS3 File Content Manager Replace in file HOME_FOLDER/.jupyter/jupyter_notebook_config.py line

c.NotebookApp.contents_manager_class = 'notebook.services.contents.largefilemanager.LargeFileManager'

to

c.NotebookApp.contents_manager_class = 'cs3api4lab.CS3APIsManager'

CS3 config file

Copy cs3 example config file from "jupyter-config/jupyter_cs3_config.json" to:

  • Windows: C:\Users\{USER_PROFILE}\.jupyter\
  • Linux: HOME_FOLDER/.jupyter/

Config file fields:

  • revahost - address and port on which the Reva server is listening
  • auth_token_validity - the lifetime of the authenticating token
  • endpoint - endpoint for Reva storage provider
  • chunk_size - size of the downloaded fragment from Reva
  • secure_channel - secure channel flag
  • client_cert - public key file path (PEM-encoded)
  • client_key - private key file path
  • ca_cert - certificate authority file path
  • client_id - client login to authenticate in Reva
  • client_secret - client password to authenticate in Reva
  • root_dir_list - list of root dirs, for example https://developer.sciencemesh.io/docs/iop/deployment/kubernetes/providers/ root dirs are "/home,/reva"

Examples of different authentication methods:

If you want to use a different authentication method replace the "authenticator_class" in the config file and put necessary config values for authenticator class.

  • Reva user and secret:
{
 "cs3":{
   ...
   "authenticator_class": "cs3api4lab.auth.RevaPassword",
   "client_id": "einstein",
   "client_secret": "relativity"
   }
}
  • Oauth token from config value
{
 "cs3":{
   ...
   "authenticator_class": "cs3api4lab.auth.Oauth",
   "oauth_token":"OUATH TOKEN",
   "client_id": "einstein"
   }
}
  • Oauth token from file
{
 "cs3":{
   ...
   "authenticator_class": "cs3api4lab.auth.Oauth",
   "oauth_token":"PATH TO FILE",
   "client_id": "einstein"
   }
}
  • Eos token from config value
{
 "cs3":{
   ...
   "authenticator_class": "cs3api4lab.auth.Eos",
   "eos_token":"oauth2:<OAUTH_TOKEN>:<OAUTH_INSPECTION_ENDPOINT>",
   "client_id": "einstein"
   }
}
  • Eos token from file
{
 "cs3":{
   ...
   "authenticator_class": "cs3api4lab.auth.Eos",
   "eos_file":"PATH TO FILE",
   "client_id": "einstein"
   }
}

Setup for docker image

Build docker image from local source code

Clone the repo:

git clone https://github.com/sciencemesh/cs3api4lab.git
cd cs3api4lab

Build docker image:

docker build -t cs3api4lab .

Available environmental variables:

- CS3_REVA_HOST - address and port on which the Reva server is listening [required]
- CS3_CLIENT_ID - client login to authenticate in Reva [required]
- CS3_CLIENT_SECRET - client password to authenticate in Reva [required in case of basic login]
- CS3_AUTH_TOKEN_VALIDITY - the lifetime of the authenticating token
- CS3_ENDPOINT - endpoint for Reva storage provider
- CS3_HOME_DIR - home directory of the user
- CS3_CHUNK_SIZE - size of the downloaded fragment from Reva
- CS3_SECURE_CHANNEL - secure channel flag
- CS3_CLIENT_CERT - public key file path (PEM-encoded)
- CS3_CLIENT_KEY - private key file path
- CS3_CA_CERT - certificate authority file path
- CS3_LOGIN_TYPE - Reva login type
- CS3_AUTHENTICATOR_CLASS - class of the authentication provider
- CS3_ROOT_DIR_LIST - list of root containers

Run docker image providing necessary variables:

docker run -p 8888:8888 -e CS3_CLIENT_ID=einstein -e CS3_REVA_HOST=127.0.0.1:19000 cs3api4lab

Run docker image after overwriting the config variables explicitly or in the reva_config.env:

docker run -p 8888:8888 --env-file reva_config.env cs3api4lab

Quick build

pip install -e .
jupyter serverextension enable --py cs3api4lab --sys-prefix
jlpm
jlpm build
jupyter labextension install .
jlpm build
jupyter lab build
jupyter lab 

Quick build python

jupyter labextension install .
jupyter lab

About

CS3APIs Jupyterlab connector

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 97.7%
  • Dockerfile 1.1%
  • Other 1.2%