Identity Hub service
Go to file
Cayo Puigdefabregas 0018932999 change issues #104 2024-02-05 12:27:45 +01:00
.gitea/workflows Updated pipeline to run testing job on pull requests against main and release 2024-01-31 10:55:09 +01:00
examples docker: code that facilitates deploy of pilots 2024-01-24 14:41:06 +01:00
idhub change issues #104 2024-02-05 12:27:45 +01:00
idhub_auth update migrations 2024-01-22 18:13:28 +01:00
locale add translation 2023-11-28 10:17:59 +01:00
oidc4vp fix setem fluw 2024-02-02 09:18:15 +01:00
promotion Merge branch 'main' of gitea.pangea.org:trustchain-oc1-orchestral/IdHub 2024-02-02 10:13:59 +01:00
schemas fix schema loads 2024-02-02 16:16:35 +01:00
trustchain_idhub docker: code that facilitates deploy of pilots 2024-01-24 14:41:06 +01:00
utils resolve conflict 2024-01-20 15:28:42 +01:00
.gitignore merged from base 2023-10-10 08:46:30 +02:00
LICENSE.md update readme 2024-01-23 10:07:44 +01:00
README.md Update README with wheel instructions 2024-01-26 11:31:49 +01:00
manage.py Started django project + first HTML render 2023-09-26 09:15:28 +02:00
pyproject.toml rebuild flow of import datas 2023-10-24 14:08:24 +02:00
requirements.txt fix upload excel 2024-02-02 18:01:59 +01:00

README.md

IdHub

IdHub is a Django-based project designed to provide efficient identity management solutions.This README offers an overview of the project, setup instructions, and additional resources.

About IdHub

The idHub service facilitates organisations (acting as issuer or verifiers) and beneficiaries (acting as subjects and credential holders) to issue, exchange, and verify data in the form of verifiable credentials for credible and flexible access to benefits or services.

Features

The main modules components it provides:

  • Admin Dashboard: A user-friendly admin panel that enables administrator to manage users and roles, handle aspects such as the creation of organisational Decentralized Identifiers (DIDs), credentials issued by the organisation, and upload the information for issuance of credentials to users (including credential schemas and data).
  • User Dashboard: A user-friendly user panel equips users to manage their personal information, create an identity (DID), request the issuance of a credential, and present these credentials to entities within our user communitity. This module operates as a user wallet. The application's backend is responsible for issuing credentials upun user request through the user module. Meanwhile, the idHub can function as a credential verifier and engage in dialogues with other idHub instances that operate as user wallets by implementing a OIDC4VP based dialog. Consequently, the idHub is multifaceted, capable of functioning as an issuer, wallet or verifier.
  • OIDC4VP module: Module where all oidc4vp flows reside for credential presentation.

Getting Started

Prerequisites

  • Python >= 3.11.2

Installation

  1. Clone this repository:
    git clone https://gitea.pangea.org/trustchain-oc1-orchestral/IdHub
    
  2. (Recommended but optional) Create and activate a virtual environment:
    python -m venv venv
    source venv/bin/activate
    
  3. Install the DIDKit wheel
    wget https://gitea.pangea.org/trustchain-oc1-orchestral/ssikit_trustchain/raw/branch/master/didkit-0.3.2-cp311-cp311-manylinux_2_34_x86_64.whl  
    
  4. Install the required packages:
    pip install -r requirements.txt
    
  5. Run migrations:
    python manage.py migrate
    
  6. Optionally you can install a minumum data set:
    python manage.py initial_datas
    
  7. Start the development server:
    python manage.py runserver
    

Usage

Access the application at http://localhost:8000.

Running Tests

IdHub uses Django's built-in testing tools to ensure the reliability and performance of the application. Follow these steps to run the tests:

Execute the following command in your project directory to run all tests:

python manage.py test

This command will discover and run all tests in the tests directories of the application.

Repository Structure

IdHub's repository is organized into several directories, each serving a specific purpose in the project:

  • examples: Examples of different data files used in some functionalities.

  • idhub: The core directory of the IdHub project (templates, forms, views, models, etc.). It includes the main functionality of this Django project.

  • idhub_auth: This directory contains the module where the users and the data encryption/decryption system are defined.

  • locale: Contains localization files for IdHub (po and mo files for translations), enabling support for multiple languages.

  • oidc4vp: Module where all oidc4vp flows (implementation of the credential's presentation dialog) reside.

  • promotion: Example module showing how to create a portal that initializes the oidc4vp flow.

  • schemas: Contains verifiable credential schemas used within IdHub for a preload without having to go to the original source.

  • trustchain_idhub: This folder includes settings and configurations for the Django project. It is the entry point of Django, where the global variables, the startup files and the file that defines the endpoints are defined.

  • utils: A utility folder containing various helper scripts and tools developed by us but that are independent of idHub. Even so, IdHub uses them and needs them (examples of this are the validation system for the data that is loades by excel, or the system that manages the sskit)

Documentation

For detailed documentation, visit Documentation Link.

License

This project is licensed under the GNU Affero General Public License - see the LICENSE.md file for details.