Files
oic_migration_api/README.md
2023-10-22 08:39:53 -03:00

21 KiB

duration, description, level, roles, products, keywords, inject-note
duration description level roles products keywords inject-note
PT1H00M0S Migrate your APIs to Oracle Cloud API Gateway with Oracle Integration Advanced Devops;Developer en/cloud/oracle-cloud-infrastructure/oci api gateway;oracle integration;APIs REST/SOAP true

Migrate your APIs to Oracle Cloud API Gateway with Oracle Integration

Introduction

The API Gateway service allows you to publish APIs with accessible private endpoints on your network and that you can expose with public IP addresses if you want them to accept internet traffic. Endpoints support API validation, request and response transformation, CORS, authentication and authorization, and request limitation.

Using the API Gateway service, you create one or more API gateways on a regional subnet to process API client traffic and route it to back-end services. You can use a single API gateway to link multiple back-end services (such as load balancers, compute instances, and OCI Functions) into a single consolidated API endpoint.

You can access the API Gateway service to define API gateways and API deployments using the Console and the REST API.

The Gateway API service is integrated with Oracle Cloud Infrastructure Identity and Access Management (IAM), which provides easy authentication with native Oracle Cloud Infrastructure identity functionality.

The OCI API Gateway allows API deployment to be done by importing a JSON structure. Here you can see what the format of this structure looks like: Creating an API Deployment Specification

{
  "requestPolicies": {},
  "routes": [
    {
      "path": "<api-route-path>",
      "methods": ["<method-list>"],
      "backend": {
        "type": "<backend-type>",
        "<backend-target>": "<identifier>"
      },
      "requestPolicies": {}
    }
  ]
}

In addition to the console, it is possible to deploy the API using the OCI CLI and also the OCI REST service for the API Gateway. Here is the documentation to understand how to deploy:

If you already have your API structure to deploy in the standard OCI API Gateway format, it is easy to deploy it using the console (import), OCI CLI or by making a REST call. And having this structure ready, it is easy to create code to process multiple JSON files. This example below demonstrates how to process files using bash script code:

#!/bin/bash
# Folder containing JSON files
folder="/<your path to the JSON Files>"
# Loop through the JSON files in the folder
for file in "$folder"/*.json; do
    service="${file##*/}"; service="${service%.*}"
    echo "Service: $service"        # Read and display the contents of the JSON file
    oci api-gateway deployment create --compartment-id ocid1.compartment.oc1..xxxxxxxxxxxxxxxxxxxxxxxxxx --display-name $service --gateway-id ocid1.apigateway.oc1.iad.xxxxxxxxxxxxxxxxxxxxxxxxxxxx --path-prefix "/$service" --specification file://$file --debug
    echo "-------------------"
done

In some situations, API metadata information will need to be handled. We could do this through code using Python, Java or another language, but the purpose of this article is to use Oracle Integration to automate it. There are several advantages to doing it this way:

  • Ease of executing REST calls from OCI API Gateway to deploy your APIs
  • Ease of mapping attributes from source to destination, including making the appropriate transformations
  • Easily implement flow to process all settings graphically

Objectives

  • Explain how to import your Legacy APIs specification to the OCI API Gateway
  • Explain the known formats and what format OCI API Gateway can import natively
  • Create an OIC process to migrate a source API deployment definition to the OCI API Gateway
  • Process many sources definitions
  • Differentiate REST and SOAP definitions
  • Map the source attributes to the target OCI API Gateway
  • Deploy into the correct environment (QA, DEV)

Prerequisites

  • An Oracle Integration instance created
  • The OCI API Gateway instances created (in this example, one for QA and other for DEV environments)

Task 1: Understand your Source API data structure

We can start from an API metadata structure. The best known definitions would be Open API or Swagger.

If you have a SWAGGER or an OpenAPI, don't worry, you can import your API data to OCI API Gateway by importing in your OCI Console, OCI CLI or OCI API Gateway REST Service. See this article to do this: Creating an API Resource with an API Description

But if you don't have these formats (Swagger/OpenAPI), you need to structure your API data definitions in another format. In this material, we will start by thinking about an Excel structure and, from this structure, transform it into JSON.

Excel_api_migration_source.png

So, there is a JSON structure to work!

[ {
  "API_NAME" : "cep",
  "TYPE" : "REST",
  "METHOD" : "GET",
  "PATH_PREFIX" : "/okecep",
  "PATH" : "/cep",
  "ENDPOINT" : "http://x.x.x.x/cep",
  "QUERY_PARAMETERS" : "cep",
  "GROOVY_SCRIPT" : "",
  "AUTHENTICATION_TYPE" : "BASIC",
  "ENVIRONMENT" : "QA",
  "HEADER" : "",
  "HEADER_VALUE" : ""
}, {
  "API_NAME" : "calculator",
  "TYPE" : "SOAP",
  "METHOD" : "POST",
  "PATH_PREFIX" : "/dneonline",
  "PATH" : "/calculator",
  "ENDPOINT" : "http://www.example.com/calculator.asmx",
  "QUERY_PARAMETERS" : "",
  "GROOVY_SCRIPT" : "",
  "AUTHENTICATION_TYPE" : "BASIC",
  "ENVIRONMENT" : "DEV",
  "HEADER" : "",
  "HEADER_VALUE" : ""
} ]

These API data structure can be find here: source_apis.json

You can structure your API definitions data in any format, here is just an example to work.

Task 2: Understand the OCI API Gateway Deployment Data

In this section, you can see the native format to import your APIs definition into the OCI API Gateway.

Often, a simple structure is enough to implement an API, but as details such as security, header rules, parameters or other details appear, the JSON structure becomes larger. Well, this would be the complete JSON structure for any type of deployment. We will use it in our OIC flow. You can find the file here: apigw_structure.json

 {
    "requestPolicies": {
      "authentication": {
        "type": "CUSTOM_AUTHENTICATION",
        "tokenHeader": "",
        "tokenQueryParam": "",
        "tokenAuthScheme": "authentication-scheme",
        "isAnonymousAccessAllowed": false,
        "functionId": "ocid1.fnfunc.oc1.phx.aaaaaaaaac2______kg6fq",
        "maxClockSkewInSeconds": 0,
        "validationPolicy": {
          "type": "REMOTE_DISCOVERY",          
          "clientDetails": {
            "type": "CUSTOM",
            "clientId": "client-id",
            "clientSecretId": "secret-ocid",
            "clientSecretVersionNumber": 0
          },          
          "sourceUriDetails": {
            "type": "DISCOVERY_URI",
            "uri": "well-known-uri"
          },
          "isSslVerifyDisabled": true,
          "maxCacheDurationInHours": 0,
          "additionalValidationPolicy": {
            "issuers": ["issuer-url", "issuer-url"],
            "audiences": ["intended-audience"],
            "verifyClaims": [{
              "key": "claim-name",
              "values": ["acceptable-value", "acceptable-value"],
              "isRequired": true
            }]
          }
        },
        "tokenHeader": "Authorization",
        "validationPolicy": {
          "type": "REMOTE_DISCOVERY",
          "clientDetails": {
            "type": "CUSTOM",
            "clientId": "5hsti38yhy5j2a4tas455rsu6ru8yui3wrst4n1",
            "clientSecretId": "ocid1.vaultsecret.oc1.iad.amaaaaaa______cggit3q",
            "clientSecretVersionNumber": 1
          },          
          "sourceUriDetails": {
            "type": "DISCOVERY_URI",
            "uri": "https://my-idp/oauth2/default/.well-known/openid-configuration"
          },
          "isSslVerifyDisabled": false,
          "maxCacheDurationInHours": 2,
          "additionalValidationPolicy": {
            "issuers": ["https://identity.oraclecloud.com/"],
            "audiences": ["api.dev.io"],
            "verifyClaims": [{
              "key": "is_admin",
              "values": ["service:app", "read:hello"],
              "isRequired": true
            }]
          }
        }
      }, 
      "mutualTls":{
        "isVerifiedCertificateRequired": true,
        "allowedSans": ["api.weather.com"]
      }
    },
    "routes": [
      {
        "path": "/weather",
        "methods": ["GET"],
        "backend": {
          "type": "HTTP_BACKEND",
          "url": "https://api.weather.gov/${request.auth[region]}"
        },
        "requestPolicies": {
          "authorization": {
            "type": "ANY_OF",
            "allowedScope": [ "weatherwatcher" ]
          },
          "headerValidations": {
            "headers": {
              "name": "header-name",
              "required": true
            },
            "validationMode": "ENFORCING|PERMISSIVE|DISABLED"
          },
          "queryParameterValidations": {
            "parameters": {
              "name": "query-parameter-name",
              "required": true
            },
            "validationMode": "ENFORCING|PERMISSIVE|DISABLED"
          },
          "bodyValidation": {
            "required": true,
            "content": {
              "media-type-1": {
                "validationType": "NONE"
              },
              "media-type-2": {
                "validationType": "NONE"
              }            
            },
            "validationMode": "ENFORCING|PERMISSIVE|DISABLED"
          },
          "headerTransformations": {
            "renameHeaders": {
              "items": [
                {
                  "from": "original-name",
                  "to": "new-name"
                }
              ]
            },
            "setHeaders": {
              "items": [
                {
                  "name": "header-name",
                  "values": ["header-value"],
                  "ifExists": "OVERWRITE|APPEND|SKIP"
                }
              ]
            }            
          },
          "queryParameterTransformations": {
            "filterQueryParameters": {
              "type": "BLOCK|ALLOW",
              "items": [
                {
                  "name": "query-parameter-name"
                }
              ]
            },
            "renameQueryParameters": {
              "items": [
                {
                  "from": "original-name",
                  "to": "new-name"
                }
              ]
            },
            "setQueryParameters": {
              "items": [
                {
                  "name": "query-parameter-name",
                  "values": ["query-parameter-value"],
                  "ifExists": "OVERWRITE|APPEND|SKIP"
                }
              ]
            }            
          }          
        },
        "responsePolicies": {
          "headerTransformations": {
            "filterHeaders": {
              "type": "BLOCK|ALLOW",
              "items": [
                {
                  "name": "header-name"
                }
              ]
            },
            "renameHeaders": {
              "items": [
                {
                  "from": "original-name",
                  "to": "new-name"
                }
              ]
            },
            "setHeaders": {
              "items": [
                {
                  "name": "header-name",
                  "values": ["header-value"],
                  "ifExists": "OVERWRITE|APPEND|SKIP"
                }
              ]
            }                        
          }
        }        
      }
    ]
  }

Task 3: Create Connections

There are 2 connections we need to create. First connection is the Trigger REST Connection. This connection will be used to expose an endpoint in Oracle Integration. With this endpoint, you can call the migration process as a REST service, passing the source data of your APIs.

The second connection will be used to call the OCI API Gateway REST service to create your APIs deployments. The OCI API Gateway REST documentation can be read here: Deploying APIs via REST

If you don't know how to create an Oracle Integration Connection, you can view here: Create a REST Connection

  1. Search the REST Adapter: connection_rest_1.png
  2. Give a name and identifier, for example, give the name "REST_EXPOSE". This is the first connection. Select the Trigger Role. Trigger Role means you will expose the connection as a REST endpoint. Connection_Rest_2.png
  3. For your Trigger Endpoint, you can execute a request with the Oracle Integration Basic Authentication. So, you can use an username and password. Connect_Rest_3.png
  4. In the second connection, as you did in the first connection, give a name and identifier (for example, "APIGW_REST_API"). Remember to select the Invoke type unlike the first configuration. Select the proper OCI API Gateway REST for your region (in the example, the region is Ashburn). See here to view the proper endpoint for your region OCI API Gateway endpoints. Obtain your OCI Credentials to provide access to the OCI API gateway services. Connection_Apigateway_Rest_Api.png

Task 4: Create the Integration

The process of migrate your APIs source metadata to the OCI API Gateway is:

  • Expose the Trigger as a REST Service in Oracle Integration
  • Initialize the Targets OCI API Gateways (environments like QA and DEV)
  • Initialize the Compartments for the targets
  • Execute a Loop to process all APIs in the source metadata
  • Translate the source metadata to the OCI API Gateway metadata
  • Execute a Request REST Service to the OCI API Gateway

Create_Integration_1.png

  1. Expose your Integration with your Trigger REST Connection created previously

Integration_1.png

  1. Give a name to your request endpoint Integration_1a.png

  2. Give a path (for example, /convert) and select the POST method. Remember to stablish a request payload. Integration_1b.png

  3. Now you can select the "JSON Sample" and paste your JSON source structure Integration_1c.png

  4. Paste the JSON here Integration_1d.png

  5. Now let's initialize the variables for your API Gateways instance (each environment is a new API Gateway instance). Create a variable for the METHOD. Remember you can use several methods in REST (GET, POST, PUT, DELETE, ANY) and need to use POST in SOAP Services.

Integration_2.png

Integration_2a.png

  1. Create a FOR EACH Loop. This will process the source JSON list

Integration_3.png

  1. Edit the For Each Action and drag and drop your Loop Level Array to the "Repeating Element" Attribute Integration_3a.png

  2. Now let's configure the environment redirection. Create a Switch Action and put the IFs and the assignments for each condition.

Integration_4.png

  1. Create the first condition for the QA environment

Integration_4a.png

  1. Verify in the source metadata ENVIRONMENT attribute and test if has "QA" value. Integration_4b.png

  2. If the condition is true, you need to assign the correct environment. A GatewayID and CompartmentID is an OCID value. You need to assign the correct IDs to the variables. Integration_4c.png

  3. Do the same for the other environments

Integration_5.png

  1. Now let's view if your API is a REST or SOAP service. If your API is a SOAP service, you must configure the Method as POST.

Integration_5a.png

  1. Create an IF condition to test the service type Integration_5b.png

  2. Assign the POST value to the method variable

Integration_5c.png

Integration_5d.png

  1. In other situations, the source attribute gives the correct method

Integration_5e.png

Integration_5f.png

  1. Let's map the source metadata attributes to the OCI API Gateway parameters. Before the mapping action, you need to configure the OCI API Gateway REST Adapter.

Integration_6.png

  1. Configure first the connection

Integration_6a.png

  1. Give a name for this service. The path must be /deployments and the method must be POST. Remember to configure the request payload.

Integration_6b.png

  1. You can't paste the JSON OCI API Gateway structure because of the large size of it. So you need to upload a file with the content. The complete JSON Structure is here apigw_structure.json

Integration_6c.png

  1. And finally, map the target metadata

Integration_6d.png

You can see the Oracle Integration artifact here OIC Migrate you Source API to OCI API Gateway. This example of artifact does not intend to be used as a final process to your migration and has only the objective to illustrate the process. Use this artifact to guide your real implementation.

Task 5: Test the migration

Now we can test the migration. If you don't know how to test your application, you can follow these steps:

Activate and Deactivate Integrations Testing REST trigger-based Integrations in OIC Console

Test_1aa.png

Fill the Body with your source JSON data

Test_1.png

Run the test and wait until the finish

Test_1a.png

Go to the OCI API Gateways instance deployments and see the creation of your APIs.

Test_2.png

Acknowledgments

  • Author - Cristiano Hoshikawa (Oracle LAD A-Team Solution Engineer)