Skip to main content

AEF_GW is a component designed to facilitate the integration of legacy systems with the **Common API Framework (CAPIF)**. It streamlines the process, enabling legacy systems to interact with CAPIF, ensuring compatibility and simplifying the adoption of modern APIs.

Project description

AEF_GW (API Exposer Function Gateway)

PyPI version Python PyPI - Downloads

AEF_GW is a gateway component designed to bridge legacy systems with the Common API Framework (CAPIF). It simplifies the integration process, enabling legacy systems to interact seamlessly with CAPIF and adopt modern APIs without extensive modifications.

The component leverages the Opencapif_sdk to manage the interactions between systems and CAPIF effectively.


Overview of AEF_GW

AEF_GW acts as an intermediary, translating and exposing APIs from legacy systems in a format compatible with CAPIF. It manages communication between the Southbound interface (legacy systems) and the Northbound interface (CAPIF), ensuring secure, reliable, and flexible API interaction.

AEF_GW Schema


Getting Started

Prerequisites

To use AEF_GW, you need:

  1. A registered user account in the CAPIF instance.
    • Contact your CAPIF administrator to obtain the necessary credentials (CAPIF username and password).
  2. The following software dependencies:
    • Python 3.12+
    • pipenv or virtualenv for managing Python environments.

Installation Steps

  1. Set up a virtual environment:

    python -m venv venv
    source venv/bin/activate  # On Windows, use `venv\Scripts\activate`
    
  2. Install AEF_GW:

    pip install aef_gw
    

Configuration

AEF_GW requires two YAML configuration files:

  1. Northbound (northbound.yaml): Defines interaction with CAPIF.
  2. Southbound (southbound.yaml): Specifies communication with legacy systems.

1. Northbound Configuration

The northbound.yaml file defines the integration with CAPIF, including API specifications and OpenCapif SDK settings.

Key Fields

  • ip: The IP address to expose.
  • port: The port to expose.
  • opencapif_sdk_configuration: Configures the OpenCapif SDK.
  • openapi: Specifies the API exposed to CAPIF.

OpenCapif SDK Configuration

Here are the required fields for the opencapif_sdk_configuration:

  • capif_host: CAPIF server domain.
  • register_host: Registration server domain.
  • capif_https_port: CAPIF server HTTPS port.
  • capif_register_port: Registration server port.
  • capif_username: CAPIF username.
  • capif_password: CAPIF password.
  • debug_mode: Enables detailed logs (True or False).

Example of a provider's certificate generation settings:

provider:
  cert_generation:
    csr_common_name: "example"
    csr_organizational_unit: "development"
    csr_organization: "ACME"
    csr_locality: "New York"
    csr_state_or_province_name: "NY"
    csr_country_name: "US"
    csr_email_address: "example@example.com"

OpenAPI Configuration

The openapi field must adhere to the OpenAPI Specification. Use tools like Swagger Editor to validate the configuration.

Example Configuration:

openapi:
  openapi: 3.0.0
  info:
    title: My API
    description: Example API for demonstration
    version: 1.0.0
  paths:
    /greet:
      get:
        summary: Say hello
        description: Returns a greeting message.
        responses:
          '200':
            description: Success
            content:
              application/json:
                schema:
                  type: object
                  properties:
                    message:
                      type: string
                      example: "Hello!"

2. Southbound Configuration

The southbound.yaml file defines how AEF_GW interacts with legacy systems.

Key Fields

  • ip: The IP address to expose.
  • port: The port to expose.
  • type: The type of endpoint (REST is currently supported).
  • authentication_method: Authentication options:
    • HTTP Basic Authentication
    • JWT Bearer Token
  • credentials:
    • For HTTP Basic Authentication:
      username: "admin"
      password: "password123"
      
    • For JWT Bearer Token:
      jwt: "your-token"
      
  • paths: Maps Northbound API paths to Southbound API paths, including HTTP methods and parameter mappings.

Example Configuration:

southbound:
  ip: 0.0.0.0
  port: 8000
  type: REST
  authentication_method: "JWT Bearer Token"
  credentials:
    jwt: "example-token"
  paths:
    - northbound_path: "/greet"
      southbound_path: "/hello"
      method: GET
    - northbound_path: "/greet/{name}"
      southbound_path: "/hello/{person}"
      method: GET
      parameters:
        - name: person

Usage

  1. Place the northbound.yaml and southbound.yaml configuration files in a working directory.
  2. Use the following commands to interact with AEF_GW:
  • Start the gateway (first-time setup):

    cd ./directory/with/configuration/files
    aef_gw start
    
  • Run the gateway (after initial setup):

    cd ./directory/with/configuration/files
    aef_gw run
    
  • Remove the gateway interface:

    cd ./directory/with/configuration/files
    aef_gw remove
    

Adding a New Endpoint

To add a new API endpoint:

  1. Update northbound.yaml to define the endpoint.
  2. Map the corresponding route in southbound.yaml.
  3. Start the gateway with:
    cd ./directory/with/configuration/files
    aef_gw start
    

Refreshing the Southbound JWT Token

To refresh the Southbound JWT token:

  1. Update the jwt field in the southbound.yaml file.
  2. Apply the changes with:
    cd ./directory/with/configuration/files
    aef_gw refresh
    

This ensures the new token is applied seamlessly.

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

aef_gw-0.1.12.tar.gz (15.4 kB view details)

Uploaded Source

Built Distribution

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

aef_gw-0.1.12-py3-none-any.whl (12.3 kB view details)

Uploaded Python 3

File details

Details for the file aef_gw-0.1.12.tar.gz.

File metadata

  • Download URL: aef_gw-0.1.12.tar.gz
  • Upload date:
  • Size: 15.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for aef_gw-0.1.12.tar.gz
Algorithm Hash digest
SHA256 379e4ecc5823610ea94819223982503a95b6c4c0a07308f6ce5df9fa7a53ab8b
MD5 f0653a23fcc96efd576876ef470acd41
BLAKE2b-256 20951269e34a74ac2ed3537f5cd4ae998862f86147c0e40707cf34aa9259f01a

See more details on using hashes here.

File details

Details for the file aef_gw-0.1.12-py3-none-any.whl.

File metadata

  • Download URL: aef_gw-0.1.12-py3-none-any.whl
  • Upload date:
  • Size: 12.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for aef_gw-0.1.12-py3-none-any.whl
Algorithm Hash digest
SHA256 d6220dde5a24d2c940ca0d3998a748a40a16256b35c7cee7b1d60687879cb2d2
MD5 814da29245de2ba2314f2580c19c72c8
BLAKE2b-256 e86ac39e1fe024f4f7a3418c2c23140a6c7ba7ad606ff73bdaba06b9f1b887a5

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