Skip to content

Latest commit

 

History

History
104 lines (73 loc) · 3.8 KB

README.md

File metadata and controls

104 lines (73 loc) · 3.8 KB

Services

This library was generated with Nx.

The library uses the X-Road Service Metadata and X-Road Service Metadata for REST to collect information about services registered in the X-Road environment.

Running unit tests

Run ng test api-catalogue-services to execute the unit tests via Jest.

Usage

This library export ApiCatalogueServiceModule which depends on two environment variables to exist to configure connection to X-Road Security Server.

The variables are available from AWS Parameter Store under the /k8s/xroad-collector/ path. The variable are named:

  • XROAD_BASE_PATH
  • XROAD_CLIENT_ID

Developing

Codegen

We use codegen to generate clients from the OpenAPI documents for the two REST services X-Road provides for this metadata. In workspace.json we have setup a codegen command:

# Generates clients
yarn nx run services-xroad-collector:schemas/codegen

X-Road Security Server

There are two options while developing this service against X-Road Security Server. Either run a standalone Security Server using Docker:

# Publish the container ports (4000, 443 and 80) to localhost (loopback address)
# using the latest docker image available. See docker hub for specific tags for specific version.
docker run -p 4000:4000 -p 80:80 -p 443:443 --name ss niis/xroad-security-server-standalone

Developer can now access Security Server AdminUI on https://localhost:4000 to register custom services and clients for testing.

or connect to Stafrænt Ísland X-Road Dev environment using kubernetes port-forwarding:

# Pre-requisite: AWS authentication env params added to the current shell
# Get kubernetes namespaces from the dev cluster using AWS
aws eks update-kubeconfig --name dev-cluster01 --region eu-west-1

# Port forward to the kubernetes cluster
kubectl -n socat port-forward svc/socat-xroad 8080:80

Then to test the commands using curl in cli you can do:

# List clients
curl -H "Accept: application/json" http://localhost/listClients

# or when using IS-DEV X-Road environment
curl -H "Accept: application/json" http://localhost:8080/listClients
# List services for specific client
curl -H "Accept: application/json" -H "X-Road-Client: CS/ORG/1111/TestService" http://localhost/r1/CS/ORG/1111/TestService/listMethods

# or when using IS-DEV X-Road environment
curl -H "Accept: application/json" -H "X-Road-Client: IS-DEV/GOV/10000/island-is-client" http://localhost:8080/r1/IS-DEV/GOV/10000/island-is-protected/listMethods
# When using standalone X-Road Security Server and after adding petstore to the
# TestService using the AdminUI
curl -H "Accept: application/json" -H "X-Road-Client: CS/ORG/1111/TestService" http://localhost/r1/CS/ORG/1111/TestService/getOpenAPI?serviceCode=petstore

# or when using IS-DEV X-Road environment
curl -H "Accept: application/json" -H "X-Road-Client: IS-DEV/GOV/10000/island-is-client" http://localhost:8080/r1/IS-DEV/GOV/10000/island-is-protected/getOpenAPI?serviceCode=petstore-v1

NIIS X-Road Playground is available at: