Giter Site home page Giter Site logo

custom-ui-research's Introduction

Overview

The SingularityNET network allows developers to register their AI services on an open marketplace and charge for access. Though the expectation is that service consumers will primarily call services from code, the SingularityNET Dapp offers a rich UI/UX for people to explore the services offered on the network. Currently there is a default UI (also called "Fallback UI") for each service that is generated from the protobuf models that the service registers and service developers can override the Fallback UI with a custom UI by submitting a PR to the SingularityNET Dapp repository. This PR-based solution does not scale at all and this document aims to outline options for replacing this solution with a self-service workflow for AI service developers to register rich custom UIs for their own services.

This repository serves as a research project exploring what is possible with safely loading an arbitrary custom ui from an IPFS location and letting it execute scripts

Core Tenets

  1. Service developers should be able to craft a Custom UI locally
  2. Service developers should be able to register their Custom UIs without participation from the SingularityNET team
  3. Custom UIs handle collecting parameters and displaying results, while the SingularityNET Dapp itself handles the service request/response flow
  4. Custom UIs should match the overall style and aesthetic of the SingularityNET Dapp

Getting Started

Make sure you have node, npm, ipfs, and truffle installed.

  1. git clone https://github.com/singnet/custom-ui-research/ && cd custom-ui-research
    • clones the repo
  2. npm install
    • installs dependencies
  3. truffle develop
    • launches a testnet on port 9545
    • you can also use ganache if you prefer
  4. truffle migrate --network develop --reset
    • deploys contracts to testnet
  5. ipfs init
    • skip this step if you've already set up ipfs
  6. ipfs add resources/ipfs_resources/*
    • this adds the example files to IPFS in case nobody else is hosting them
    • output should look like:
      λ ipfs add resources/ipfs_resources/*
      added QmSj6BSHYpPBLxVDdUKXwUZyRMmnxksR2NZXaqUWRB4Wjd airedale.jpeg
      added QmRKCcyjToCWrwCe8i2PzeFjhepkgSyUXWwFYjfJ3w6HA8 betterwebsite.html
      added QmPZ9gcCEpqKTo6aq61g2nXGUhM4iCL3ewB6LDXZCtioEB readme.txt
      
    • hashes have to match exactly what is inserted in SimpleStorage.sol constructor
  7. npm run start
    • serves the react app at localhost:3000
  8. Navigate to localhost:3000 in your web browser
    • try entering website in the textbox and hit submit
      • on the left side you see the UTF8 content retrieved from IPFS
      • on the right side you see the content rendered as HTML inside an iFrame
    • also try typing readme and airedale in the textbox
      • TODO: airedale loads an image and is currently broken with:
        Uncaught DOMException: Failed to execute 'createElement' on 'Document': The tag name provided ('hug���v�...') is not a valid name.
        

Project Components

  1. Load Custom UI from IPFS into the DApp's DOM
    1. Option 1: Set iframe src to ifps-gateway/<ipfsHash>
      • iframe same-origin policy makes this secure, and a window.postMessage-based API can make it easy for developers to communicate with the DApp to hand over the parameters to send to the gRPC service
      • requires a dependency on an ipfs-gateway
    2. Option 2: UI developers package and upload a tarball (or even plain HTML file) which is downloaded from IPFS and contents injected into iframe DOM
      • requires exploration of proper iframe sandboxing techniques in order to make this secure
  2. Javascript SDK for communication between SingularityNET Dapp and Custom UI
    • SDK is written by SingularityNET developers, uses the window.postMessage standard
    • either injected into iframe or required for Custom UI developers to import
  3. Custom functionality
    1. Do we need to enable UI developers to embed arbitrary javascript in their UIs?
      • Yes: sandbox='allow-scripts'
      • No: sandbox='allow-same-origin'
      • Setting both the allow-scripts and allow-same-origin keywords together when the embedded page has the same origin as the page containing the iframe allows the embedded page to simply remove the sandbox attribute and then reload itself, effectively breaking out of the sandbox altogether. src
  4. Look-n-feel
    1. Option 1: Allow service developers to Do Whatever They Want™
    2. Option 2: Provide service developers with a CSS stylesheet to match the surrounding Dapp.
    3. Option 3: Provide service developers with Custom Elements to use for various options
      • demo below
    4. Option 4: Allow only plain HTML and a specified set of Custom Elements with attributes that map to their protobuf models
    5. Option 5: Declarative Semantic UI language (loosely based on something like swagger) which allows developers to specify their UI but have no control over any layout, styling, or functionality.
  5. Security
    1. a properly sandboxed iframe should give us the necessary security guarantees
    2. research preventing metamask popups from within iframe
    3. research preventing gRPC calls from within iframe

Demos

  1. Parent window cannot write into (or access) child cross-origin iframe jsfiddle
  2. Parent window cannot write (or access) child sandboxed iframe jsfiddle
  3. Custom Elements demo jsfiddle
    • Not implemented in Firefox or IE yet but polyfill available from webcomponents.org
  4. Simple window.postMessage demo, communication between iframes jsfiddle
  5. Input elements outside of form are valid HTML5: https://imgur.com/a/HFciXEg from https://checker.html5.org/
  6. Write HTML+JS into unsandboxed iframe and it gets hacked: jsfiddle
  7. Write HTML+JS into allow-same-origin iframe (but no allow-scripts) and it is not hacked: jsfiddle
  8. Write HTML+JS into allow-same-origin iframe, then replace with allow-scripts and ideally the scripts will execute but they wont have access to parent page data: jsfiddle
    • THIS DOES NOT CURRENTLY WORK
    • crucial feature for making the custom ui project work well

Questions

  1. Given that metamask only works in Chrome (+ opera,brave) and has limited support for Firefox, how much do we care about IE and Safari compatibility from day 1?
  2. Do custom elements defined in parent still work in iframe?
  3. use shadow dom on custom elements in order to force styling on our custom elements
    1. the shadow dom can be opened/hacked around but the idea is that if our custom elements are styled in a certain way, UI developers will try to match those styles

Links

  1. WHATWG HTML Custom Elements Spec
  2. Quip doing something similar

custom-ui-research's People

Contributors

ldub avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.