Source for the website providing online SPDX tools. The tool provides an easy all-in-one website to upload and parse SPDX documents for validation, comparison and conversion and search SPDX license list. Here you can find more about the working of the tool.
- Upload and parse SPDX Documents
- Validate SPDX Documents
- Compare Multiple SPDX Rdf Files
- Convert one SPDX format to another
- Compare License text to the SPDX listed Licenses
Either the Sun/Oracle JDK/JRE Variant or OpenJDK. Python 2.6+.
Debian/Ubuntu users will have to install g++ and python-dev first:
sudo apt-get install g++ python-dev
Windows users need a Python installation and C++ compiler:
- Install some version of Python (2.7 or higher), e.g., Anaconda is a good choice for users not yet familiar with the language
- Install a Windows C++ Compiler
-
Clone or download the repository.
-
Create a new virtual environment for the project. To download virtual environment run
pip install virtualenv
virtualenv venv source venv/bin/activate
-
Install the required python libraries given in the requirements.txt file.
cd spdx-online-tools pip install -r requirements.txt
-
Run Django migrate.
python src/manage.py migrate
-
(Optional) If you want use license-xml-editor with licenses/exceptions from spdx license list, download the license name database.
python src/populate.py
-
(Optional) If you want to use the license submittal feature or check license feature, follow the below step(s):
-
Install redis server on your local machine.
For linux users
- Use the command
sudo apt-get install redis-server
to install the redis server.
For Mac users
-
Install the redis by running the command
brew install redis
. -
If you want to run redis whenever your computer starts then run
ln -sfv /usr/local/opt/redis/*.plist ~/Library/LaunchAgents
. -
To run the redis server use
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.redis.plist
. -
To test if the redis is working run the command
redis-cli ping
. If it returnsPong
then you are good to go.
For Windows users
- Download the redis server from here and install it.
- Use the command
-
Make sure redis server is running and keep it running until you are done using the license submittal or check license feature.
The redis is used to store the license text of license present on the SPDX license list. For the very first time it may take a while to build the license on the redis server.
SPDX License Matcher matches the license text input by the user(via license submittal form) against the data present on the redis to find for duplicate and near matches.
-
-
Start the application.
python src/manage.py runserver
-
Open
localhost:8000/
in the browser. -
Register and login to use the tools.
python src/manage.py test
The settings.py
file uses sensitive data to work with the GitHub API. For that reason, sensitive data is not checked into source. Due to that lack of data, some features of SPDX Online Tools and its API won't be able to run as they require the user credentials in order to access the GitHub API. So, the user is supposed to enter their credentials in the src/src/secret.py
file in order to ensure proper functioning of the tool.
The src/src/secret.py
file contains the following lines along with some methods required to run the tests properly. These include:
def getGithubKey():
return 'GHKEYXXX'
def getGithubSecret():
return 'GHSECRETXXX'
def getSecretKey():
return 'DJANGOSECRETXXX'
def getOauthToolKitAppID():
return 'OauthAppIDXXX'
def getOauthToolKitAppSecret():
return 'OauthAppSecretXXX'
where:
- GHKEYXXX is the Client ID for the Github Oauth Apps
- GHSECRETXXX is the Client secret for the Github Oauth Apps
- DJANGOSECRETXXX is the Django secret
- OauthAppIDXXX is the client ID of the django oauth toolkit app (To create your application see this)
- OauthAppSecretXXX is the client secret of the django oauth toolkit app (To create your application see this)
Note: While setting up the GitHub OAuth App, set the Homepage URL
to http://localhost:8000/
and the Authorization callback URL
to http://localhost:8000/oauth/complete/github
Here is the exhaustive list of request and response fields of different api tools.
-
Start the server.
python manage.py runserver
-
Send the request to the url with the form input values accordingly. Curl examples are given below.
-
For validation tool, send the request to
/api/validate/
.curl -X POST -u <admin>:<password> -F "file=@<fileInput>" -H "Accept: application/json" http://localhost:8000/api/validate/ | json_pp
-
For compare tool, send the request to
/api/compare/
.curl -X POST -u <admin>:<password> -F "file1=@<fileInput1>" -F "file2=<fileInput2>" -F "rfilename=<resultFileName>" -H "Accept: application/json" http://localhost:8000/api/compare/ | json_pp
-
For convert tool, send the request to
/api/convert/
.curl -X POST -u <admin>:<password> -F "file=@<fileInput>" -F "cfilename=<resultFileNameWithExtension>" -F "from_format=<convertFrom>" -F "to_format=<convertTo>" -H "Accept: application/json" http://localhost:8000/api/convert/ | json_pp
-
For license check tool, send the request to
/api/check_license/
.curl -X POST -u <admin>:<password> -F "file=@<fileInput>" -H "Accept: application/json" http://localhost:8000/api/check_license/ | json_pp
-
For the license submittal API, first create a a django oauth toolkit application and follow the steps given below:
-
Go to admin page and login(if you don't have an admin account then create one using
python manage.py createsuperuser
). -
Create a new application by going to the
Add application
section. -
Copy the client id and client secret of the app and paste it in secret.py file under getOauthToolKitAppID and secret and fill the other details of the app as follows:
User
:<admin you created>
client type
:confidential
authorization grant type
:resource owner password based
and SAVE the app.
-
Visit
http://github.com/login/oauth/authorize/?client_id=<github-client-id>
it will then redirect you to a url, copy thecode
query string present in the url and send it via curl command if you want to use the API. if you want to run tests and test the API then paste thecode
in the secret.py file in thegetAuthCode
method.Note You can only use your code once. If you want to use the license submittal API again, you can generate a new code by following the above point. The code is valid for 10 minutes only.
-
Send the request to
/api/submit-license/
.curl -X POST http://localhost:8000/api/ submit_license/ -F 'fullname=<your-fullname>' -F 'shortIdentifier=<your-identifier>' -F 'licenseAuthorName=<license-author>' -F 'userEmail=<your-email>' -F 'text=<text>' -F 'osiApproved=<osi>' -F 'sourceUrl=<url>' -F 'code=<your-code-here>'
-
The project uses spdx java tools for various tools of the website.