This API handles callbacks from CCD for the ADOPTION case type.
┌─────────────────┐
│ │
│ADOPTION-COS-API │
│ │
└───────▲─────────┘
│
│
┌───────▼────────┐
│ │
┌─────► CCD ◄─────┐
│ │ │ │
│ └────────────────┘ │
│ │
┌───────┴─────────┐ ┌─────────┴───────┐
│ │ │ │
│ ADOPTION-WEB │ │ XUI │
│ │ │ │
└─────────────────┘ └─────────────────┘
The project uses Gradle as a build tool. It already contains
./gradlew
wrapper script, so there's no need to install gradle.
To build the project execute the following command:
./gradlew build
Create the image of the application by executing the following command:
./gradlew assemble
Create docker image:
docker-compose build
Run the distribution (created in build/install/adoption-cos-api
directory)
by executing the following command
docker-compose up
This will start the API container exposing the application's port
(set to 4550
in this template app).
The application exposes health endpoint (https://localhost:4550/health):
curl https://localhost:4550/health
You should get a response similar to this:
{"status":"UP","diskSpace":{"status":"UP","total":249644974080,"free":137188298752,"threshold":10485760}}
Preliminary steps:
-
Open file
/bin/generate-ccd-definition.sh
and amend:docker run --pull always --user $UID --rm --name json2xlsx \
by removing "--user $UID" to:
docker run --pull always --rm --name json2xlsx \
-
Then build:
./gradlew build
-
Connect to F5 VPN:
Go to the webpage https://portal.platform.hmcts.net/ and follow the instruction to connect to F5 VPN. -
Then login to the subscription (you will need to get the subscription id from another dev):
az acr login --name hmctspublic --subscription [SUBSCRIPTION ID]
You can now run the full CCD and XUI stack locally using:
./gradlew bootWithCcd
- Then you can access XUI on
https://localhost:3000
To generate the CCD JSON files from the Java Model run the following from the root of the project:
./gradlew ccd-definitions:generateCCDConfig
./gradlew generateTypeScript
The project contains the following plugins:
-
checkstyle
https://docs.gradle.org/current/userguide/checkstyle_plugin.html
Performs code style checks on Java source files using Checkstyle and generates reports from these checks. The checks are included in gradle's check task (you can run them by executing
./gradlew check
command). -
pmd
https://docs.gradle.org/current/userguide/pmd_plugin.html
Performs static code analysis to finds common programming flaws. Included in gradle
check
task. -
jacoco
https://docs.gradle.org/current/userguide/jacoco_plugin.html
Provides code coverage metrics for Java code via integration with JaCoCo. You can create the report by running the following command:
./gradlew jacocoTestReport
The report will be created in build/reports subdirectory in your project directory.
-
io.spring.dependency-management
https://github.com/spring-gradle-plugins/dependency-management-plugin
Provides Maven-like dependency management. Allows you to declare dependency management using
dependency 'groupId:artifactId:version'
ordependency group:'group', name:'name', version:version'
. -
org.springframework.boot
https://projects.spring.io/spring-boot/
Reduces the amount of work needed to create a Spring application
-
org.owasp.dependencycheck
https://jeremylong.github.io/DependencyCheck/dependency-check-gradle/index.html
Provides monitoring of the project's dependent libraries and creating a report of known vulnerable components that are included in the build. To run it execute
gradle dependencyCheck
command. -
com.github.ben-manes.versions
https://github.com/ben-manes/gradle-versions-plugin
Provides a task to determine which dependencies have updates. Usage:
./gradlew dependencyUpdates -Drevision=release
Hostname = adoption-preview.postgres.database.azure.com Port = 5432 Database Name = pr--data-store Username = hmcts SSL (Parameters) = require
Password can be found in Kubernetes Services -> preview environment -> workloads -> select deployment name adoption-cos-api-pr--ccd-data-store-api -> select pod -> select container (overview) -> environment variables tab -> click postgres link for DATA_STORE_DB_PASSWORD -> click eye to decrypt
To view the databases:
kubectl get flexibleserversdatabases -n adoption
This project is licensed under the MIT License - see the LICENSE file for details