This is a Spring Boot application, written in Kotlin, used to do the heavy lifting of extracting data from upstream services and generating a PDF report. Interacts with the Subject Access Request api.
The project Confluence pages can be found here.
To build the project (without tests):
./gradlew clean build -x test
Run:
./gradlew test
To run the hmpps-subject-access-request-worker, first start the required local services using docker-compose:
docker-compose up -d
To list project dependencies, run:
./gradlew dependencies
To check for dependency updates, run:
./gradlew dependencyUpdates --warning-mode all
To run an OWASP dependency check, run:
./gradlew clean dependencyCheckAnalyze --info
To upgrade the gradle wrapper version, run:
./gradlew wrapper --gradle-version=<VERSION>
To automatically update project dependencies, run:
./gradlew useLatestVersions
To run Ktlint check:
./gradlew ktlintCheck
The worker has the roles ROLE_SAR_DATA_ACCESS, ROLE_DOCUMENT_TYPE_SAR, ROLE_PROBATION_API__SUBJECT_ACCESS_REQUEST__DETAIL, ROLE_VIEW_PRISONER_DATA and ROLE_DOCUMENT_WRITER
The service uses Sentry.IO to raise alerts in Slack and email for job failures. There is a project and team set up in Sentry specifically for this service called #subject-access-request
. You can log in (and register if need be) with your MoJ github account here.
Rules for alerts can be configured here.
For Sentry integration to work it requires the environment variable SENTRY_DSN
which is configured in Kubernetes.
There is a project for each environment, and the DSN values for each is stored in a Kubernetes secret.
This values for this can be found for dev here, for preprod here,
and for prod here.
The application sends telemetry information to Azure Application Insights which allows log queries and end-to-end request tracing across services.
https://portal.azure.com/#view/AppInsightsExtension
The sar-backlog-api-requests.http
script provides a selection of HTTP requests for the SAR Backlog API - useful for
interrogating the service locally or in an environment. The script uses the Intellij http
plugin.
The script requires environment specific configuration.
Create the following private environment file
sar-backlog-api-requests.http
in the root of the worker project with the following JSON changing the placeholders
with the appropriate values for your target environment:
{
"dev": {
"auth_host": "<URL_OF_AUTH_SERVICE>",
"basic_auth": "<YOUR_AUTH_CLIENT_BASIC_CREDENTIALS>",
"sar_worker_endpoint": "<THE_SAR_WORKER_URL>"
},
...
}
For multiple environments add block for each environment e.g
{
"dev": {
...
},
"preprod": {
...
}
...
}
To execute a request select the appropriate Environment from the Run with <ENV>
drop down at the top of the file.
.gitignore
file to ensure it is not accidentally commited.