@prov4itdata/web-app v0.3.1
README
PROV4ITDaTa:web-app serves as the backend for the PROV4ITDaTa platform, its main tasks are:
- Managing authorization of a user with a Service Provider (e.g. Flickr, Imgur, etc.)
- Injecting authorization credentials into RML Mappings
- Executing RML Mappings on the RML Mapper, and providing the results to the client-side
Technical details can be found in docs/REPORT.md.
Setup: RMLMapper Web API
For some of the use cases defined below, the RMLMapper Web API needs to be running.
The RMLMapper Web API must be set up using a specific version of the RMLMapper. You can find the corresponding JAR here, or you can download it from the commandline as follows:
curl -L https://cloud.ilabt.imec.be/index.php/s/sGqqBNWYFBJ6iLA/download --output rmlmapper.jarAssuming you have the downloaded the JAR to the current directory, you can run the RMLMapper Web API using this JAR as follows
rmlmapper-webapi -r rmlmapper.jarBy default, this will serve the RMLMapper Web API at http://localhost:4000/.
Setup: web-app
You can configure the environment using the app-config.json file:
- To run the web-app locally, set the
environmentvalue todev. Don't forget to specify the url of the RMLMapper Web API using thermlmapper_webapiproperty. - To run the web-app on the testbed, set the
environmentvalue totestbed. Don't forget to specify the url of the RMLMapper Web API using thermlmapper_webapiproperty.
Each app-config refers to a json file (template at config.template.json) that contains all credentials. Check the respective Data Provider APIs as to how to specify all credentials.
Install the web-app as follows:
yarn installOnce the installation is completed, we have to install and build the user-interface (@prov4itdata/ui).
This can be done by running the ui:all script:
yarn run ui:allRun the web-app using:
yarn run startRun the web-app in development mode using:
yarn run start:devUse cases
Use case: Transfer data
- Navigate to the web-app (depends on the configuration in
app-config.json). - If you aren't already logged in to your Solid pod, you will be redirected to the login page.
- The web-app's home page will show a dropdown menu where you can select a mapping to be executed. When selecting a mapping, it will be shown in the RML Rules card. Click the card to expand/collapse.
- When clicking "Execute", the generated output and provenance will available in the "Generated RDF" and "Provenance" cards respectively. The generated output will be stored on the Solid pod.
- You can download the RML rules, generated output, and provenance using the corresponding "Download"-button in each card.
- Verify what is stored on the Solid pod using the controls in the Solid-card. It is also possible to delete the file afterwards.
License
This code is copyrighted by Ghent University – imec and released under the MIT license.