Skip to main content

IDP Authentication - Hexagonal Architecture Implementation

Project description

FastAPI

IDP Authentication hexagonal architecture implementation


Purpose

This project handles the authentication process of the Cardo platform. It is a hexagonal architecture implementation, which means that the business logic is independent of the framework used to implement the API.

Architecture

The architecture is based on the Hexagonal Architecture.

The main idea is to separate the business logic from the framework and the infrastructure.

The business logic is implemented in the domain module. This module is independent of the infrastructure.

The infrastructure is implemented infrastructure module.

The app which uses this package itself is the entry point of the application. It is the only module that depends on the framework.

Project layout

idp_authentication/
├── infrastructure
│   ├── custom_orm_column_types.py
│   ├── database.py
│   ├── orm.py
├── users
│   ├── adapters
│   │   ├── orm.py
│   │   ├── unit_of_work.py
│   │   ├── events
│   │   ├── repositories
│   ├── base_classes
│   │   ├── base_entity.py
│   │   ├── base_repository.py
│   ├── di
│   │   ├── containers.py
│   ├── domain
│   │   ├── entities
│   │   ├── ports
│   │   ├── use_cases
│   ├── infrastructure
│   │   ├── database
│   │   │   ├── sqlalchemy
│   │   ├── faust
│   │   │   ├── faust_app.py
│   ├── tests
│   │   ├── domain
│   │   │   ├── __init__.py

Requirements

Python 3.9+

IDP Authentication requires the following to be implemented:

Installation

Since this is a private repository, you need to install the package with the following command:

pip install git+ssh://git@github.com/CardoAI/idp-authentication.git@main

Example

Usage

Inside your application container:

from dependency_injector import providers
from idp_authentication.users.di.containers import UsersModuleDIContainer

    users_module = providers.Container(
        UsersModuleDIContainer,
        config=config,
        database=database,
    )

Extending default config

from idp_authentication.config import Config

class TestConfig(Config):
    APP_IDENTIFIER = "test"
    TENANTS = ["default"]
    ROLES = [TEST_ROLE_1, TEST_ROLE_2]
    APP_ENTITY_TYPES = ["app_entity_1", "app_entity_2"]

    class Config:
        env_file_encoding = "utf-8"
        use_enum_values = True

Configuration example

from dependency_injector import containers, providers
from idp_authentication.users.di.containers import UsersModuleDIContainer


class YourTestContainer(containers.DeclarativeContainer):
    config = providers.Configuration(pydantic_settings=[TestConfig()])
    url = get_test_memory_db_uri()
    database = providers.Singleton(
        Database,
    )
    users_module = providers.Container(
        UsersModuleDIContainer,
        config=config,
        database=database,
    )

Usage example

    def container():
        container = YourTestContainer()
        container.wire(packages=["idp_authentication"]) # Wire IDPAuthentication
        container.users_module.start_mappers() # Start Users Module mapper
        yield container

App Entity

To declare a new AppEntity, the Entity class should:

  • Inherit from the class AppEntity
  • Declare the properties idp_identifier, idp_label and optionally entity_type
  • Example:
    from idp_authentication.users.domain.entities.app_entity import AppEntity
      
    class TestEntity(AppEntity):
          @property
          def idp_identifier(self):
              return self.id
            
          @property
          def idp_label(self):
              return self.name
      
          @property
          def entity_type(self):
              return "test"
    

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

idp_authentication-0.2.10.tar.gz (55.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

idp_authentication-0.2.10-py3-none-any.whl (40.4 kB view details)

Uploaded Python 3

File details

Details for the file idp_authentication-0.2.10.tar.gz.

File metadata

  • Download URL: idp_authentication-0.2.10.tar.gz
  • Upload date:
  • Size: 55.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for idp_authentication-0.2.10.tar.gz
Algorithm Hash digest
SHA256 a55f2694b489075bdf6f540ea45e937dabfd8eadc32422dcc0739a7d1644cb09
MD5 b5be1f96c5a282c87a6bf85442df4b5e
BLAKE2b-256 b1bd9245ca95ca071974c8eb9886be1e0c0e2725d9b02e514c4f557a74a4671c

See more details on using hashes here.

File details

Details for the file idp_authentication-0.2.10-py3-none-any.whl.

File metadata

File hashes

Hashes for idp_authentication-0.2.10-py3-none-any.whl
Algorithm Hash digest
SHA256 da24ad25646e7a2c67a63779c0e248e59a036fa09c365d4754515331720c7fff
MD5 69e5c2131c83a199adbc5c071b872322
BLAKE2b-256 a0b99e6123e8ca7ac7780ccdb6ce5c91df977ba538a59d076ebee3ad77d668da

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page