From 1cda1ec502583345a2310a87128731650f9da6e0 Mon Sep 17 00:00:00 2001
From: gregor <gregor.schulz@holi.social>
Date: Mon, 24 Mar 2025 12:18:30 +0100
Subject: [PATCH] improve logging

---
 app/adapters/geo/GeoApiClient.test.ts |  2 +-
 app/adapters/geo/GeoApiClient.ts      | 18 ++++++++++++++----
 app/adapters/jasd/JasdGateway.ts      |  4 ++--
 app/usecases/QueryEvent.test.ts       |  6 +++---
 4 files changed, 20 insertions(+), 10 deletions(-)

diff --git a/app/adapters/geo/GeoApiClient.test.ts b/app/adapters/geo/GeoApiClient.test.ts
index a9fa64b..7e94aad 100644
--- a/app/adapters/geo/GeoApiClient.test.ts
+++ b/app/adapters/geo/GeoApiClient.test.ts
@@ -21,7 +21,7 @@ describe('GeoAPIClient', () => {
 
   beforeEach(() => {
     restore()
-    client = new GeoApiClient('http://holi.geo.gedoenz.doesntexist')
+    client = new GeoApiClient('http://holi.geo.gedoenz.doesntexist', console)
   })
 
   it('throws error for invalid response when fetching geometry', async () => {
diff --git a/app/adapters/geo/GeoApiClient.ts b/app/adapters/geo/GeoApiClient.ts
index 42153cd..950166c 100644
--- a/app/adapters/geo/GeoApiClient.ts
+++ b/app/adapters/geo/GeoApiClient.ts
@@ -1,9 +1,11 @@
 import { GeoAPIResponse, GeolocationCoordinates } from './GeoApiClient.types.ts'
 import { ResolvesCity } from '../../usecases/dependencies/ResolvesCity.ts'
 import { ResolvesCoordinates } from '../../usecases/dependencies/ResolvesCoordinates.ts'
+import { Logs } from '../../usecases/dependencies/Logs.ts'
+import { GraphQLError } from '../../deps.ts'
 
 export class GeoApiClient implements ResolvesCoordinates, ResolvesCity {
-  constructor(private readonly endpointUrl: string) {
+  constructor(private readonly endpointUrl: string, private readonly logger: Logs) {
   }
 
   async resolveCoordinates(
@@ -14,7 +16,7 @@ export class GeoApiClient implements ResolvesCoordinates, ResolvesCity {
     if (lat && lon) {
       return { lat, lon }
     } else {
-      throw new Deno.errors.NotCapable(
+      throw new GraphQLError(
         `Resolution of lat/lon failed (no data in response for geolocationId=${geolocationId})`,
       )
     }
@@ -28,7 +30,7 @@ export class GeoApiClient implements ResolvesCoordinates, ResolvesCity {
     if (city) {
       return city
     } else {
-      throw new Deno.errors.NotCapable(
+      throw new GraphQLError(
         `Resolution of city name failed (no data in response for geolocationId=${geolocationId})`,
       )
     }
@@ -46,6 +48,14 @@ export class GeoApiClient implements ResolvesCoordinates, ResolvesCity {
       },
       'method': 'POST',
     })
-    return await response.json() as GeoAPIResponse
+
+    const body = await response.json()
+
+    if (Object.hasOwn(body, 'errors')) {
+      this.logger.error(body.errors)
+      throw new GraphQLError("Can't fetchPlaceDetails for geolocationId " + geolocationId)
+    }
+
+    return body as GeoAPIResponse
   }
 }
diff --git a/app/adapters/jasd/JasdGateway.ts b/app/adapters/jasd/JasdGateway.ts
index 318c469..1e39d77 100644
--- a/app/adapters/jasd/JasdGateway.ts
+++ b/app/adapters/jasd/JasdGateway.ts
@@ -3,7 +3,7 @@ import { FetchesJasdActivities } from '../../usecases/dependencies/FetchesJasdAc
 import { Logs } from '../../usecases/dependencies/Logs.ts'
 import { FetchesJasdActivity } from '../../usecases/dependencies/FetchesJasdActivity.ts'
 import { logger } from '../Logger.ts'
-import NotFound = Deno.errors.NotFound
+import { GraphQLError } from 'npm:graphql@16.10.0'
 
 export class JasdGateway implements FetchesJasdActivities, FetchesJasdActivity {
   private readonly APP_API_BASE_URL_V1 = 'https://gemeinschaftswerk-nachhaltigkeit.de/app/api/v1'
@@ -48,7 +48,7 @@ export class JasdGateway implements FetchesJasdActivities, FetchesJasdActivity {
     try {
       const json = await response.json() as Activity
       if (!json) {
-        throw new NotFound('Not found')
+        throw new GraphQLError('Not found')
       }
       return json
 
diff --git a/app/usecases/QueryEvent.test.ts b/app/usecases/QueryEvent.test.ts
index 3e059c7..31b4a6e 100644
--- a/app/usecases/QueryEvent.test.ts
+++ b/app/usecases/QueryEvent.test.ts
@@ -1,21 +1,21 @@
 import { describe, it } from '@std/testing/bdd'
 import { assertEquals, assertRejects } from '@std/assert'
-import NotFound = Deno.errors.NotFound
 import { QueryEvent } from './QueryEvent.ts'
 import { LocalTimedActivity } from '../adapters/jasd/tests/fixtures.ts'
 import { Activity } from '../adapters/jasd/types/appapi.dto.types.ts'
+import { GraphQLError } from 'npm:graphql@16.10.0'
 
 describe('QueryEvent', () => {
   it('throws when no event can be fetched', () => {
     const jasdGatewayMock = {
       fetchActivity() {
-        return Promise.reject(new Deno.errors.NotFound())
+        return Promise.reject(new GraphQLError(''))
       },
     }
 
     const sut = new QueryEvent(jasdGatewayMock, console)
 
-    assertRejects(() => sut.execute({ id: 'iDoesNotExist' }), NotFound)
+    assertRejects(() => sut.execute({ id: 'iDoesNotExist' }), GraphQLError)
   })
 
   it('works for a jasd api response', async () => {
-- 
GitLab