Skip to content

i3dhub-github-integration is a full example for visualizing 3D data that is stored in a private repository on GitHub. The example also includes a React app to demonstrate how to pass authorization data to the data backend.

License

Notifications You must be signed in to change notification settings

threedy-io/i3dhub-github-integration

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Example: GitHub Gateway Integration

Description

instant3Dhub can be used to read and visualise data from external systems. This example shows how to integrate it with GitHub to visualize 3D data from a private repository and addressing the data using a URN schema.


Table of contents


Components

This example consists of the components listed below.

App

The provided app is a React App which integrates the instant3Dhub client library webvis.js. The following functionality is implemented:

  • Login with GitHub account
  • List files that are available in the GitHub repository
  • Visualize 3D files

OAuth proxy:

The OAuth Proxy is an expressjs server that uses the code that was retrieved by the app login flow to retrieve an access token. The access token is provided to the App to access the data.

Data Gateway:

The data gateway is a go service which exposes an HTTP endpoint implementing 2 methods:

  • GET: Gets the raw file data with the current user context
  • HEAD: Check if the current user context is authorized to access a specific file

The gateway checks Authorization header to pass the user access token. The sha of the file is set as ETag header to identify if the orginal file has changed and needs to be reloaded into instant3Dhub. More information about Gateway interface is available here.

instant3Dhub

A running instance of instant3Dhub is needed to run the example with the correct configuration. For information on how to install instant3Dhub and apply configuration, please check our public documentation portal. We also provide a helm chart package in this repository that uses instant3Dhub as a dependency. The provided helm chart can be used to install all components. See setup.

Setup

Prerequisites

To run this example, you need to have the following:

  • Installed Docker
  • Kubernetes cluster

The following section explains how to run on Windows using docker desktop

Run the Example

  • Register new OAuth APP in GitHub.

  • Copy the client ID and secret to use in the following step.

  • Build docker images:

    docker build -t i3dhub-github-app app/
    docker build -t i3dhub-github-gateway github-gw/
    docker build -t i3dhub-github-auth-proxy oauth-proxy/
    
  • Use helm chart to install the components. Note that this chart uses instant3Dhub version 3.7.3. You can change the used version in chart.yaml.

  • In case you want to install instant3Dhub with the other components, you need to update the helm depedency based on the contents of Chart.yaml

    cd helm && helm dependency update 
    
  • Install the package:

    Replace CLIENT_ID, CLIENT_SECRET, REPOSITORY_NAME with the correct values in the following command.

    In case you have installed instance3Dhub separately, you can skip its installation by setting instant3Dhub.enabled=false and set hubURL value app.hubURL=. In addition you can omit all the other instant3Dhub.* values in the command.

    #!/bin/bash
    
    helm install i3dhub-github-integration  ./helm/ \
      --create-namespace \
      --namespace i3dhub-github-integration \
      --set app.enabled=true \
      --set app.clientId= CLIENT_ID \
      --set app.clientSecret= CLIENT_SECRET \
      --set app.redirectURL=http://localhost:30080/login \
      --set app.authProxy.url=http://localhost:30081/authenticate \
      --set app.authProxy.nodePort=30081 \
      --set app.nodePort=30080 \
      --set app.repositoryName= REPOSITORY_NAME \
      --set app.hubURL=http://localhost:30042/ \
      --set image.registry=images.threedy.io:8082 \
      --set instant3Dhub.enabled=true \
      --set instant3Dhub.licenseServer=http://license.threedy.io:8200 \
      --set instant3Dhub.entrypoints={http://localhost:30042/} \
      --set instant3Dhub.entryNodePort=30042 \
      --set instant3Dhub.storage.class=hostpath \
      --set instant3Dhub.registry=images.threedy.io
    

User guide

  • Install the package

  • Then enter the url <HOST>:<PORT> will loads the login page

  • Login with your GitHub account it will redirect you to the home page with some information about your GitHub profile

  • Navigate to the Repository tab it will show a list of the files from your private repository and Instant3Dhub. By clicking plus Button the file will be Visualized with the Webvis

License

This example is provided under the terms of the MIT License. Please see the LICENSE for full details.

How to report an issue

For any issues please contact us.

About

i3dhub-github-integration is a full example for visualizing 3D data that is stored in a private repository on GitHub. The example also includes a React app to demonstrate how to pass authorization data to the data backend.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published