OPAL is committed to being an open solution, embracing transparency, collaboration and fostering a community where developers and organizations can work together to improve and customize the licensing service to meet their unique needs.
OPAL is adaptive to serve different license models of digital products as well as to different hierarchies within your customer landscape.
At its core, OPAL is a comprehensive licensing service designed to simplify and manage the licensing of digital products.
flowchart LR
subgraph Integration Scenario
subgraph OPAL
direction TB
PAPI(Permission API - auto-redeem)
LAPI(License API)
AAPI(Admin API)
end
LAPI -->|get users licenses| edtechTC(Teacher UI)
subgraph EdTech Application
direction TB
edtechTC -->|create trial-license| LAPI
edtechSC(Student UI) -->|ask for accessible products| PAPI
end
edtechShop(EdTech Shop) -->|create/update license| LAPI
LiBO(Licensing Backoffice) -->|create License|AAPI
end
teacher[fa:fa-person-chalkboard Teacher] -->|purchase a license| edtechShop
teacher -->|views license / try product| edtechTC
support[fa:fa-headset Support EdTech] -->|administrate License| LiBO
student[fa:fa-graduation-cap Student] -->|uses licensed content/app| edtechSC
EdTechs build Products to change the way we learn. We learned that it's quite a bit of an effort to work on the administrational features to get your learning application into usage. One of the topics is, how to license your product in the differnet organizational structures. That's why we worked on a solution which works in differrent IDP environments.
Our Licensing Service is able to provide product permissions for various connected IDPs based on an external hierarchy with an autoredeeming process to use the license.
We build a licensing service which combines the need of licensing on different levels (Enities) within a hierarchy and a seat baes licensing. So users which are member of an entity owning a license can automatically use the product.
Licensing Glossary
- User
- An authenticated user of your application.
- Product
- A product is an application or content.
- Hierarchy
- Is an organizational structure on each entity within this structure a license could be linked.
- Membership
- A User is member of different entities.
- Entity
- A Knot within a Hierarchy like a school, grade or class.
- Permission
- A User gets permission to a product if he/she is member of an entity within a hierarchy which ownes a valid license.
- IDP
- Identity Provider
- You want to license (educational) products (Content or App)?
- Your customers / users are part of a hierarchy structure in which they want to buy licenses?
- You are facing multible IDPs in your different customer environments?
- You want to have a seat based licensing in place?
Installation
Usage
Documentation
License
Best practice is to run the application in a local k8s cluster. Please see k8s/README.md:
make k8s_install
make k8s_synth
make init
make start
Alternatively you can start the application "by hand" Create a 'dotenv' file: Create a file named '.env' in the root folder of the app and provide your database paramaters and credentials like so:
DB_USER=<<your 'postgres' user name (root user of the RDBMS)>>
DB_PASSWORD=<<your 'postgres' users (root user of the RDBMS) password>>
DB_HOST="localhost"
DB_PORT="5432"
DB_NAME=<<the name of the 'license-manager' database you will create in the following step (licm)>>
Before you can start the application, you have to install a database. Please create a database manually on your local postgreSQL database using the SQL query
CREATE DATABASE licm;
You can start the application using the following commands:
cd <licensing>
export PYTHONPATH=$PWD/src
uvicorn services.licensing.main:app --reload --workers 1 --host 0.0.0.0 --port 8000
You can now use the API:
(If you run the app by not using Docker)
- API docs: http://localhost:8000/docs
- license API: http://localhost:8000/licenses
Many of our pytest tests require a running Postgres database. You can use the existing docker-compose definition to start a test database.
docker compose up test-postgres
This will start a postgres on port 5431 containing the test_licensing
db.
Before starting pytest
you will need to set following environment variables:
DB_HOST=localhost
DB_PORT=5431
DB_USER=postgres
DB_PASSWORD=postgres
SEGMENT=loc00
Do we need a comment on migration? GWE
-
generate new migrations:
alembic revision --autogenerate -m "<some meaningful title>"
-
apply the migrations:
alembic upgrade head
Eventcreation is prepared but could be addapted to special needs.
$ git clone [repository-url] $ cd [project-directory] $ npm install
[Explain how to use the software. Include examples, code snippets, and any relevant information that users need to get started.]
$ command-to-run-software [options]
The concept for implementing such a License Manager can be found here: License Manager concept
This project is licensed under the MIT License - see LICENSE for details.
- OPAL first public release Open Source Release
- Add LicenseConnect Interface LicenseConnect Project (german)
See the open issues for a full list of proposed features (and known issues).
Bettermarks GmbH, Berlin - kontakt@bettermarks.com
Project Link: https://github.com/bettermarks/opal/
Here are some resources we find helpful and would like to give credit to.