From 148debd985f5dd22dc667fbf9cf336a9cabd8687 Mon Sep 17 00:00:00 2001 From: Igor Date: Mon, 9 Oct 2023 11:42:54 +0100 Subject: [PATCH] Publish node REST client library into GitHub Release --- .github/workflows/publish-node-client.yml | 27 +++++++- clients/node/README.md | 81 +++++++++++++++++++++++ 2 files changed, 105 insertions(+), 3 deletions(-) create mode 100644 clients/node/README.md diff --git a/.github/workflows/publish-node-client.yml b/.github/workflows/publish-node-client.yml index c0ca8fdd..8e25b8b8 100644 --- a/.github/workflows/publish-node-client.yml +++ b/.github/workflows/publish-node-client.yml @@ -6,11 +6,24 @@ jobs: build: runs-on: ubuntu-latest permissions: - contents: read + contents: write packages: write steps: - name: Checkout repository uses: actions/checkout@v4 + - name: Set version from release tag + run: | + cd clients/node + release_tag='${{ github.event.release.tag_name }}' + echo "Release tag $release_tag" + echo $release_tag | grep -E '^node-client-[0-9]+\.[0-9]+\.[0-9]+$' || { + echo 'Release tag must be in the form node-client-\d+\.\d+\.\d+' + false + } + version=${release_tag:12} + echo "Will publish version $version" + sed -i 's/"version": "0.0.0"/"version": "'$version'"/' package.json + echo "version=$version" >> "$GITHUB_ENV" - name: Setup node uses: actions/setup-node@v3 with: @@ -25,12 +38,20 @@ jobs: run: | cd clients/node npm test - - name: Build package + - name: Build library run: | cd clients/node npm run clean npm run build - - name: Publish package + npm pack + mv ministryofjustice-hmpps-non-associations-api-$version.tgz node-client.tgz + - name: Upload package to GitHub Release + run: | + cd clients/node + gh release upload ${{ github.event.release.tag_name }} node-client.tgz + env: + GH_TOKEN: ${{ github.token }} + - name: Publish package to GitHub Packages run: | cd clients/node npm publish diff --git a/clients/node/README.md b/clients/node/README.md new file mode 100644 index 00000000..49c2eb58 --- /dev/null +++ b/clients/node/README.md @@ -0,0 +1,81 @@ +HMPPS Non-associations API NodeJS REST Client +============================================= + +This library is designed to be used by DPS/HMPPS front-end applications that are based on +[hmpps-typescript-template](https://github.com/ministryofjustice/hmpps-template-typescript) +and need to access the non-associations api. + +Using the library +----------------- + +Typescript applications can install the library in several ways: + +### GitHub Packages – npm registry + +TODO + +### GitHub Releases + +TODO + +### Usage + +Applications would usually subclass the client: + +```typescript +export class Client extends NonAssociationsApi { + constructor(systemToken: string) { + super( + /** + * Provide a system token with necessary roles, not a user token + * READ_NON_ASSOCIATIONS and optionally WRITE_NON_ASSOCIATIONS + */ + systemToken, + + /** + * API configuration standard in DPS front-end apps + */ + config.apis.hmppsNonAssociationsApi, + + /** + * Logger such as standard library’s `console` or `bunyan` instance + */ + logger, + + /** + * Plugins for superagent requests, e.g. restClientMetricsMiddleware + */ + [restClientMetricsMiddleware], + ) + } +} +``` + +…and use the client in a request handler: + +```typescript +async (req, res) => { + const { user } = res.locals + const systemToken = await hmppsAuthClient.getSystemClientToken(user.username) + const api = new Client(systemToken) + const nonAssociation = await api.getNonAssociation(nonAssociationId) +} +``` + +**NB: It is left to the application to determine which actions a user is allowed to perfom!** + +General notes: + +- All prison users can _view_ all non-associations +- Users with the `NON_ASSOCIATIONS` role can _add_, _update_ and _close_ non-associations for prisoners in any of their caseloads +- Users with the `GLOBAL_SEARCH` role can _add_, _update_ and _close_ non-associations for prisoners in transfer +- Users with the `INACTIVE_BOOKINGS` role can _add_, _update_ and _close_ non-associations for prisoners outside any establishment / released + +Release a new version +--------------------- + +Do not change the version set in package.json, it should remain "0.0.0". + +- Check the latest release version and choose the next semantic versioning numbers to use +- Tag the commit to release with `node-client-[version]` replacing `[version]` with the next version, e.g. "node-client-0.1.7" +- Create a release from the tag on GitHub