Skip to content

fossology/LicenseDb

Repository files navigation

LicenseDb

License as a service provides a convenient and effective way for organizations to manage their use of open-source licenses. With the growing popularity of open-source software, organizations are finding it more difficult to keep track of the various licenses and terms under which they are permitted to use open-source components. Open-source licenses can be complicated, making it difficult to understand how they apply to a specific piece of software or interact with other licenses. It can be used for various purposes by organizations and tools like FOSSology and SW360 like license identification, filtering, and managing licenses. There are benefits of this service such as increasing flexibility, a faster time-to-access, and managing the database.

Database

Licensedb database has licenses, obligations, obligation map, users, their audits and changes.

  • license_dbs table has list of licenses and all the data related to the licenses.
  • obligations table has the list of obligations that are related to the licenses.
  • obligation_maps table that maps obligations to their respective licenses.
  • users table has the user that are associated with the licenses.
  • audits table has the data of audits that are done in obligations or licenses
  • change_logs table has all the change history of a particular audit.

ER Diagram

APIs

There are multiple API endpoints for licenses, obligations, user and audit endpoints.

API endpoints

Check the OpenAPI documentation for the API endpoints at cmd/laas/docs/swagger.yaml.

The same can be viewed by Swagger UI plugin after installing and running the tool at http://localhost:8080/swagger/index.html.

Authentication

To get the access token, send a POST request to /api/v1/login with the username and password.

curl -X POST "http://localhost:8080/api/v1/login" \
-H "accept: application/json" -H "Content-Type: application/json" \
-d "{ \"username\": \"<username>\", \"password\": \"<password>\"}"

As the response of the request, a JWT will be returned. Use this JWT with the Authorization header (as -H "Authorization: <JWT>") to access endpoints requiring authentication.

Prerequisite

Please install and set-up Golang on your system in advance.

How to run this project?

  • Clone this Project and Navigate to the folder.
git clone https://github.com/fossology/LicenseDb.git
cd LicenseDb
  • Build the project using following command.
go build ./cmd/laas
  • Create the .env file in the root directory of the project and change the values of the environment variables as per your requirement.
cp .env.example .env
vim .env
  • Run the executable.
./laas
  • You can directly run it by the following command.
go run ./cmd/laas

Create first user

Connect to the database using psql with the following command.

psql -h localhost -p 5432 -U fossy -d fossology

Run the following query to create the first user.

INSERT INTO users (username, userpassword, userlevel) VALUES ('<username>', '<password>', 'admin'); 

Generating Swagger Documentation

  1. Install swag using the following command.
    go install github.com/swaggo/swag/cmd/swag@latest
  2. Run the following command to generate swagger documentation.
    swag init --parseDependency --generalInfo api.go --dir ./pkg/api,./pkg/auth,./pkg/db,./pkg/models,./pkg/utils --output ./cmd/laas/docs
  3. Swagger documentation will be generated in ./cmd/laas/docs folder.
  4. Run the project and navigate to http://localhost:8080/swagger/index.html to view the documentation.
  5. Optionally, after changing any documentation comments, format them with following command.
    swag fmt --generalInfo ./pkg/api/api.go --dir ./pkg/api,./pkg/auth,./pkg/db,./pkg/models,./pkg/utils

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages