Metadata-Version: 2.1
Name: kptl
Version: 0.10.0
Summary: A rather opinionated CLI for managing API Products in Kong Konnect.
Home-page: https://github.com/pantsel/konnect-portal-ops-cli
Author: Panagis Tselentis
Author-email: tselentispanagis@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: PyYAML==6.0.2
Requires-Dist: requests==2.32.3
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"

# Konnect Dev Portal Ops CLI <!-- omit in toc -->

A rather opinionated CLI tool for managing API products on **Konnect Developer Portals**. This tool allows you to publish, deprecate, unpublish, or delete API products and their versions based on state files.

Before using the CLI, ensure you have your developer portals set up on Konnect. For more information, see the [Konnect documentation](https://docs.konghq.com/konnect/dev-portal/).

> **Note:** The CLI is under active development. Some features may not be fully supported yet. Use responsibly and report any issues.

## Table of Contents <!-- omit in toc -->
- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)
  - [Available Commands](#available-commands)
    - [`kptl sync`](#kptl-sync)
    - [`kptl delete`](#kptl-delete)
    - [`kptl explain`](#kptl-explain)
    - [`kptl validate`](#kptl-validate)
    - [`kptl diff`](#kptl-diff)
  - [Common Arguments](#common-arguments)
  - [Examples](#examples)
    - [Sync API Product State](#sync-api-product-state)
    - [Unpublish API Product Versions](#unpublish-api-product-versions)
    - [Deprecate API Product Versions](#deprecate-api-product-versions)
    - [Link Gateway Services to API Product Versions](#link-gateway-services-to-api-product-versions)
    - [Manage API Products Documentation](#manage-api-products-documentation)
- [State File Explanation](#state-file-explanation)
  - [Version](#version)
  - [Info](#info)
  - [Documents](#documents)
  - [Portals](#portals)
  - [Versions](#versions)
- [Logging](#logging)
- [Development](#development)
  - [Requirements](#requirements)
- [Testing](#testing)

## Features

- **Publish or update API Products and Versions** on a Konnect Dev Portal.
- Link **Gateway Services** to **API Product Versions**.
- Manage **API Product Documents**.
- **Deprecate or unpublish API versions**.
- **Delete API products** and their associations.
- Supports **non-interactive modes** for automation.

## Installation

1. Install the CLI using `pip`:

    ```shell
    pip install kptl
    ```

2. (Optional) Create a `yaml` config file to set the CLI configuration variables:

    ```yaml
    # $HOME/.kptl.config.yaml
    konnect_url: https://us.api.konghq.com
    konnect_token: <your-konnect-token>
    http_proxy: http://proxy.example.com:8080 # Optional
    https_proxy: https://proxy.example.com:8080 # Optional
    ```

## Usage

```shell
kptl [command] [options]
```

### Available Commands

#### `kptl sync`

Synchronize the predefined API Product state with Konnect.

```shell
kptl sync state_file.yaml --config .config.yaml
```

#### `kptl delete`

Delete the API Product and its associations.

```shell
kptl delete product_name_or_id --config .config.yaml
```

To skip the interactive confirmation prompt, use the `--yes` flag:

```shell
kptl delete product_name_or_id --config .config.yaml --yes
```

#### `kptl explain`

Explain the API Product state file and the operations that will be performed on Konnect.

```shell
kptl explain state_file.yaml
```

#### `kptl validate`

Validate the API Product state file.

```shell
kptl validate state_file.yaml
```

#### `kptl diff`

Show the differences between the API Product state file and the current state on Konnect.

```shell
kptl diff state_file.yaml --config .config.yaml
```

### Common Arguments

| Option            | Required                         | Description                                                                |
| ----------------- | -------------------------------- | -------------------------------------------------------------------------- |
| `--konnect-token` | **Yes** (if config file not set) | The Konnect token to use for authentication.                               |
| `--konnect-url`   | **Yes** (if config file not set) | The Konnect API server URL.                                                |
| `--config`        | No                               | Path to the CLI configuration file. Defaults to `$HOME/.kptl.config.yaml`. |
| `--http-proxy`    | No                               | HTTP proxy URL.                                                            |
| `--https-proxy`   | No                               | HTTPS proxy URL.                                                           |

### Examples

#### Sync API Product State

Example state file:

```yaml
# state.yaml
_version: 1.0.0
info:
  name: HTTPBin API
  description: A simple API Product for requests to httpbin
portals:
  - portal_name: dev_portal
  - portal_name: prod_portal
versions:
  - spec: examples/api-specs/v1/httpbin.yaml
    portals:
      - portal_name: dev_portal
      - portal_name: prod_portal
  - spec: examples/api-specs/v2/httpbin.yaml
    portals:
      - portal_name: dev_portal
      - portal_name: prod_portal
```

To sync the API Product state with Konnect, run:

```shell
kptl sync state.yaml --config .config.yaml
```

#### Unpublish API Product Versions

To unpublish an API Product version from a portal, update the state file to set the `publish_status` to `unpublished` for the desired portal.

```yaml
# state.yaml
versions:
  - name: "1.0.0"
    spec: examples/api-specs/v1/httpbin.yaml
    portals:
      - portal_name: dev_portal
        publish_status: unpublished
```

Then run the sync command:

```shell
kptl sync state.yaml --config .config.yaml
```

#### Deprecate API Product Versions

To deprecate an API Product version from a portal, update the state file to set `deprecated` to `true` for the desired portal.

```yaml
# state.yaml
versions:
  - name: "1.0.0"
    spec: examples/api-specs/v1/httpbin.yaml
    portals:
      - portal_name: dev_portal
        deprecated: true
```

Then run the sync command:

```shell
kptl sync state.yaml --config .config.yaml
```

#### Link Gateway Services to API Product Versions

To link a Gateway Service to an API Product version, update the state file to include the `gateway_service` section with the appropriate `id` and `control_plane_id`.

```yaml
# state.yaml
versions:
  - name: "1.0.0"
    spec: examples/api-specs/v1/httpbin.yaml
    gateway_service:
      id: <gateway-service-id>
      control_plane_id: <control-plane-id>
```

Then run the sync command:

```shell
kptl sync state.yaml --config .config.yaml
```

#### Manage API Products Documentation

To manage API Product documents, ensure all related documents are present in a directory. The ordering and inheritance of documents are based on file name prefixes (e.g., `1_, 1.1_, 1.2_, 2_, 3_, 3.1_`). By default, all documents get published. To unpublish a document, add the `__unpublished` tag at the end of the file name. Existing API Product documents not present in the documents folder will be deleted.

For an example documents folder structure, see the [examples/products/httpbin/docs](examples/products/httpbin/docs) directory.

To sync the API Product documents, update the state file to include the `documents` section with the `sync` flag set to `true` and the `dir` pointing to the documents directory.

```yaml
# state.yaml
documents:
  sync: true
  dir: examples/products/httpbin/docs
```

Then run the sync command:

```shell
kptl sync state.yaml --config .config.yaml
```

## State File Explanation

The example state file at [examples/products/httpbin/state.yaml](examples/products/httpbin/state.yaml) defines the configuration for the HTTPBin API product.

### Version

```yaml
_version: 1.0.0
```

Specifies the version of the state file format.

- **_version**: (Required) Specifies the version of the state file format. Default is `1.0.0`.

### Info

```yaml
info:
  name: HTTPBin API
  description: A simple API Product for requests to /httpbin
```

Contains metadata about the API product, including its name and description.

- **info**: (Required) Contains metadata about the API product.
  - **name**: (Required) The name of the API product.
  - **description**: (Optional) A description of the API product.

### Documents

```yaml
documents:
  sync: true
  dir: examples/products/httpbin/docs
```

Defines the synchronization settings and directory for the API documentation.

- **documents**: (Optional) Defines the synchronization settings and directory for the API documentation.
  - **sync**: (Required) A boolean indicating whether to sync the documents.
  - **dir**: (Required) The directory where the documents are stored.

### Portals

```yaml
portals:
  - portal_name: dev_portal
  - portal_name: prod_portal
```

Lists the portals where the API product will be published, along with their publication status.

- **portals**: (Optional) Lists the portals where the API product will be published.
  - **portal_id**: (Required - if `portal_name` is not set) The ID of the portal. ID takes precedence over name for related operations.
  - **portal_name**: (Required - if `portal_id` is not set) The name of the portal. At least one of `portal_id` or `portal_name` is required.

### Versions

```yaml
versions:
  - name: "1.0.0"
    spec: examples/api-specs/v1/httpbin.yaml
    gateway_service:
      id: null
      control_plane_id: null
    portals:
      - portal_name: dev_portal
        deprecated: true
        publish_status: published
        auth_strategy_ids: []
        application_registration_enabled: false
        auto_approve_registration: false
      - portal_name: prod_portal
        deprecated: true
        publish_status: published
        auth_strategy_ids: []
        application_registration_enabled: false
        auto_approve_registration: false
  - name: "2.0.0"
    spec: examples/api-specs/v2/httpbin.yaml
    gateway_service:
      id: null
      control_plane_id: null
    portals:
      - portal_name: dev_portal
        deprecated: false
        publish_status: published
        auth_strategy_ids: []
        application_registration_enabled: false
        auto_approve_registration: false
      - portal_name: prod_portal
        deprecated: false
        publish_status: published
        auth_strategy_ids: []
        application_registration_enabled: false
        auto_approve_registration: false
```

Defines the different versions of the API product, including their specifications, gateway service details, and portal configurations. Each version can have different settings for deprecation, publication status, authentication strategies, and application registration.

- **versions**: (Required) Defines the different versions of the API product.
  - **name**: (Optional) The name of the version. Defaults to the version of the OAS file.
  - **spec**: (Required) The Open API Specification file for the version.
  - **gateway_service**: (Optional) Details of the gateway service linked to the version.
    - **id**: (Optional) The ID of the gateway service.
    - **control_plane_id**: (Optional) The control plane ID of the gateway service.
  - **portals**: (Optional) Lists the portals where the version will be published.
    - **portal_id**: (Required - if `portal_name` is not set) The ID of the portal. ID takes precedence over name for related operations.
    - **portal_name**: (Required - if `portal_id` is not set) The name of the portal. At least one of `portal_id` or `portal_name` is required.
    - **deprecated**: (Optional) A boolean indicating whether the version is deprecated. Default is `false`.
    - **publish_status**: (Optional) The publication status of the version. Default is `published`.
    - **auth_strategy_ids**: (Optional) A list of authentication strategy IDs.
    - **application_registration_enabled**: (Optional) A boolean indicating whether app registration is enabled. Default is `false`.
    - **auto_approve_registration**: (Optional) A boolean indicating whether app registration is auto-approved. Default is `false`.

## Logging

The CLI uses the `logging` module to log messages to the console. The default log level is set to `INFO`.

To change the log level, set the `LOG_LEVEL` environment variable to one of the following values: `DEBUG`, `INFO`, `WARNING`, or `ERROR`.

## Development

### Requirements

- Python 3.7+
- `PyYaml`: For parsing YAML-based files.
- `requests`: For making HTTP requests to the Konnect API.
- `deepdiff`: For calculating the differences between two objects.

1. Clone the repository:

    ```shell
    git clone https://github.com/pantsel/konnect-portal-ops-cli
    ```

2. Install the dependencies:

    ```shell
    make deps
    ```

3. Install the CLI in editable mode:

    ```shell
    cd konnect-portal-ops-cli && pip install -e .
    ```

4. You can now make changes to the code and test them by running the CLI:

    ```shell
    kptl [command] [options]
    ```

## Testing

To run the tests, use the following command from the root directory:

```shell
make test
```
