Commit 00dd637c authored by guillecxb's avatar guillecxb
Browse files

update invoker creation

parent 7a0fae1d
Loading
Loading
Loading
Loading
Loading
+14 −87
Original line number Diff line number Diff line
@@ -2,6 +2,8 @@ import json
import time
import requests
from opencapif_sdk import capif_invoker_connector, service_discoverer
import logging


# Path to the OpenCAPIF SDK configuration file
capif_sdk_config_path = "./capif_sdk_config_sample.json"
@@ -9,97 +11,22 @@ capif_sdk_config_path = "./capif_sdk_config_sample.json"
import requests
import json

def update_token(access_token):
    """
    Update the Postman environment with the new access token.
    """
    # Your Postman API Key
    postman_api_key = "PMAK-66fd117ac0a4eb0001e7881b-ecf2b89675a6a1bfd0856838e3b1aa552a"
    
    # Postman Environment ID
    environment_id = "36540500-bfaa8442-180f-4247-892d-b0605581b6a6"
    
    # Postman API URL to modify environments
    url = f"https://api.getpostman.com/environments/{environment_id}"

    # Headers for authentication and content type
    headers = {
        "X-Api-Key": postman_api_key,
        "Content-Type": "application/json"
    }

    # Get the current environment details
    response = requests.get(url, headers=headers)
    
    # Check if the request was successful
    if response.status_code == 200:
        environment_data = response.json()

        # Check if the variable already exists
        variables = environment_data['environment']['values']
        variable_found = False
        for var in variables:
            if var['key'] == "ACCESS TOKEN":
                
                # Update both initial and current value
                var['value'] = access_token  # Set initial value
                var['current_value'] = access_token  # Set current value
                variable_found = True
                break
        
        if not variable_found:
            # If the variable doesn't exist, append it
            variables.append({
                "key": "ACCESS TOKEN",
                "value": access_token,  # Initial value
                "current_value": access_token,  # Current value
                "enabled": True
            })

        # Send the PUT request to update the environment
        updated_data = {
            "environment": {
                "name": environment_data['environment']['name'],
                "values": variables
            }
        }

        # Update the environment in Postman
        put_response = requests.put(url, headers=headers, data=json.dumps(updated_data))
        
        if put_response.status_code == 200:
            print("Access token updated successfully.")
        else:
            print(f"Error updating the variable: {put_response.status_code}")
    else:
        print(f"Error getting the environment: {response.status_code}")


if __name__ == "__main__":
    # Initialize the CAPIF invoker
    logging.basicConfig(level=logging.INFO)

    # Onboard the Invoker (creates keys, registers, obtains certs)
    capif_connector = capif_invoker_connector(config_file=capif_sdk_config_path)
    capif_connector.onboard_invoker()
    print("INVOKER ONBOARDING COMPLETED")
    # Now, with the certificates available, proceed with discovery
    print("✅ INVOKER ONBOARDING COMPLETED")

    # Discover APIs and obtain JWT token
    discoverer = service_discoverer(config_file=capif_sdk_config_path)
    discoverer.discover()
    while True:
    discoverer.get_tokens()

        """ details = discoverer.invoker_capif_details
        lenght = len(details["registered_security_contexes"])
        ip = details["registered_security_contexes"][lenght-1]["aef_profiles"][0]["ip"]
        port = details["registered_security_contexes"][lenght-1]["aef_profiles"][0]["port"]
        discoverer.check_authentication_data.update({"ip": ip, "port": port})
        discoverer.check_authentication() """

        # Load API details from the JSON file
        token = discoverer.token

        # Update the Postman token with the retrieved access token
        update_token(token)

        print(token)
    # Show the token
    print("✅ ACCESS TOKEN:")
    print(discoverer.token)

        # Wait for 599 seconds before the next update
        time.sleep(599)
    # End
    print("🎉 Script finished successfully.")