From f2b286fe1859177a8b592ebf8fec99e02f7437dc Mon Sep 17 00:00:00 2001 From: "amplication[bot]" Date: Wed, 13 Mar 2024 19:04:06 +0000 Subject: [PATCH] Amplication build # cltq665rn02e8o801sqmq6z6w Congratulations on your first commit with Amplication! We encourage you to continue exploring the many ways Amplication can supercharge your development. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If you find Amplication useful, please show your support and give our GitHub repo a star ⭐️ This simple action helps our open-source project grow and reach more developers like you. Thank you and happy coding! Build URL: [https://app.amplication.com/cltq3ezou018to801jvb7bnkf/cltq3ezyj018wo801zcjmalnd/cltq6363v0go8mn01wmywe5qg/builds/cltq665rn02e8o801sqmq6z6w](https://app.amplication.com/cltq3ezou018to801jvb7bnkf/cltq3ezyj018wo801zcjmalnd/cltq6363v0go8mn01wmywe5qg/builds/cltq665rn02e8o801sqmq6z6w) --- apps/notification-service/.dockerignore | 8 + apps/notification-service/.env | 10 + apps/notification-service/.gitignore | 5 + apps/notification-service/.prettierignore | 5 + apps/notification-service/Dockerfile | 68 ++++ apps/notification-service/README.md | 64 ++++ .../docker-compose.dev.yml | 13 + apps/notification-service/docker-compose.yml | 49 +++ apps/notification-service/nest-cli.json | 6 + apps/notification-service/package.json | 74 ++++ .../notification-service/prisma/schema.prisma | 26 ++ .../scripts/customSeed.ts | 17 + apps/notification-service/scripts/seed.ts | 49 +++ apps/notification-service/src/app.module.ts | 31 ++ .../src/auth/Credentials.ts | 21 ++ .../src/auth/IAuthStrategy.ts | 6 + .../src/auth/ITokenService.ts | 9 + .../src/auth/LoginArgs.ts | 12 + .../notification-service/src/auth/UserInfo.ts | 14 + .../src/auth/abac.util.ts | 19 ++ .../src/auth/acl.module.ts | 6 + .../src/auth/auth.controller.ts | 15 + .../src/auth/auth.module.ts | 57 ++++ .../src/auth/auth.resolver.ts | 23 ++ .../src/auth/auth.service.spec.ts | 114 +++++++ .../src/auth/auth.service.ts | 49 +++ .../src/auth/base/token.service.base.ts | 25 ++ .../src/auth/constants.ts | 2 + .../src/auth/defaultAuth.guard.ts | 27 ++ .../src/auth/gqlAC.guard.ts | 11 + .../src/auth/gqlDefaultAuth.guard.ts | 12 + .../src/auth/gqlUserRoles.decorator.ts | 19 ++ .../src/auth/jwt/base/jwt.strategy.base.ts | 40 +++ .../src/auth/jwt/jwt.strategy.ts | 14 + .../src/auth/jwt/jwtAuth.guard.ts | 3 + .../src/auth/jwt/jwtSecretFactory.ts | 19 ++ .../src/auth/password.service.spec.ts | 69 ++++ .../src/auth/password.service.ts | 64 ++++ .../src/auth/token.service.ts | 5 + .../src/auth/userData.decorator.ts | 30 ++ .../src/connectMicroservices.ts | 6 + apps/notification-service/src/constants.ts | 2 + .../decorators/api-nested-query.decorator.ts | 80 +++++ .../src/decorators/public.decorator.ts | 10 + apps/notification-service/src/errors.ts | 16 + .../src/filters/HttpExceptions.filter.ts | 89 +++++ apps/notification-service/src/grants.json | 62 ++++ .../src/health/base/health.controller.base.ts | 19 ++ .../src/health/base/health.service.base.ts | 15 + .../src/health/health.controller.ts | 10 + .../src/health/health.module.ts | 10 + .../src/health/health.service.ts | 10 + .../aclFilterResponse.interceptor.ts | 42 +++ .../aclValidateRequest.interceptor.ts | 53 +++ apps/notification-service/src/main.ts | 53 +++ .../src/message-broker/topics.ts | 3 + .../base/CreateNotificationsHistoryArgs.ts | 30 ++ .../base/DeleteNotificationsHistoryArgs.ts | 30 ++ .../base/NotificationsHistory.ts | 55 +++ .../base/NotificationsHistoryCountArgs.ts | 28 ++ .../base/NotificationsHistoryCreateInput.ts | 30 ++ .../base/NotificationsHistoryFindManyArgs.ts | 62 ++++ .../NotificationsHistoryFindUniqueArgs.ts | 30 ++ .../NotificationsHistoryListRelationFilter.ts | 56 +++ .../base/NotificationsHistoryOrderByInput.ts | 67 ++++ .../base/NotificationsHistoryUpdateInput.ts | 30 ++ .../base/NotificationsHistoryWhereInput.ts | 44 +++ .../NotificationsHistoryWhereUniqueInput.ts | 27 ++ .../base/UpdateNotificationsHistoryArgs.ts | 40 +++ ...tificationsHistory.controller.base.spec.ts | 194 +++++++++++ .../notificationsHistory.controller.base.ts | 191 +++++++++++ .../base/notificationsHistory.module.base.ts | 18 + .../base/notificationsHistory.service.base.ts | 59 ++++ .../notificationsHistory.controller.ts | 17 + .../notificationsHistory.module.ts | 13 + .../notificationsHistory.service.ts | 10 + .../src/prisma.util.spec.ts | 23 ++ apps/notification-service/src/prisma.util.ts | 29 ++ .../src/prisma/prisma.module.ts | 9 + .../src/prisma/prisma.service.ts | 9 + .../base/secretsManager.service.base.spec.ts | 41 +++ .../base/secretsManager.service.base.ts | 17 + .../secrets/secretsManager.module.ts | 8 + .../secrets/secretsManager.service.ts | 10 + .../providers/secrets/secretsNameKey.enum.ts | 3 + .../src/serveStaticOptions.service.ts | 39 +++ apps/notification-service/src/swagger.ts | 20 ++ .../src/swagger/favicon.png | Bin 0 -> 2498 bytes .../src/swagger/logo-amplication-white.svg | 15 + .../src/swagger/swagger.css | 321 ++++++++++++++++++ .../src/tests/auth/constants.ts | 19 ++ .../src/tests/auth/jwt/jwt.strategy.spec.ts | 28 ++ .../src/tests/auth/token.service.spec.ts | 47 +++ .../src/tests/health/health.service.spec.ts | 36 ++ apps/notification-service/src/types.ts | 3 + .../src/user/base/CreateUserArgs.ts | 30 ++ .../src/user/base/DeleteUserArgs.ts | 30 ++ .../src/user/base/UpdateUserArgs.ts | 40 +++ .../src/user/base/User.ts | 84 +++++ .../src/user/base/UserCountArgs.ts | 28 ++ .../src/user/base/UserCreateInput.ts | 67 ++++ .../src/user/base/UserFindManyArgs.ts | 62 ++++ .../src/user/base/UserFindUniqueArgs.ts | 30 ++ .../src/user/base/UserListRelationFilter.ts | 56 +++ .../src/user/base/UserOrderByInput.ts | 111 ++++++ .../src/user/base/UserUpdateInput.ts | 76 +++++ .../src/user/base/UserWhereInput.ts | 66 ++++ .../src/user/base/UserWhereUniqueInput.ts | 27 ++ .../user/base/user.controller.base.spec.ts | 124 +++++++ .../src/user/base/user.controller.base.ts | 30 ++ .../src/user/base/user.module.base.ts | 18 + .../src/user/base/user.service.base.ts | 74 ++++ .../src/user/user.controller.ts | 17 + .../src/user/user.module.ts | 13 + .../src/user/user.service.ts | 14 + .../src/util/BooleanFilter.ts | 32 ++ .../src/util/BooleanNullableFilter.ts | 31 ++ .../src/util/DateTimeFilter.ts | 97 ++++++ .../src/util/DateTimeNullableFilter.ts | 97 ++++++ .../src/util/FloatFilter.ts | 98 ++++++ .../src/util/FloatNullableFilter.ts | 98 ++++++ .../src/util/IntFilter.ts | 98 ++++++ .../src/util/IntNullableFilter.ts | 98 ++++++ .../src/util/JsonFilter.ts | 31 ++ .../src/util/JsonNullableFilter.ts | 31 ++ .../src/util/MetaQueryPayload.ts | 13 + .../src/util/QueryMode.ts | 10 + .../src/util/SortOrder.ts | 10 + .../src/util/StringFilter.ts | 141 ++++++++ .../src/util/StringNullableFilter.ts | 141 ++++++++ .../src/validators/index.ts | 1 + .../is-json-value-validator.spec.ts | 44 +++ .../src/validators/is-json-value-validator.ts | 29 ++ apps/notification-service/tsconfig.build.json | 4 + apps/notification-service/tsconfig.json | 21 ++ 135 files changed, 5420 insertions(+) create mode 100644 apps/notification-service/.dockerignore create mode 100644 apps/notification-service/.env create mode 100644 apps/notification-service/.gitignore create mode 100644 apps/notification-service/.prettierignore create mode 100644 apps/notification-service/Dockerfile create mode 100644 apps/notification-service/README.md create mode 100644 apps/notification-service/docker-compose.dev.yml create mode 100644 apps/notification-service/docker-compose.yml create mode 100644 apps/notification-service/nest-cli.json create mode 100644 apps/notification-service/package.json create mode 100644 apps/notification-service/prisma/schema.prisma create mode 100644 apps/notification-service/scripts/customSeed.ts create mode 100644 apps/notification-service/scripts/seed.ts create mode 100644 apps/notification-service/src/app.module.ts create mode 100644 apps/notification-service/src/auth/Credentials.ts create mode 100644 apps/notification-service/src/auth/IAuthStrategy.ts create mode 100644 apps/notification-service/src/auth/ITokenService.ts create mode 100644 apps/notification-service/src/auth/LoginArgs.ts create mode 100644 apps/notification-service/src/auth/UserInfo.ts create mode 100644 apps/notification-service/src/auth/abac.util.ts create mode 100644 apps/notification-service/src/auth/acl.module.ts create mode 100644 apps/notification-service/src/auth/auth.controller.ts create mode 100644 apps/notification-service/src/auth/auth.module.ts create mode 100644 apps/notification-service/src/auth/auth.resolver.ts create mode 100644 apps/notification-service/src/auth/auth.service.spec.ts create mode 100644 apps/notification-service/src/auth/auth.service.ts create mode 100644 apps/notification-service/src/auth/base/token.service.base.ts create mode 100644 apps/notification-service/src/auth/constants.ts create mode 100644 apps/notification-service/src/auth/defaultAuth.guard.ts create mode 100644 apps/notification-service/src/auth/gqlAC.guard.ts create mode 100644 apps/notification-service/src/auth/gqlDefaultAuth.guard.ts create mode 100644 apps/notification-service/src/auth/gqlUserRoles.decorator.ts create mode 100644 apps/notification-service/src/auth/jwt/base/jwt.strategy.base.ts create mode 100644 apps/notification-service/src/auth/jwt/jwt.strategy.ts create mode 100644 apps/notification-service/src/auth/jwt/jwtAuth.guard.ts create mode 100644 apps/notification-service/src/auth/jwt/jwtSecretFactory.ts create mode 100644 apps/notification-service/src/auth/password.service.spec.ts create mode 100644 apps/notification-service/src/auth/password.service.ts create mode 100644 apps/notification-service/src/auth/token.service.ts create mode 100644 apps/notification-service/src/auth/userData.decorator.ts create mode 100644 apps/notification-service/src/connectMicroservices.ts create mode 100644 apps/notification-service/src/constants.ts create mode 100644 apps/notification-service/src/decorators/api-nested-query.decorator.ts create mode 100644 apps/notification-service/src/decorators/public.decorator.ts create mode 100644 apps/notification-service/src/errors.ts create mode 100644 apps/notification-service/src/filters/HttpExceptions.filter.ts create mode 100644 apps/notification-service/src/grants.json create mode 100644 apps/notification-service/src/health/base/health.controller.base.ts create mode 100644 apps/notification-service/src/health/base/health.service.base.ts create mode 100644 apps/notification-service/src/health/health.controller.ts create mode 100644 apps/notification-service/src/health/health.module.ts create mode 100644 apps/notification-service/src/health/health.service.ts create mode 100644 apps/notification-service/src/interceptors/aclFilterResponse.interceptor.ts create mode 100644 apps/notification-service/src/interceptors/aclValidateRequest.interceptor.ts create mode 100644 apps/notification-service/src/main.ts create mode 100644 apps/notification-service/src/message-broker/topics.ts create mode 100644 apps/notification-service/src/notificationsHistory/base/CreateNotificationsHistoryArgs.ts create mode 100644 apps/notification-service/src/notificationsHistory/base/DeleteNotificationsHistoryArgs.ts create mode 100644 apps/notification-service/src/notificationsHistory/base/NotificationsHistory.ts create mode 100644 apps/notification-service/src/notificationsHistory/base/NotificationsHistoryCountArgs.ts create mode 100644 apps/notification-service/src/notificationsHistory/base/NotificationsHistoryCreateInput.ts create mode 100644 apps/notification-service/src/notificationsHistory/base/NotificationsHistoryFindManyArgs.ts create mode 100644 apps/notification-service/src/notificationsHistory/base/NotificationsHistoryFindUniqueArgs.ts create mode 100644 apps/notification-service/src/notificationsHistory/base/NotificationsHistoryListRelationFilter.ts create mode 100644 apps/notification-service/src/notificationsHistory/base/NotificationsHistoryOrderByInput.ts create mode 100644 apps/notification-service/src/notificationsHistory/base/NotificationsHistoryUpdateInput.ts create mode 100644 apps/notification-service/src/notificationsHistory/base/NotificationsHistoryWhereInput.ts create mode 100644 apps/notification-service/src/notificationsHistory/base/NotificationsHistoryWhereUniqueInput.ts create mode 100644 apps/notification-service/src/notificationsHistory/base/UpdateNotificationsHistoryArgs.ts create mode 100644 apps/notification-service/src/notificationsHistory/base/notificationsHistory.controller.base.spec.ts create mode 100644 apps/notification-service/src/notificationsHistory/base/notificationsHistory.controller.base.ts create mode 100644 apps/notification-service/src/notificationsHistory/base/notificationsHistory.module.base.ts create mode 100644 apps/notification-service/src/notificationsHistory/base/notificationsHistory.service.base.ts create mode 100644 apps/notification-service/src/notificationsHistory/notificationsHistory.controller.ts create mode 100644 apps/notification-service/src/notificationsHistory/notificationsHistory.module.ts create mode 100644 apps/notification-service/src/notificationsHistory/notificationsHistory.service.ts create mode 100644 apps/notification-service/src/prisma.util.spec.ts create mode 100644 apps/notification-service/src/prisma.util.ts create mode 100644 apps/notification-service/src/prisma/prisma.module.ts create mode 100644 apps/notification-service/src/prisma/prisma.service.ts create mode 100644 apps/notification-service/src/providers/secrets/base/secretsManager.service.base.spec.ts create mode 100644 apps/notification-service/src/providers/secrets/base/secretsManager.service.base.ts create mode 100644 apps/notification-service/src/providers/secrets/secretsManager.module.ts create mode 100644 apps/notification-service/src/providers/secrets/secretsManager.service.ts create mode 100644 apps/notification-service/src/providers/secrets/secretsNameKey.enum.ts create mode 100644 apps/notification-service/src/serveStaticOptions.service.ts create mode 100644 apps/notification-service/src/swagger.ts create mode 100644 apps/notification-service/src/swagger/favicon.png create mode 100644 apps/notification-service/src/swagger/logo-amplication-white.svg create mode 100644 apps/notification-service/src/swagger/swagger.css create mode 100644 apps/notification-service/src/tests/auth/constants.ts create mode 100644 apps/notification-service/src/tests/auth/jwt/jwt.strategy.spec.ts create mode 100644 apps/notification-service/src/tests/auth/token.service.spec.ts create mode 100644 apps/notification-service/src/tests/health/health.service.spec.ts create mode 100644 apps/notification-service/src/types.ts create mode 100644 apps/notification-service/src/user/base/CreateUserArgs.ts create mode 100644 apps/notification-service/src/user/base/DeleteUserArgs.ts create mode 100644 apps/notification-service/src/user/base/UpdateUserArgs.ts create mode 100644 apps/notification-service/src/user/base/User.ts create mode 100644 apps/notification-service/src/user/base/UserCountArgs.ts create mode 100644 apps/notification-service/src/user/base/UserCreateInput.ts create mode 100644 apps/notification-service/src/user/base/UserFindManyArgs.ts create mode 100644 apps/notification-service/src/user/base/UserFindUniqueArgs.ts create mode 100644 apps/notification-service/src/user/base/UserListRelationFilter.ts create mode 100644 apps/notification-service/src/user/base/UserOrderByInput.ts create mode 100644 apps/notification-service/src/user/base/UserUpdateInput.ts create mode 100644 apps/notification-service/src/user/base/UserWhereInput.ts create mode 100644 apps/notification-service/src/user/base/UserWhereUniqueInput.ts create mode 100644 apps/notification-service/src/user/base/user.controller.base.spec.ts create mode 100644 apps/notification-service/src/user/base/user.controller.base.ts create mode 100644 apps/notification-service/src/user/base/user.module.base.ts create mode 100644 apps/notification-service/src/user/base/user.service.base.ts create mode 100644 apps/notification-service/src/user/user.controller.ts create mode 100644 apps/notification-service/src/user/user.module.ts create mode 100644 apps/notification-service/src/user/user.service.ts create mode 100644 apps/notification-service/src/util/BooleanFilter.ts create mode 100644 apps/notification-service/src/util/BooleanNullableFilter.ts create mode 100644 apps/notification-service/src/util/DateTimeFilter.ts create mode 100644 apps/notification-service/src/util/DateTimeNullableFilter.ts create mode 100644 apps/notification-service/src/util/FloatFilter.ts create mode 100644 apps/notification-service/src/util/FloatNullableFilter.ts create mode 100644 apps/notification-service/src/util/IntFilter.ts create mode 100644 apps/notification-service/src/util/IntNullableFilter.ts create mode 100644 apps/notification-service/src/util/JsonFilter.ts create mode 100644 apps/notification-service/src/util/JsonNullableFilter.ts create mode 100644 apps/notification-service/src/util/MetaQueryPayload.ts create mode 100644 apps/notification-service/src/util/QueryMode.ts create mode 100644 apps/notification-service/src/util/SortOrder.ts create mode 100644 apps/notification-service/src/util/StringFilter.ts create mode 100644 apps/notification-service/src/util/StringNullableFilter.ts create mode 100644 apps/notification-service/src/validators/index.ts create mode 100644 apps/notification-service/src/validators/is-json-value-validator.spec.ts create mode 100644 apps/notification-service/src/validators/is-json-value-validator.ts create mode 100644 apps/notification-service/tsconfig.build.json create mode 100644 apps/notification-service/tsconfig.json diff --git a/apps/notification-service/.dockerignore b/apps/notification-service/.dockerignore new file mode 100644 index 0000000..cb5c30b --- /dev/null +++ b/apps/notification-service/.dockerignore @@ -0,0 +1,8 @@ +.dockerignore +docker-compose.yml +Dockerfile +dist/ +node_modules +.env +.gitignore +.prettierignore \ No newline at end of file diff --git a/apps/notification-service/.env b/apps/notification-service/.env new file mode 100644 index 0000000..16b3a59 --- /dev/null +++ b/apps/notification-service/.env @@ -0,0 +1,10 @@ +BCRYPT_SALT=10 +COMPOSE_PROJECT_NAME=amp_cltq6363v0go8mn01wmywe5qg +DB_NAME=my-db +DB_PASSWORD=admin +DB_PORT=5432 +DB_URL=postgres://admin:admin@localhost:5432/my-db +DB_USER=admin +JWT_EXPIRATION=2d +JWT_SECRET_KEY=Change_ME!!! +PORT=3000 \ No newline at end of file diff --git a/apps/notification-service/.gitignore b/apps/notification-service/.gitignore new file mode 100644 index 0000000..08c9980 --- /dev/null +++ b/apps/notification-service/.gitignore @@ -0,0 +1,5 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +/node_modules +/dist +.DS_Store diff --git a/apps/notification-service/.prettierignore b/apps/notification-service/.prettierignore new file mode 100644 index 0000000..e48f355 --- /dev/null +++ b/apps/notification-service/.prettierignore @@ -0,0 +1,5 @@ +node_modules/ +dist/ +prisma/migrations/ +package-lock.json +coverage/ \ No newline at end of file diff --git a/apps/notification-service/Dockerfile b/apps/notification-service/Dockerfile new file mode 100644 index 0000000..80dd8d3 --- /dev/null +++ b/apps/notification-service/Dockerfile @@ -0,0 +1,68 @@ +# multi-stage: base (build) +FROM node:18.13.0 AS base + +# create directory where the application will be built +WORKDIR /app + +# copy over the dependency manifests, both the package.json +# and the package-lock.json are copied over +COPY package*.json ./ + +# installs packages and their dependencies +RUN npm install + +# copy over the prisma schema +COPY prisma/schema.prisma ./prisma/ + +# generate the prisma client based on the schema +RUN npm run prisma:generate + +# copy over the code base +COPY . . + +# create the bundle of the application +RUN npm run build + +# multi-stage: production (runtime) +FROM node:18.13.0-slim AS production + +# create arguments of builds time variables +ARG user=amplication +ARG group=${user} +ARG uid=1001 +ARG gid=$uid + +# [temporary] work around to be able to run prisma +RUN apt-get update -y && apt-get install -y openssl + +# create directory where the application will be executed from +WORKDIR /app + +# add the user and group +RUN groupadd --gid ${gid} ${user} +RUN useradd --uid ${uid} --gid ${gid} -m ${user} + +# copy over the bundled code from the build stage +COPY --from=base /app/node_modules/ ./node_modules +COPY --from=base /app/package.json ./package.json +COPY --from=base /app/dist ./dist +COPY --from=base /app/prisma ./prisma +COPY --from=base /app/scripts ./scripts +COPY --from=base /app/src ./src +COPY --from=base /app/tsconfig* ./ + +# change ownership of the workspace directory +RUN chown -R ${uid}:${gid} /app/ + +# get rid of the development dependencies +RUN npm install --production + +# set user to the created non-privileged user +USER ${user} + +# expose a specific port on the docker container +ENV PORT=3000 +EXPOSE ${PORT} + +# start the server using the previously build application +CMD [ "node", "./dist/main.js" ] diff --git a/apps/notification-service/README.md b/apps/notification-service/README.md new file mode 100644 index 0000000..6db8e75 --- /dev/null +++ b/apps/notification-service/README.md @@ -0,0 +1,64 @@ +

+ + amplication-logo + +

+ +# Introduction + +This service was generated with Amplication. The server-side of the generated project. This component provides the different backend services - i.e., REST API, GraphQL API, authentication, authorization, logging, data validation and the connection to the database. Additional information about the server component and the architecture around it, can be found on the [documentation](https://docs.amplication.com/guides/getting-started) site. + +# Getting started + +## Step 1: Configuration + +Configuration for the server component can be provided through the use of environment variables. These can be passed to the application via the use of the `.env` file in the base directory of the generated service. Below a table can be found which show the different variables that can be passed - these are the variables which exist by default, through the use of plugins additional integrations could require additional values. These values are provided default values after generation, change them to the desired values. + +| Variable | Description | Value | +| -------------------- | -------------------------------------------- | ------------------------------------------------------------------- | +| BCRYPT_SALT | the string used for hashing | [random-string] | +| COMPOSE_PROJECT_NAME | the identifier of the service plus prefix | amp_[service-identifier] | +| PORT | the port on which to run the server | 3000 | +| DB_URL | the connection url for the database | [db-provider]://[username]:[password]@localhost:[db-port]/[db-name] | +| DB_PORT | the port used by the database instance | [db-provider-port] | +| DB_USER | the username used to connect to the database | [username] | +| DB_PASSWORD | the password used to connect to the database | [password] | +| DB_NAME | the name of the database | [service-name] / [project-name] | +| JWT_SECRET_KEY | the secret used to sign the json-web token | [secret] | +| JWT_EXPIRATION | the expiration time for the json-web token | 2d | + +> **Note** +> Amplication generates default values and stores them under the .env file. It is advised to use some form of secrets manager/vault solution when using in production. + +## Step 2.1: Scripts - pre-requisites + +After configuration of the server the next step would be to run the application. Before running the server side of the component, make sure that the different pre-requisites are met - i.e., node.js [^16.x], npm, docker. After the setup of the pre-requisites the server component can be started. + +```sh +# installation of the dependencies +$ npm install + +# generate the prisma client +$ npm run prisma:generate +``` + +## Step 2.2: Scripts - local development + +```sh +# start the database where the server component will connect to +$ npm run docker:dev + +# initialize the database +$ npm run db:init + +# start the server component +$ npm run start +``` +By default, your app comes with one user with the username "admin" and password "admin". + +## Step 2.2: Scripts - container based development + +```shell +# start the server component as a docker container +$ npm run compose:up +``` diff --git a/apps/notification-service/docker-compose.dev.yml b/apps/notification-service/docker-compose.dev.yml new file mode 100644 index 0000000..8d7c358 --- /dev/null +++ b/apps/notification-service/docker-compose.dev.yml @@ -0,0 +1,13 @@ +version: "3" +services: + db: + image: postgres:12 + ports: + - ${DB_PORT}:5432 + environment: + POSTGRES_USER: ${DB_USER} + POSTGRES_PASSWORD: ${DB_PASSWORD} + volumes: + - postgres:/var/lib/postgresql/data +volumes: + postgres: ~ diff --git a/apps/notification-service/docker-compose.yml b/apps/notification-service/docker-compose.yml new file mode 100644 index 0000000..189f745 --- /dev/null +++ b/apps/notification-service/docker-compose.yml @@ -0,0 +1,49 @@ +version: "3" +services: + server: + build: + context: . + args: + NPM_LOG_LEVEL: notice + ports: + - ${PORT}:3000 + environment: + BCRYPT_SALT: ${BCRYPT_SALT} + DB_URL: postgres://${DB_USER}:${DB_PASSWORD}@db:5432/${DB_NAME} + JWT_SECRET_KEY: ${JWT_SECRET_KEY} + JWT_EXPIRATION: ${JWT_EXPIRATION} + depends_on: + - migrate + restart: on-failure + migrate: + build: + context: . + args: + NPM_LOG_LEVEL: notice + command: npm run db:init + working_dir: /app/server + environment: + BCRYPT_SALT: ${BCRYPT_SALT} + DB_URL: postgres://${DB_USER}:${DB_PASSWORD}@db:5432/${DB_NAME} + depends_on: + db: + condition: service_healthy + db: + image: postgres:12 + ports: + - ${DB_PORT}:5432 + environment: + POSTGRES_USER: ${DB_USER} + POSTGRES_PASSWORD: ${DB_PASSWORD} + POSTGRES_DB: ${DB_NAME} + volumes: + - postgres:/var/lib/postgresql/data + healthcheck: + test: + - CMD-SHELL + - pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER} + timeout: 45s + interval: 10s + retries: 10 +volumes: + postgres: ~ diff --git a/apps/notification-service/nest-cli.json b/apps/notification-service/nest-cli.json new file mode 100644 index 0000000..fe51713 --- /dev/null +++ b/apps/notification-service/nest-cli.json @@ -0,0 +1,6 @@ +{ + "sourceRoot": "src", + "compilerOptions": { + "assets": ["swagger"] + } +} diff --git a/apps/notification-service/package.json b/apps/notification-service/package.json new file mode 100644 index 0000000..731db7b --- /dev/null +++ b/apps/notification-service/package.json @@ -0,0 +1,74 @@ +{ + "name": "@notification-service/server", + "private": true, + "scripts": { + "start": "nest start", + "start:watch": "nest start --watch", + "start:debug": "nest start --debug --watch", + "build": "nest build", + "test": "jest", + "seed": "ts-node scripts/seed.ts", + "db:migrate-save": "prisma migrate dev", + "db:migrate-up": "prisma migrate deploy", + "db:clean": "prisma migrate reset", + "db:init": "run-s \"db:migrate-save -- --name 'initial version'\" db:migrate-up seed", + "prisma:generate": "prisma generate", + "docker:dev": "docker-compose -f docker-compose.dev.yml up -d", + "package:container": "docker build .", + "compose:up": "docker-compose up -d", + "compose:down": "docker-compose down --volumes" + }, + "dependencies": { + "@apollo/server": "^4.9.4", + "@nestjs/apollo": "12.0.9", + "@nestjs/common": "10.2.7", + "@nestjs/config": "3.1.1", + "@nestjs/core": "10.2.7", + "@nestjs/graphql": "12.0.9", + "@nestjs/jwt": "^10.1.1", + "@nestjs/passport": "^10.0.2", + "@nestjs/platform-express": "10.2.7", + "@nestjs/serve-static": "4.0.0", + "@nestjs/swagger": "7.1.13", + "@prisma/client": "^5.4.2", + "@types/bcrypt": "5.0.0", + "bcrypt": "5.1.1", + "class-transformer": "0.5.1", + "class-validator": "0.14.0", + "dotenv": "16.3.1", + "graphql": "^16.8.1", + "graphql-type-json": "0.3.2", + "nest-access-control": "^3.1.0", + "npm-run-all": "4.1.5", + "passport": "0.6.0", + "passport-http": "0.3.0", + "passport-jwt": "4.0.1", + "reflect-metadata": "0.1.13", + "ts-node": "10.9.1", + "type-fest": "2.19.0", + "validator": "13.11.0" + }, + "devDependencies": { + "@nestjs/cli": "^10.1.18", + "@nestjs/testing": "^10.2.7", + "@types/express": "^4.17.19", + "@types/graphql-type-json": "0.3.3", + "@types/jest": "^29.5.5", + "@types/normalize-path": "3.0.0", + "@types/passport-http": "0.3.9", + "@types/passport-jwt": "3.0.10", + "@types/supertest": "^2.0.14", + "@types/validator": "^13.11.2", + "jest": "^29.7.0", + "jest-mock-extended": "^3.0.5", + "prisma": "^5.4.2", + "supertest": "^6.3.3", + "ts-jest": "^29.1.1", + "typescript": "~5.3.0" + }, + "jest": { + "preset": "ts-jest", + "testEnvironment": "node", + "modulePathIgnorePatterns": ["/dist/"] + } +} diff --git a/apps/notification-service/prisma/schema.prisma b/apps/notification-service/prisma/schema.prisma new file mode 100644 index 0000000..9369eb0 --- /dev/null +++ b/apps/notification-service/prisma/schema.prisma @@ -0,0 +1,26 @@ +datasource db { + provider = "postgresql" + url = env("DB_URL") +} + +generator client { + provider = "prisma-client-js" +} + +model User { + createdAt DateTime @default(now()) + firstName String? + id String @id @default(cuid()) + lastName String? + password String + roles Json + updatedAt DateTime @updatedAt + username String @unique +} + +model NotificationsHistory { + createdAt DateTime @default(now()) + id String @id @default(cuid()) + text String? + updatedAt DateTime @updatedAt +} diff --git a/apps/notification-service/scripts/customSeed.ts b/apps/notification-service/scripts/customSeed.ts new file mode 100644 index 0000000..6baf5f6 --- /dev/null +++ b/apps/notification-service/scripts/customSeed.ts @@ -0,0 +1,17 @@ +import { PrismaClient } from "@prisma/client"; + +export async function customSeed() { + const client = new PrismaClient(); + const username = "admin"; + + //replace this sample code to populate your database + //with data that is required for your service to start + await client.user.update({ + where: { username: username }, + data: { + username, + }, + }); + + client.$disconnect(); +} diff --git a/apps/notification-service/scripts/seed.ts b/apps/notification-service/scripts/seed.ts new file mode 100644 index 0000000..272dddd --- /dev/null +++ b/apps/notification-service/scripts/seed.ts @@ -0,0 +1,49 @@ +import * as dotenv from "dotenv"; +import { PrismaClient } from "@prisma/client"; +import { customSeed } from "./customSeed"; +import { Salt, parseSalt } from "../src/auth/password.service"; +import { hash } from "bcrypt"; + +if (require.main === module) { + dotenv.config(); + + const { BCRYPT_SALT } = process.env; + + if (!BCRYPT_SALT) { + throw new Error("BCRYPT_SALT environment variable must be defined"); + } + const salt = parseSalt(BCRYPT_SALT); + + seed(salt).catch((error) => { + console.error(error); + process.exit(1); + }); +} + +async function seed(bcryptSalt: Salt) { + console.info("Seeding database..."); + + const client = new PrismaClient(); + + const data = { + username: "admin", + password: await hash("admin", bcryptSalt), + roles: ["user"], + }; + + await client.user.upsert({ + where: { + username: data.username, + }, + + update: {}, + create: data, + }); + + void client.$disconnect(); + + console.info("Seeding database with custom seed..."); + customSeed(); + + console.info("Seeded database successfully"); +} diff --git a/apps/notification-service/src/app.module.ts b/apps/notification-service/src/app.module.ts new file mode 100644 index 0000000..7526477 --- /dev/null +++ b/apps/notification-service/src/app.module.ts @@ -0,0 +1,31 @@ +import { Module } from "@nestjs/common"; +import { UserModule } from "./user/user.module"; +import { NotificationsHistoryModule } from "./notificationsHistory/notificationsHistory.module"; +import { HealthModule } from "./health/health.module"; +import { PrismaModule } from "./prisma/prisma.module"; +import { SecretsManagerModule } from "./providers/secrets/secretsManager.module"; +import { ServeStaticModule } from "@nestjs/serve-static"; +import { ServeStaticOptionsService } from "./serveStaticOptions.service"; +import { ConfigModule } from "@nestjs/config"; + +import { ACLModule } from "./auth/acl.module"; +import { AuthModule } from "./auth/auth.module"; + +@Module({ + controllers: [], + imports: [ + ACLModule, + AuthModule, + UserModule, + NotificationsHistoryModule, + HealthModule, + PrismaModule, + SecretsManagerModule, + ConfigModule.forRoot({ isGlobal: true }), + ServeStaticModule.forRootAsync({ + useClass: ServeStaticOptionsService, + }), + ], + providers: [], +}) +export class AppModule {} diff --git a/apps/notification-service/src/auth/Credentials.ts b/apps/notification-service/src/auth/Credentials.ts new file mode 100644 index 0000000..9ac6798 --- /dev/null +++ b/apps/notification-service/src/auth/Credentials.ts @@ -0,0 +1,21 @@ +import { ApiProperty } from "@nestjs/swagger"; +import { InputType, Field } from "@nestjs/graphql"; +import { IsString } from "class-validator"; + +@InputType() +export class Credentials { + @ApiProperty({ + required: true, + type: String, + }) + @IsString() + @Field(() => String, { nullable: false }) + username!: string; + @ApiProperty({ + required: true, + type: String, + }) + @IsString() + @Field(() => String, { nullable: false }) + password!: string; +} diff --git a/apps/notification-service/src/auth/IAuthStrategy.ts b/apps/notification-service/src/auth/IAuthStrategy.ts new file mode 100644 index 0000000..7406267 --- /dev/null +++ b/apps/notification-service/src/auth/IAuthStrategy.ts @@ -0,0 +1,6 @@ +import { UserInfo } from "./UserInfo"; + +export interface IAuthStrategy { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + validate: (...any: any) => Promise; +} diff --git a/apps/notification-service/src/auth/ITokenService.ts b/apps/notification-service/src/auth/ITokenService.ts new file mode 100644 index 0000000..7983189 --- /dev/null +++ b/apps/notification-service/src/auth/ITokenService.ts @@ -0,0 +1,9 @@ +export interface ITokenPayload { + id: string; + username: string; + password: string; +} + +export interface ITokenService { + createToken: ({ id, username, password }: ITokenPayload) => Promise; +} diff --git a/apps/notification-service/src/auth/LoginArgs.ts b/apps/notification-service/src/auth/LoginArgs.ts new file mode 100644 index 0000000..66a0b2f --- /dev/null +++ b/apps/notification-service/src/auth/LoginArgs.ts @@ -0,0 +1,12 @@ +import { ArgsType, Field } from "@nestjs/graphql"; +import { ValidateNested } from "class-validator"; +import { Type } from "class-transformer"; +import { Credentials } from "./Credentials"; + +@ArgsType() +export class LoginArgs { + @Field(() => Credentials, { nullable: false }) + @Type(() => Credentials) + @ValidateNested() + credentials!: Credentials; +} diff --git a/apps/notification-service/src/auth/UserInfo.ts b/apps/notification-service/src/auth/UserInfo.ts new file mode 100644 index 0000000..ef61dc4 --- /dev/null +++ b/apps/notification-service/src/auth/UserInfo.ts @@ -0,0 +1,14 @@ +import { Field, ObjectType } from "@nestjs/graphql"; +import { User } from "../user/base/User"; + +@ObjectType() +export class UserInfo implements Partial { + @Field(() => String) + id!: string; + @Field(() => String) + username!: string; + @Field(() => [String]) + roles!: string[]; + @Field(() => String, { nullable: true }) + accessToken?: string; +} diff --git a/apps/notification-service/src/auth/abac.util.ts b/apps/notification-service/src/auth/abac.util.ts new file mode 100644 index 0000000..2f0dcab --- /dev/null +++ b/apps/notification-service/src/auth/abac.util.ts @@ -0,0 +1,19 @@ +import { Permission } from "accesscontrol"; + +/** + * @returns attributes not allowed to appear on given data according to given + * attributeMatchers + */ +export function getInvalidAttributes( + permission: Permission, + // eslint-disable-next-line @typescript-eslint/ban-types + data: Object +): string[] { + // The structuredClone call is necessary because the + // `Permission.filter` function doesn't consider objects + // with null prototypes. And in graphql requests, the + // object passed here by the request interceptor is an object + // with a null prototype. + const filteredData = permission.filter(structuredClone(data)); + return Object.keys(data).filter((key) => !(key in filteredData)); +} diff --git a/apps/notification-service/src/auth/acl.module.ts b/apps/notification-service/src/auth/acl.module.ts new file mode 100644 index 0000000..040e7e5 --- /dev/null +++ b/apps/notification-service/src/auth/acl.module.ts @@ -0,0 +1,6 @@ +import { AccessControlModule, RolesBuilder } from "nest-access-control"; + +import grants from "../grants.json"; + +// eslint-disable-next-line @typescript-eslint/naming-convention +export const ACLModule = AccessControlModule.forRoles(new RolesBuilder(grants)); diff --git a/apps/notification-service/src/auth/auth.controller.ts b/apps/notification-service/src/auth/auth.controller.ts new file mode 100644 index 0000000..7ae732f --- /dev/null +++ b/apps/notification-service/src/auth/auth.controller.ts @@ -0,0 +1,15 @@ +import { Body, Controller, Post } from "@nestjs/common"; +import { ApiTags } from "@nestjs/swagger"; +import { AuthService } from "./auth.service"; +import { Credentials } from "../auth/Credentials"; +import { UserInfo } from "./UserInfo"; + +@ApiTags("auth") +@Controller() +export class AuthController { + constructor(private readonly authService: AuthService) {} + @Post("login") + async login(@Body() body: Credentials): Promise { + return this.authService.login(body); + } +} diff --git a/apps/notification-service/src/auth/auth.module.ts b/apps/notification-service/src/auth/auth.module.ts new file mode 100644 index 0000000..d69fd95 --- /dev/null +++ b/apps/notification-service/src/auth/auth.module.ts @@ -0,0 +1,57 @@ +import { forwardRef, Module } from "@nestjs/common"; +import { ConfigService } from "@nestjs/config"; +import { JwtModule } from "@nestjs/jwt"; +import { PassportModule } from "@nestjs/passport"; +import { JWT_EXPIRATION } from "../constants"; +import { SecretsManagerModule } from "../providers/secrets/secretsManager.module"; +import { SecretsManagerService } from "../providers/secrets/secretsManager.service"; +import { EnumSecretsNameKey } from "../providers/secrets/secretsNameKey.enum"; +import { AuthController } from "./auth.controller"; +import { AuthResolver } from "./auth.resolver"; +import { AuthService } from "./auth.service"; +import { JwtStrategy } from "./jwt/jwt.strategy"; +import { jwtSecretFactory } from "./jwt/jwtSecretFactory"; +import { PasswordService } from "./password.service"; +import { TokenService } from "./token.service"; +import { UserModule } from "../user/user.module"; +@Module({ + imports: [ + forwardRef(() => UserModule), + PassportModule, + SecretsManagerModule, + JwtModule.registerAsync({ + imports: [SecretsManagerModule], + inject: [SecretsManagerService, ConfigService], + useFactory: async ( + secretsService: SecretsManagerService, + configService: ConfigService + ) => { + const secret = await secretsService.getSecret( + EnumSecretsNameKey.JwtSecretKey + ); + const expiresIn = configService.get(JWT_EXPIRATION); + if (!secret) { + throw new Error("Didn't get a valid jwt secret"); + } + if (!expiresIn) { + throw new Error("Jwt expire in value is not valid"); + } + return { + secret: secret, + signOptions: { expiresIn }, + }; + }, + }), + ], + providers: [ + AuthService, + PasswordService, + AuthResolver, + JwtStrategy, + jwtSecretFactory, + TokenService, + ], + controllers: [AuthController], + exports: [AuthService, PasswordService], +}) +export class AuthModule {} diff --git a/apps/notification-service/src/auth/auth.resolver.ts b/apps/notification-service/src/auth/auth.resolver.ts new file mode 100644 index 0000000..c186f41 --- /dev/null +++ b/apps/notification-service/src/auth/auth.resolver.ts @@ -0,0 +1,23 @@ +import * as common from "@nestjs/common"; +import { Args, Mutation, Query, Resolver } from "@nestjs/graphql"; +import * as gqlACGuard from "../auth/gqlAC.guard"; +import { AuthService } from "./auth.service"; +import { GqlDefaultAuthGuard } from "./gqlDefaultAuth.guard"; +import { UserData } from "./userData.decorator"; +import { LoginArgs } from "./LoginArgs"; +import { UserInfo } from "./UserInfo"; + +@Resolver(UserInfo) +export class AuthResolver { + constructor(private readonly authService: AuthService) {} + @Mutation(() => UserInfo) + async login(@Args() args: LoginArgs): Promise { + return this.authService.login(args.credentials); + } + + @Query(() => UserInfo) + @common.UseGuards(GqlDefaultAuthGuard, gqlACGuard.GqlACGuard) + async userInfo(@UserData() entityInfo: UserInfo): Promise { + return entityInfo; + } +} diff --git a/apps/notification-service/src/auth/auth.service.spec.ts b/apps/notification-service/src/auth/auth.service.spec.ts new file mode 100644 index 0000000..90b04f4 --- /dev/null +++ b/apps/notification-service/src/auth/auth.service.spec.ts @@ -0,0 +1,114 @@ +import { Test, TestingModule } from "@nestjs/testing"; +import { AuthService } from "./auth.service"; +import { Credentials } from "./Credentials"; +import { PasswordService } from "./password.service"; +import { TokenService } from "./token.service"; +import { VALID_ID } from "../tests/auth/constants"; +import { UserService } from "../user/user.service"; + +const VALID_CREDENTIALS: Credentials = { + username: "Valid User", + password: "Valid User Password", +}; +const INVALID_CREDENTIALS: Credentials = { + username: "Invalid User", + password: "Invalid User Password", +}; +const USER: any = { + ...VALID_CREDENTIALS, + createdAt: new Date(), + firstName: "ofek", + id: VALID_ID, + lastName: "gabay", + roles: ["admin"], + updatedAt: new Date(), +}; + +const SIGN_TOKEN = "SIGN_TOKEN"; + +const authEntityService = { + user(args: { where: { username: string } }): any | null { + if (args.where.username === VALID_CREDENTIALS.username) { + return USER; + } + return null; + }, +}; + +const passwordService = { + compare(password: string, encrypted: string) { + return true; + }, +}; + +const tokenService = { + createToken(username: string, password: string) { + return SIGN_TOKEN; + }, +}; + +describe("AuthService", () => { + //ARRANGE + let service: AuthService; + beforeEach(async () => { + const module: TestingModule = await Test.createTestingModule({ + providers: [ + { + provide: UserService, + useValue: authEntityService, + }, + { + provide: PasswordService, + useValue: passwordService, + }, + { + provide: TokenService, + useValue: tokenService, + }, + AuthService, + ], + }).compile(); + + service = module.get(AuthService); + }); + + it("should be defined", () => { + expect(service).toBeDefined(); + }); + + describe("Testing the authService.validateUser()", () => { + it("should validate a valid user", async () => { + await expect( + service.validateUser( + VALID_CREDENTIALS.username, + VALID_CREDENTIALS.password + ) + ).resolves.toEqual({ + username: USER.username, + roles: USER.roles, + id: USER.id, + }); + }); + + it("should not validate a invalid user", async () => { + await expect( + service.validateUser( + INVALID_CREDENTIALS.username, + INVALID_CREDENTIALS.password + ) + ).resolves.toBe(null); + }); + }); + + describe("Testing the authService.login()", () => { + it("should return userInfo object for correct username and password", async () => { + const loginResult = await service.login(VALID_CREDENTIALS); + expect(loginResult).toEqual({ + username: USER.username, + roles: USER.roles, + accessToken: SIGN_TOKEN, + id: USER.id, + }); + }); + }); +}); diff --git a/apps/notification-service/src/auth/auth.service.ts b/apps/notification-service/src/auth/auth.service.ts new file mode 100644 index 0000000..9f6add2 --- /dev/null +++ b/apps/notification-service/src/auth/auth.service.ts @@ -0,0 +1,49 @@ +import { Injectable, UnauthorizedException } from "@nestjs/common"; +import { Credentials } from "./Credentials"; +import { PasswordService } from "./password.service"; +import { TokenService } from "./token.service"; +import { UserInfo } from "./UserInfo"; +import { UserService } from "../user/user.service"; + +@Injectable() +export class AuthService { + constructor( + private readonly passwordService: PasswordService, + private readonly tokenService: TokenService, + private readonly userService: UserService + ) {} + + async validateUser( + username: string, + password: string + ): Promise { + const user = await this.userService.user({ + where: { username }, + }); + if (user && (await this.passwordService.compare(password, user.password))) { + const { id, roles } = user; + const roleList = roles as string[]; + return { id, username, roles: roleList }; + } + return null; + } + async login(credentials: Credentials): Promise { + const { username, password } = credentials; + const user = await this.validateUser( + credentials.username, + credentials.password + ); + if (!user) { + throw new UnauthorizedException("The passed credentials are incorrect"); + } + const accessToken = await this.tokenService.createToken({ + id: user.id, + username, + password, + }); + return { + accessToken, + ...user, + }; + } +} diff --git a/apps/notification-service/src/auth/base/token.service.base.ts b/apps/notification-service/src/auth/base/token.service.base.ts new file mode 100644 index 0000000..f25fdb5 --- /dev/null +++ b/apps/notification-service/src/auth/base/token.service.base.ts @@ -0,0 +1,25 @@ +/* eslint-disable import/no-unresolved */ +import { Injectable } from "@nestjs/common"; +import { JwtService } from "@nestjs/jwt"; +import { INVALID_PASSWORD_ERROR, INVALID_USERNAME_ERROR } from "../constants"; +import { ITokenService, ITokenPayload } from "../ITokenService"; +/** + * TokenServiceBase is a jwt bearer implementation of ITokenService + */ +@Injectable() +export class TokenServiceBase implements ITokenService { + constructor(protected readonly jwtService: JwtService) {} + /** + * + * @object { id: String, username: String, password: String} + * @returns a jwt token sign with the username and user id + */ + createToken({ id, username, password }: ITokenPayload): Promise { + if (!username) return Promise.reject(INVALID_USERNAME_ERROR); + if (!password) return Promise.reject(INVALID_PASSWORD_ERROR); + return this.jwtService.signAsync({ + sub: id, + username, + }); + } +} diff --git a/apps/notification-service/src/auth/constants.ts b/apps/notification-service/src/auth/constants.ts new file mode 100644 index 0000000..59f9f7d --- /dev/null +++ b/apps/notification-service/src/auth/constants.ts @@ -0,0 +1,2 @@ +export const INVALID_USERNAME_ERROR = "Invalid username"; +export const INVALID_PASSWORD_ERROR = "Invalid password"; diff --git a/apps/notification-service/src/auth/defaultAuth.guard.ts b/apps/notification-service/src/auth/defaultAuth.guard.ts new file mode 100644 index 0000000..33a530c --- /dev/null +++ b/apps/notification-service/src/auth/defaultAuth.guard.ts @@ -0,0 +1,27 @@ +import { Observable } from "rxjs"; +import { ExecutionContext, Injectable } from "@nestjs/common"; +import { Reflector } from "@nestjs/core"; +import { IS_PUBLIC_KEY } from "../decorators/public.decorator"; +import { JwtAuthGuard } from "./jwt/jwtAuth.guard"; + +@Injectable() +export class DefaultAuthGuard extends JwtAuthGuard { + constructor(private readonly reflector: Reflector) { + super(); + } + + canActivate( + context: ExecutionContext + ): boolean | Promise | Observable { + const isPublic = this.reflector.get( + IS_PUBLIC_KEY, + context.getHandler() + ); + + if (isPublic) { + return true; + } + + return super.canActivate(context); + } +} diff --git a/apps/notification-service/src/auth/gqlAC.guard.ts b/apps/notification-service/src/auth/gqlAC.guard.ts new file mode 100644 index 0000000..dacac55 --- /dev/null +++ b/apps/notification-service/src/auth/gqlAC.guard.ts @@ -0,0 +1,11 @@ +import { ExecutionContext } from "@nestjs/common"; +import { GqlExecutionContext } from "@nestjs/graphql"; +import { ACGuard } from "nest-access-control"; + +export class GqlACGuard extends ACGuard { + async getUser(context: ExecutionContext): Promise { + const ctx = GqlExecutionContext.create(context); + const request = ctx.getContext<{ req: { user: User } }>().req; + return request.user; + } +} diff --git a/apps/notification-service/src/auth/gqlDefaultAuth.guard.ts b/apps/notification-service/src/auth/gqlDefaultAuth.guard.ts new file mode 100644 index 0000000..abebd93 --- /dev/null +++ b/apps/notification-service/src/auth/gqlDefaultAuth.guard.ts @@ -0,0 +1,12 @@ +import { ExecutionContext } from "@nestjs/common"; +import { GqlExecutionContext } from "@nestjs/graphql"; +import type { Request } from "express"; +import { DefaultAuthGuard } from "./defaultAuth.guard"; + +export class GqlDefaultAuthGuard extends DefaultAuthGuard { + // This method is required for the interface - do not delete it. + getRequest(context: ExecutionContext): Request { + const ctx = GqlExecutionContext.create(context); + return ctx.getContext<{ req: Request }>().req; + } +} diff --git a/apps/notification-service/src/auth/gqlUserRoles.decorator.ts b/apps/notification-service/src/auth/gqlUserRoles.decorator.ts new file mode 100644 index 0000000..5ea256b --- /dev/null +++ b/apps/notification-service/src/auth/gqlUserRoles.decorator.ts @@ -0,0 +1,19 @@ +import { createParamDecorator, ExecutionContext } from "@nestjs/common"; +import { GqlExecutionContext } from "@nestjs/graphql"; + +/** + * Access the user roles from the request object i.e `req.user.roles`. + * + * You can pass an optional property key to the decorator to get it from the user object + * e.g `@UserRoles('permissions')` will return the `req.user.permissions` instead. + */ +export const UserRoles = createParamDecorator( + (data: string, context: ExecutionContext) => { + const ctx = GqlExecutionContext.create(context); + const request = ctx.getContext<{ req: { user: any } }>().req; + if (!request.user) { + return null; + } + return data ? request.user[data] : request.user.roles; + } +); diff --git a/apps/notification-service/src/auth/jwt/base/jwt.strategy.base.ts b/apps/notification-service/src/auth/jwt/base/jwt.strategy.base.ts new file mode 100644 index 0000000..26da6a7 --- /dev/null +++ b/apps/notification-service/src/auth/jwt/base/jwt.strategy.base.ts @@ -0,0 +1,40 @@ +import { UnauthorizedException } from "@nestjs/common"; +import { PassportStrategy } from "@nestjs/passport"; +import { ExtractJwt, Strategy } from "passport-jwt"; +import { IAuthStrategy } from "../../IAuthStrategy"; +import { UserInfo } from "../../UserInfo"; +import { UserService } from "../../../user/user.service"; + +export class JwtStrategyBase + extends PassportStrategy(Strategy) + implements IAuthStrategy +{ + constructor( + protected readonly secretOrKey: string, + protected readonly userService: UserService + ) { + super({ + jwtFromRequest: ExtractJwt.fromAuthHeaderAsBearerToken(), + ignoreExpiration: false, + secretOrKey, + }); + } + + async validate(payload: UserInfo): Promise { + const { username } = payload; + const user = await this.userService.user({ + where: { username }, + }); + if (!user) { + throw new UnauthorizedException(); + } + if ( + !Array.isArray(user.roles) || + typeof user.roles !== "object" || + user.roles === null + ) { + throw new Error("User roles is not a valid value"); + } + return { ...user, roles: user.roles as string[] }; + } +} diff --git a/apps/notification-service/src/auth/jwt/jwt.strategy.ts b/apps/notification-service/src/auth/jwt/jwt.strategy.ts new file mode 100644 index 0000000..13395e5 --- /dev/null +++ b/apps/notification-service/src/auth/jwt/jwt.strategy.ts @@ -0,0 +1,14 @@ +import { Inject, Injectable } from "@nestjs/common"; +import { JWT_SECRET_KEY_PROVIDER_NAME } from "../../constants"; +import { JwtStrategyBase } from "./base/jwt.strategy.base"; +import { UserService } from "../../user/user.service"; + +@Injectable() +export class JwtStrategy extends JwtStrategyBase { + constructor( + @Inject(JWT_SECRET_KEY_PROVIDER_NAME) secretOrKey: string, + protected readonly userService: UserService + ) { + super(secretOrKey, userService); + } +} diff --git a/apps/notification-service/src/auth/jwt/jwtAuth.guard.ts b/apps/notification-service/src/auth/jwt/jwtAuth.guard.ts new file mode 100644 index 0000000..f0c5570 --- /dev/null +++ b/apps/notification-service/src/auth/jwt/jwtAuth.guard.ts @@ -0,0 +1,3 @@ +import { AuthGuard } from "@nestjs/passport"; + +export class JwtAuthGuard extends AuthGuard("jwt") {} diff --git a/apps/notification-service/src/auth/jwt/jwtSecretFactory.ts b/apps/notification-service/src/auth/jwt/jwtSecretFactory.ts new file mode 100644 index 0000000..8ca4d74 --- /dev/null +++ b/apps/notification-service/src/auth/jwt/jwtSecretFactory.ts @@ -0,0 +1,19 @@ +import { JWT_SECRET_KEY_PROVIDER_NAME } from "../../constants"; +import { SecretsManagerService } from "../../providers/secrets/secretsManager.service"; +import { EnumSecretsNameKey } from "../../providers/secrets/secretsNameKey.enum"; + +export const jwtSecretFactory = { + provide: JWT_SECRET_KEY_PROVIDER_NAME, + useFactory: async ( + secretsService: SecretsManagerService + ): Promise => { + const secret = await secretsService.getSecret( + EnumSecretsNameKey.JwtSecretKey + ); + if (secret) { + return secret; + } + throw new Error("jwtSecretFactory missing secret"); + }, + inject: [SecretsManagerService], +}; diff --git a/apps/notification-service/src/auth/password.service.spec.ts b/apps/notification-service/src/auth/password.service.spec.ts new file mode 100644 index 0000000..309c8c0 --- /dev/null +++ b/apps/notification-service/src/auth/password.service.spec.ts @@ -0,0 +1,69 @@ +import { ConfigService } from "@nestjs/config"; +import { Test, TestingModule } from "@nestjs/testing"; +import { PasswordService } from "./password.service"; + +const EXAMPLE_PASSWORD = "examplePassword"; +const EXAMPLE_HASHED_PASSWORD = "exampleHashedPassword"; + +const EXAMPLE_SALT_OR_ROUNDS = 1; + +const configServiceGetMock = jest.fn(() => { + return EXAMPLE_SALT_OR_ROUNDS; +}); + +jest.mock("bcrypt", () => ({ + hash: jest.fn(), + compare: jest.fn(), +})); + +const { hash, compare } = jest.requireMock("bcrypt"); + +hash.mockImplementation(async () => EXAMPLE_HASHED_PASSWORD); + +compare.mockImplementation(async () => true); + +describe("PasswordService", () => { + let service: PasswordService; + + beforeEach(async () => { + jest.clearAllMocks(); + const module: TestingModule = await Test.createTestingModule({ + providers: [ + PasswordService, + { + provide: ConfigService, + useClass: jest.fn(() => ({ + get: configServiceGetMock, + })), + }, + ], + imports: [], + }).compile(); + + service = module.get(PasswordService); + }); + + it("should be defined", () => { + expect(service).toBeDefined(); + }); + + it("should have salt defined", () => { + expect(service.salt).toEqual(EXAMPLE_SALT_OR_ROUNDS); + }); + + it("should compare a password", async () => { + const args = { + password: EXAMPLE_PASSWORD, + hashedPassword: EXAMPLE_HASHED_PASSWORD, + }; + await expect( + service.compare(args.password, args.hashedPassword) + ).resolves.toEqual(true); + }); + + it("should hash a password", async () => { + await expect(service.hash(EXAMPLE_PASSWORD)).resolves.toEqual( + EXAMPLE_HASHED_PASSWORD + ); + }); +}); diff --git a/apps/notification-service/src/auth/password.service.ts b/apps/notification-service/src/auth/password.service.ts new file mode 100644 index 0000000..377b64b --- /dev/null +++ b/apps/notification-service/src/auth/password.service.ts @@ -0,0 +1,64 @@ +import { Injectable } from "@nestjs/common"; +import { hash, compare } from "bcrypt"; +import { ConfigService } from "@nestjs/config"; + +/** Salt or number of rounds to generate a salt */ +export type Salt = string | number; + +const BCRYPT_SALT_VAR = "BCRYPT_SALT"; +const UNDEFINED_SALT_OR_ROUNDS_ERROR = `${BCRYPT_SALT_VAR} is not defined`; +const SALT_OR_ROUNDS_TYPE_ERROR = `${BCRYPT_SALT_VAR} must be a positive integer or text`; + +@Injectable() +export class PasswordService { + /** + * the salt to be used to hash the password. if specified as a number then a + * salt will be generated with the specified number of rounds and used + */ + salt: Salt; + + constructor(private configService: ConfigService) { + const saltOrRounds = this.configService.get(BCRYPT_SALT_VAR); + this.salt = parseSalt(saltOrRounds); + } + + /** + * + * @param password the password to be encrypted. + * @param encrypted the encrypted password to be compared against. + * @returns whether the password match the encrypted password + */ + compare(password: string, encrypted: string): Promise { + return compare(password, encrypted); + } + + /** + * @param password the password to be encrypted + * @return encrypted password + */ + hash(password: string): Promise { + return hash(password, this.salt); + } +} + +/** + * Parses a salt environment variable value. + * If a number string value is given tries to parse it as a number of rounds to generate a salt + * @param value salt environment variable value + * @returns salt or number of rounds to generate a salt + */ +export function parseSalt(value: string | undefined): Salt { + if (value === undefined) { + throw new Error(UNDEFINED_SALT_OR_ROUNDS_ERROR); + } + + const rounds = Number(value); + + if (Number.isNaN(rounds)) { + return value; + } + if (!Number.isInteger(rounds) || rounds < 0) { + throw new Error(SALT_OR_ROUNDS_TYPE_ERROR); + } + return rounds; +} diff --git a/apps/notification-service/src/auth/token.service.ts b/apps/notification-service/src/auth/token.service.ts new file mode 100644 index 0000000..2ee079c --- /dev/null +++ b/apps/notification-service/src/auth/token.service.ts @@ -0,0 +1,5 @@ +import { ITokenService } from "./ITokenService"; + +import { TokenServiceBase } from "./base/token.service.base"; + +export class TokenService extends TokenServiceBase implements ITokenService {} diff --git a/apps/notification-service/src/auth/userData.decorator.ts b/apps/notification-service/src/auth/userData.decorator.ts new file mode 100644 index 0000000..6a40ad1 --- /dev/null +++ b/apps/notification-service/src/auth/userData.decorator.ts @@ -0,0 +1,30 @@ +import { createParamDecorator, ExecutionContext } from "@nestjs/common"; +import { GqlContextType, GqlExecutionContext } from "@nestjs/graphql"; +import { User } from "@prisma/client"; + +/** + * Access the user data from the request object i.e `req.user`. + */ +function userFactory(ctx: ExecutionContext): User { + const contextType = ctx.getType(); + if (contextType === "http") { + // do something that is only important in the context of regular HTTP requests (REST) + const { user } = ctx.switchToHttp().getRequest(); + return user; + } else if (contextType === "rpc") { + // do something that is only important in the context of Microservice requests + throw new Error("Rpc context is not implemented yet"); + } else if (contextType === "ws") { + // do something that is only important in the context of Websockets requests + throw new Error("Websockets context is not implemented yet"); + } else if (ctx.getType() === "graphql") { + // do something that is only important in the context of GraphQL requests + const gqlExecutionContext = GqlExecutionContext.create(ctx); + return gqlExecutionContext.getContext().req.user; + } + throw new Error("Invalid context"); +} + +export const UserData = createParamDecorator( + (data, ctx: ExecutionContext) => userFactory(ctx) +); diff --git a/apps/notification-service/src/connectMicroservices.ts b/apps/notification-service/src/connectMicroservices.ts new file mode 100644 index 0000000..068fa5f --- /dev/null +++ b/apps/notification-service/src/connectMicroservices.ts @@ -0,0 +1,6 @@ +import { INestApplication } from "@nestjs/common"; +import { ConfigService } from "@nestjs/config"; + +export async function connectMicroservices(app: INestApplication) { + const configService = app.get(ConfigService); +} diff --git a/apps/notification-service/src/constants.ts b/apps/notification-service/src/constants.ts new file mode 100644 index 0000000..e131049 --- /dev/null +++ b/apps/notification-service/src/constants.ts @@ -0,0 +1,2 @@ +export const JWT_SECRET_KEY_PROVIDER_NAME = "JWT_SECRET_KEY"; +export const JWT_EXPIRATION = "JWT_EXPIRATION"; diff --git a/apps/notification-service/src/decorators/api-nested-query.decorator.ts b/apps/notification-service/src/decorators/api-nested-query.decorator.ts new file mode 100644 index 0000000..9fd5ba3 --- /dev/null +++ b/apps/notification-service/src/decorators/api-nested-query.decorator.ts @@ -0,0 +1,80 @@ +import { applyDecorators } from "@nestjs/common"; +import { + ApiExtraModels, + ApiQuery, + ApiQueryOptions, + getSchemaPath, +} from "@nestjs/swagger"; +import "reflect-metadata"; + +const generateApiQueryObject = ( + prop: any, + propType: any, + required: boolean, + isArray: boolean +): ApiQueryOptions => { + if (propType === Number) { + return { + required, + name: prop, + style: "deepObject", + explode: true, + type: "number", + isArray, + }; + } else if (propType === String) { + return { + required, + name: prop, + style: "deepObject", + explode: true, + type: "string", + isArray, + }; + } else { + return { + required, + name: prop, + style: "deepObject", + explode: true, + type: "object", + isArray, + schema: { + $ref: getSchemaPath(propType), + }, + }; + } +}; + +// eslint-disable-next-line @typescript-eslint/ban-types,@typescript-eslint/explicit-module-boundary-types,@typescript-eslint/naming-convention +export function ApiNestedQuery(query: Function) { + const constructor = query.prototype; + const properties = Reflect.getMetadata( + "swagger/apiModelPropertiesArray", + constructor + ).map((prop: any) => prop.slice(1)); + + const decorators = properties + .map((property: any) => { + const { required, isArray } = Reflect.getMetadata( + "swagger/apiModelProperties", + constructor, + property + ); + const propertyType = Reflect.getMetadata( + "design:type", + constructor, + property + ); + const typedQuery = generateApiQueryObject( + property, + propertyType, + required, + isArray + ); + return [ApiExtraModels(propertyType), ApiQuery(typedQuery)]; + }) + .flat(); + + return applyDecorators(...decorators); +} diff --git a/apps/notification-service/src/decorators/public.decorator.ts b/apps/notification-service/src/decorators/public.decorator.ts new file mode 100644 index 0000000..9eab4e0 --- /dev/null +++ b/apps/notification-service/src/decorators/public.decorator.ts @@ -0,0 +1,10 @@ +import { applyDecorators, SetMetadata } from "@nestjs/common"; + +export const IS_PUBLIC_KEY = "isPublic"; + +const PublicAuthMiddleware = SetMetadata(IS_PUBLIC_KEY, true); +const PublicAuthSwagger = SetMetadata("swagger/apiSecurity", ["isPublic"]); + +// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types +export const Public = () => + applyDecorators(PublicAuthMiddleware, PublicAuthSwagger); diff --git a/apps/notification-service/src/errors.ts b/apps/notification-service/src/errors.ts new file mode 100644 index 0000000..bd1aa6d --- /dev/null +++ b/apps/notification-service/src/errors.ts @@ -0,0 +1,16 @@ +import * as common from "@nestjs/common"; +import { ApiProperty } from "@nestjs/swagger"; + +export class ForbiddenException extends common.ForbiddenException { + @ApiProperty() + statusCode!: number; + @ApiProperty() + message!: string; +} + +export class NotFoundException extends common.NotFoundException { + @ApiProperty() + statusCode!: number; + @ApiProperty() + message!: string; +} diff --git a/apps/notification-service/src/filters/HttpExceptions.filter.ts b/apps/notification-service/src/filters/HttpExceptions.filter.ts new file mode 100644 index 0000000..f5eda8e --- /dev/null +++ b/apps/notification-service/src/filters/HttpExceptions.filter.ts @@ -0,0 +1,89 @@ +import { + ArgumentsHost, + Catch, + HttpException, + HttpServer, + HttpStatus, +} from "@nestjs/common"; +import { BaseExceptionFilter } from "@nestjs/core"; +import { Prisma } from "@prisma/client"; +import { Response } from "express"; + +export type ErrorCodesStatusMapping = { + [key: string]: number; +}; + +/** + * {@link PrismaClientExceptionFilter} handling {@link Prisma.PrismaClientKnownRequestError} exceptions. + */ +@Catch(Prisma?.PrismaClientKnownRequestError) +export class HttpExceptionFilter extends BaseExceptionFilter { + /** + * default error codes mapping + * + * Error codes definition for Prisma Client (Query Engine) + * @see https://www.prisma.io/docs/reference/api-reference/error-reference#prisma-client-query-engine + */ + private errorCodesStatusMapping: ErrorCodesStatusMapping = { + P2000: HttpStatus.BAD_REQUEST, + P2002: HttpStatus.CONFLICT, + P2025: HttpStatus.NOT_FOUND, + }; + + /** + * @param applicationRef + */ + // eslint-disable-next-line @typescript-eslint/no-useless-constructor + constructor(applicationRef?: HttpServer) { + super(applicationRef); + } + + /** + * @param exception + * @param host + * @returns + */ + // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types + catch(exception: Prisma.PrismaClientKnownRequestError, host: ArgumentsHost) { + const statusCode = this.errorCodesStatusMapping[exception.code]; + let message; + if (host.getType() === "http") { + // for http requests (REST) + // Todo : Add all other exception types and also add mapping + const ctx = host.switchToHttp(); + const response = ctx.getResponse(); + if (exception.code === "P2002") { + // Handling Unique Key Constraint Violation Error + const fields = (exception.meta as { target: string[] }).target; + message = `Another record with the requested (${fields.join( + ", " + )}) already exists`; + } else { + message = + `[${exception.code}]: ` + + this.exceptionShortMessage(exception.message); + } + if (!Object.keys(this.errorCodesStatusMapping).includes(exception.code)) { + return super.catch(exception, host); + } + const errorResponse = { + message: message, + statusCode: statusCode, + }; + response.status(statusCode).send(errorResponse); + } + return new HttpException({ statusCode, message }, statusCode); + } + + /** + * @param exception + * @returns short message for the exception + */ + exceptionShortMessage(message: string): string { + const shortMessage = message.substring(message.indexOf("→")); + return shortMessage + .substring(shortMessage.indexOf("\n")) + .replace(/\n/g, "") + .trim(); + } +} diff --git a/apps/notification-service/src/grants.json b/apps/notification-service/src/grants.json new file mode 100644 index 0000000..22398d2 --- /dev/null +++ b/apps/notification-service/src/grants.json @@ -0,0 +1,62 @@ +[ + { + "role": "user", + "resource": "User", + "action": "read:own", + "attributes": "*" + }, + { + "role": "user", + "resource": "User", + "action": "create:any", + "attributes": "*" + }, + { + "role": "user", + "resource": "User", + "action": "update:any", + "attributes": "*" + }, + { + "role": "user", + "resource": "User", + "action": "delete:any", + "attributes": "*" + }, + { + "role": "user", + "resource": "User", + "action": "read:any", + "attributes": "*" + }, + { + "role": "user", + "resource": "NotificationsHistory", + "action": "read:own", + "attributes": "*" + }, + { + "role": "user", + "resource": "NotificationsHistory", + "action": "create:any", + "attributes": "*" + }, + { + "role": "user", + "resource": "NotificationsHistory", + "action": "update:any", + "attributes": "*" + }, + { + "role": "user", + "resource": "NotificationsHistory", + "action": "delete:any", + "attributes": "*" + }, + { + "role": "user", + "resource": "NotificationsHistory", + "action": "read:any", + "attributes": "*" + } +] diff --git a/apps/notification-service/src/health/base/health.controller.base.ts b/apps/notification-service/src/health/base/health.controller.base.ts new file mode 100644 index 0000000..afd9e0d --- /dev/null +++ b/apps/notification-service/src/health/base/health.controller.base.ts @@ -0,0 +1,19 @@ +import { Get, HttpStatus, Res } from "@nestjs/common"; +import { Response } from "express"; +import { HealthService } from "../health.service"; + +export class HealthControllerBase { + constructor(protected readonly healthService: HealthService) {} + @Get("live") + healthLive(@Res() response: Response): Response { + return response.status(HttpStatus.NO_CONTENT).send(); + } + @Get("ready") + async healthReady(@Res() response: Response): Promise> { + const dbConnection = await this.healthService.isDbReady(); + if (!dbConnection) { + return response.status(HttpStatus.NOT_FOUND).send(); + } + return response.status(HttpStatus.NO_CONTENT).send(); + } +} diff --git a/apps/notification-service/src/health/base/health.service.base.ts b/apps/notification-service/src/health/base/health.service.base.ts new file mode 100644 index 0000000..49a93a5 --- /dev/null +++ b/apps/notification-service/src/health/base/health.service.base.ts @@ -0,0 +1,15 @@ +import { Injectable } from "@nestjs/common"; +import { PrismaService } from "../../prisma/prisma.service"; + +@Injectable() +export class HealthServiceBase { + constructor(protected readonly prisma: PrismaService) {} + async isDbReady(): Promise { + try { + await this.prisma.$queryRaw`SELECT 1`; + return true; + } catch (error) { + return false; + } + } +} diff --git a/apps/notification-service/src/health/health.controller.ts b/apps/notification-service/src/health/health.controller.ts new file mode 100644 index 0000000..ff484e7 --- /dev/null +++ b/apps/notification-service/src/health/health.controller.ts @@ -0,0 +1,10 @@ +import { Controller } from "@nestjs/common"; +import { HealthControllerBase } from "./base/health.controller.base"; +import { HealthService } from "./health.service"; + +@Controller("_health") +export class HealthController extends HealthControllerBase { + constructor(protected readonly healthService: HealthService) { + super(healthService); + } +} diff --git a/apps/notification-service/src/health/health.module.ts b/apps/notification-service/src/health/health.module.ts new file mode 100644 index 0000000..39eff7f --- /dev/null +++ b/apps/notification-service/src/health/health.module.ts @@ -0,0 +1,10 @@ +import { Module } from "@nestjs/common"; +import { HealthController } from "./health.controller"; +import { HealthService } from "./health.service"; + +@Module({ + controllers: [HealthController], + providers: [HealthService], + exports: [HealthService], +}) +export class HealthModule {} diff --git a/apps/notification-service/src/health/health.service.ts b/apps/notification-service/src/health/health.service.ts new file mode 100644 index 0000000..44d9343 --- /dev/null +++ b/apps/notification-service/src/health/health.service.ts @@ -0,0 +1,10 @@ +import { Injectable } from "@nestjs/common"; +import { PrismaService } from "../prisma/prisma.service"; +import { HealthServiceBase } from "./base/health.service.base"; + +@Injectable() +export class HealthService extends HealthServiceBase { + constructor(protected readonly prisma: PrismaService) { + super(prisma); + } +} diff --git a/apps/notification-service/src/interceptors/aclFilterResponse.interceptor.ts b/apps/notification-service/src/interceptors/aclFilterResponse.interceptor.ts new file mode 100644 index 0000000..5eeba18 --- /dev/null +++ b/apps/notification-service/src/interceptors/aclFilterResponse.interceptor.ts @@ -0,0 +1,42 @@ +import { + CallHandler, + ExecutionContext, + Injectable, + NestInterceptor, +} from "@nestjs/common"; +import { Observable } from "rxjs"; +import { map } from "rxjs/operators"; +import { InjectRolesBuilder, RolesBuilder } from "nest-access-control"; +import { Reflector } from "@nestjs/core"; + +@Injectable() +export class AclFilterResponseInterceptor implements NestInterceptor { + constructor( + @InjectRolesBuilder() private readonly rolesBuilder: RolesBuilder, + private readonly reflector: Reflector + ) {} + + intercept(context: ExecutionContext, next: CallHandler): Observable { + const [permissionsRoles]: any = this.reflector.getAllAndMerge( + "roles", + [context.getHandler(), context.getClass()] + ); + + const permission = this.rolesBuilder.permission({ + role: permissionsRoles.role, + action: permissionsRoles.action, + possession: permissionsRoles.possession, + resource: permissionsRoles.resource, + }); + + return next.handle().pipe( + map((data) => { + if (Array.isArray(data)) { + return data.map((results: any) => permission.filter(results)); + } else { + return permission.filter(data); + } + }) + ); + } +} diff --git a/apps/notification-service/src/interceptors/aclValidateRequest.interceptor.ts b/apps/notification-service/src/interceptors/aclValidateRequest.interceptor.ts new file mode 100644 index 0000000..6d30246 --- /dev/null +++ b/apps/notification-service/src/interceptors/aclValidateRequest.interceptor.ts @@ -0,0 +1,53 @@ +import { + CallHandler, + ExecutionContext, + Injectable, + NestInterceptor, +} from "@nestjs/common"; +import { Observable } from "rxjs"; +import { InjectRolesBuilder, RolesBuilder } from "nest-access-control"; +import { Reflector } from "@nestjs/core"; +import * as abacUtil from "../auth/abac.util"; +import { ForbiddenException } from "../errors"; + +@Injectable() +export class AclValidateRequestInterceptor implements NestInterceptor { + constructor( + @InjectRolesBuilder() private readonly rolesBuilder: RolesBuilder, + private readonly reflector: Reflector + ) {} + + intercept(context: ExecutionContext, next: CallHandler): Observable { + const [permissionsRoles]: any = this.reflector.getAllAndMerge( + "roles", + [context.getHandler(), context.getClass()] + ); + + const type = context.getType(); + + const inputDataToValidate = + type === "http" + ? context.switchToHttp().getRequest().body + : context.getArgByIndex(1).data; + + const permission = this.rolesBuilder.permission({ + role: permissionsRoles.role, + action: permissionsRoles.action, + possession: permissionsRoles.possession, + resource: permissionsRoles.resource, + }); + + const invalidAttributes = abacUtil.getInvalidAttributes( + permission, + inputDataToValidate + ); + + if (invalidAttributes.length) { + throw new ForbiddenException( + "Insufficient privileges to complete the operation" + ); + } + + return next.handle(); + } +} diff --git a/apps/notification-service/src/main.ts b/apps/notification-service/src/main.ts new file mode 100644 index 0000000..474eead --- /dev/null +++ b/apps/notification-service/src/main.ts @@ -0,0 +1,53 @@ +import { ValidationPipe } from "@nestjs/common"; +import { HttpAdapterHost, NestFactory } from "@nestjs/core"; +import { OpenAPIObject, SwaggerModule } from "@nestjs/swagger"; +import { HttpExceptionFilter } from "./filters/HttpExceptions.filter"; +import { AppModule } from "./app.module"; +import { connectMicroservices } from "./connectMicroservices"; +import { + swaggerPath, + swaggerDocumentOptions, + swaggerSetupOptions, +} from "./swagger"; + +const { PORT = 3000 } = process.env; + +async function main() { + const app = await NestFactory.create(AppModule, { cors: true }); + + app.setGlobalPrefix("api"); + app.useGlobalPipes( + new ValidationPipe({ + transform: true, + forbidUnknownValues: false, + }) + ); + + const document = SwaggerModule.createDocument(app, swaggerDocumentOptions); + + /** check if there is Public decorator for each path (action) and its method (findMany / findOne) on each controller */ + Object.values((document as OpenAPIObject).paths).forEach((path: any) => { + Object.values(path).forEach((method: any) => { + if ( + Array.isArray(method.security) && + method.security.includes("isPublic") + ) { + method.security = []; + } + }); + }); + + await connectMicroservices(app); + await app.startAllMicroservices(); + + SwaggerModule.setup(swaggerPath, app, document, swaggerSetupOptions); + + const { httpAdapter } = app.get(HttpAdapterHost); + app.useGlobalFilters(new HttpExceptionFilter(httpAdapter)); + + void app.listen(PORT); + + return app; +} + +module.exports = main(); diff --git a/apps/notification-service/src/message-broker/topics.ts b/apps/notification-service/src/message-broker/topics.ts new file mode 100644 index 0000000..18856be --- /dev/null +++ b/apps/notification-service/src/message-broker/topics.ts @@ -0,0 +1,3 @@ +export enum MyMessageBrokerTopics { + OrderEvents = "order_events", +} diff --git a/apps/notification-service/src/notificationsHistory/base/CreateNotificationsHistoryArgs.ts b/apps/notification-service/src/notificationsHistory/base/CreateNotificationsHistoryArgs.ts new file mode 100644 index 0000000..ce93f20 --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/base/CreateNotificationsHistoryArgs.ts @@ -0,0 +1,30 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { ArgsType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { NotificationsHistoryCreateInput } from "./NotificationsHistoryCreateInput"; +import { ValidateNested } from "class-validator"; +import { Type } from "class-transformer"; + +@ArgsType() +class CreateNotificationsHistoryArgs { + @ApiProperty({ + required: true, + type: () => NotificationsHistoryCreateInput, + }) + @ValidateNested() + @Type(() => NotificationsHistoryCreateInput) + @Field(() => NotificationsHistoryCreateInput, { nullable: false }) + data!: NotificationsHistoryCreateInput; +} + +export { CreateNotificationsHistoryArgs as CreateNotificationsHistoryArgs }; diff --git a/apps/notification-service/src/notificationsHistory/base/DeleteNotificationsHistoryArgs.ts b/apps/notification-service/src/notificationsHistory/base/DeleteNotificationsHistoryArgs.ts new file mode 100644 index 0000000..199df78 --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/base/DeleteNotificationsHistoryArgs.ts @@ -0,0 +1,30 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { ArgsType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { NotificationsHistoryWhereUniqueInput } from "./NotificationsHistoryWhereUniqueInput"; +import { ValidateNested } from "class-validator"; +import { Type } from "class-transformer"; + +@ArgsType() +class DeleteNotificationsHistoryArgs { + @ApiProperty({ + required: true, + type: () => NotificationsHistoryWhereUniqueInput, + }) + @ValidateNested() + @Type(() => NotificationsHistoryWhereUniqueInput) + @Field(() => NotificationsHistoryWhereUniqueInput, { nullable: false }) + where!: NotificationsHistoryWhereUniqueInput; +} + +export { DeleteNotificationsHistoryArgs as DeleteNotificationsHistoryArgs }; diff --git a/apps/notification-service/src/notificationsHistory/base/NotificationsHistory.ts b/apps/notification-service/src/notificationsHistory/base/NotificationsHistory.ts new file mode 100644 index 0000000..f6cf0e2 --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/base/NotificationsHistory.ts @@ -0,0 +1,55 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { ObjectType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsDate, IsString, IsOptional } from "class-validator"; +import { Type } from "class-transformer"; + +@ObjectType() +class NotificationsHistory { + @ApiProperty({ + required: true, + }) + @IsDate() + @Type(() => Date) + @Field(() => Date) + createdAt!: Date; + + @ApiProperty({ + required: true, + type: String, + }) + @IsString() + @Field(() => String) + id!: string; + + @ApiProperty({ + required: false, + type: String, + }) + @IsString() + @IsOptional() + @Field(() => String, { + nullable: true, + }) + text!: string | null; + + @ApiProperty({ + required: true, + }) + @IsDate() + @Type(() => Date) + @Field(() => Date) + updatedAt!: Date; +} + +export { NotificationsHistory as NotificationsHistory }; diff --git a/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryCountArgs.ts b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryCountArgs.ts new file mode 100644 index 0000000..f9a7eb4 --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryCountArgs.ts @@ -0,0 +1,28 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { ArgsType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { NotificationsHistoryWhereInput } from "./NotificationsHistoryWhereInput"; +import { Type } from "class-transformer"; + +@ArgsType() +class NotificationsHistoryCountArgs { + @ApiProperty({ + required: false, + type: () => NotificationsHistoryWhereInput, + }) + @Field(() => NotificationsHistoryWhereInput, { nullable: true }) + @Type(() => NotificationsHistoryWhereInput) + where?: NotificationsHistoryWhereInput; +} + +export { NotificationsHistoryCountArgs as NotificationsHistoryCountArgs }; diff --git a/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryCreateInput.ts b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryCreateInput.ts new file mode 100644 index 0000000..43ffec8 --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryCreateInput.ts @@ -0,0 +1,30 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { InputType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsString, IsOptional } from "class-validator"; + +@InputType() +class NotificationsHistoryCreateInput { + @ApiProperty({ + required: false, + type: String, + }) + @IsString() + @IsOptional() + @Field(() => String, { + nullable: true, + }) + text?: string | null; +} + +export { NotificationsHistoryCreateInput as NotificationsHistoryCreateInput }; diff --git a/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryFindManyArgs.ts b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryFindManyArgs.ts new file mode 100644 index 0000000..6d8cff2 --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryFindManyArgs.ts @@ -0,0 +1,62 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { ArgsType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { NotificationsHistoryWhereInput } from "./NotificationsHistoryWhereInput"; +import { IsOptional, ValidateNested, IsInt } from "class-validator"; +import { Type } from "class-transformer"; +import { NotificationsHistoryOrderByInput } from "./NotificationsHistoryOrderByInput"; + +@ArgsType() +class NotificationsHistoryFindManyArgs { + @ApiProperty({ + required: false, + type: () => NotificationsHistoryWhereInput, + }) + @IsOptional() + @ValidateNested() + @Field(() => NotificationsHistoryWhereInput, { nullable: true }) + @Type(() => NotificationsHistoryWhereInput) + where?: NotificationsHistoryWhereInput; + + @ApiProperty({ + required: false, + type: [NotificationsHistoryOrderByInput], + }) + @IsOptional() + @ValidateNested({ each: true }) + @Field(() => [NotificationsHistoryOrderByInput], { nullable: true }) + @Type(() => NotificationsHistoryOrderByInput) + orderBy?: Array; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @IsInt() + @Field(() => Number, { nullable: true }) + @Type(() => Number) + skip?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @IsInt() + @Field(() => Number, { nullable: true }) + @Type(() => Number) + take?: number; +} + +export { NotificationsHistoryFindManyArgs as NotificationsHistoryFindManyArgs }; diff --git a/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryFindUniqueArgs.ts b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryFindUniqueArgs.ts new file mode 100644 index 0000000..a91aa6e --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryFindUniqueArgs.ts @@ -0,0 +1,30 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { ArgsType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { NotificationsHistoryWhereUniqueInput } from "./NotificationsHistoryWhereUniqueInput"; +import { ValidateNested } from "class-validator"; +import { Type } from "class-transformer"; + +@ArgsType() +class NotificationsHistoryFindUniqueArgs { + @ApiProperty({ + required: true, + type: () => NotificationsHistoryWhereUniqueInput, + }) + @ValidateNested() + @Type(() => NotificationsHistoryWhereUniqueInput) + @Field(() => NotificationsHistoryWhereUniqueInput, { nullable: false }) + where!: NotificationsHistoryWhereUniqueInput; +} + +export { NotificationsHistoryFindUniqueArgs as NotificationsHistoryFindUniqueArgs }; diff --git a/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryListRelationFilter.ts b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryListRelationFilter.ts new file mode 100644 index 0000000..22a7cab --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryListRelationFilter.ts @@ -0,0 +1,56 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { InputType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { NotificationsHistoryWhereInput } from "./NotificationsHistoryWhereInput"; +import { ValidateNested, IsOptional } from "class-validator"; +import { Type } from "class-transformer"; + +@InputType() +class NotificationsHistoryListRelationFilter { + @ApiProperty({ + required: false, + type: () => NotificationsHistoryWhereInput, + }) + @ValidateNested() + @Type(() => NotificationsHistoryWhereInput) + @IsOptional() + @Field(() => NotificationsHistoryWhereInput, { + nullable: true, + }) + every?: NotificationsHistoryWhereInput; + + @ApiProperty({ + required: false, + type: () => NotificationsHistoryWhereInput, + }) + @ValidateNested() + @Type(() => NotificationsHistoryWhereInput) + @IsOptional() + @Field(() => NotificationsHistoryWhereInput, { + nullable: true, + }) + some?: NotificationsHistoryWhereInput; + + @ApiProperty({ + required: false, + type: () => NotificationsHistoryWhereInput, + }) + @ValidateNested() + @Type(() => NotificationsHistoryWhereInput) + @IsOptional() + @Field(() => NotificationsHistoryWhereInput, { + nullable: true, + }) + none?: NotificationsHistoryWhereInput; +} +export { NotificationsHistoryListRelationFilter as NotificationsHistoryListRelationFilter }; diff --git a/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryOrderByInput.ts b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryOrderByInput.ts new file mode 100644 index 0000000..b6c68c6 --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryOrderByInput.ts @@ -0,0 +1,67 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { InputType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsOptional, IsEnum } from "class-validator"; +import { SortOrder } from "../../util/SortOrder"; + +@InputType({ + isAbstract: true, + description: undefined, +}) +class NotificationsHistoryOrderByInput { + @ApiProperty({ + required: false, + enum: ["asc", "desc"], + }) + @IsOptional() + @IsEnum(SortOrder) + @Field(() => SortOrder, { + nullable: true, + }) + createdAt?: SortOrder; + + @ApiProperty({ + required: false, + enum: ["asc", "desc"], + }) + @IsOptional() + @IsEnum(SortOrder) + @Field(() => SortOrder, { + nullable: true, + }) + id?: SortOrder; + + @ApiProperty({ + required: false, + enum: ["asc", "desc"], + }) + @IsOptional() + @IsEnum(SortOrder) + @Field(() => SortOrder, { + nullable: true, + }) + text?: SortOrder; + + @ApiProperty({ + required: false, + enum: ["asc", "desc"], + }) + @IsOptional() + @IsEnum(SortOrder) + @Field(() => SortOrder, { + nullable: true, + }) + updatedAt?: SortOrder; +} + +export { NotificationsHistoryOrderByInput as NotificationsHistoryOrderByInput }; diff --git a/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryUpdateInput.ts b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryUpdateInput.ts new file mode 100644 index 0000000..71705d8 --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryUpdateInput.ts @@ -0,0 +1,30 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { InputType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsString, IsOptional } from "class-validator"; + +@InputType() +class NotificationsHistoryUpdateInput { + @ApiProperty({ + required: false, + type: String, + }) + @IsString() + @IsOptional() + @Field(() => String, { + nullable: true, + }) + text?: string | null; +} + +export { NotificationsHistoryUpdateInput as NotificationsHistoryUpdateInput }; diff --git a/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryWhereInput.ts b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryWhereInput.ts new file mode 100644 index 0000000..9e6d7db --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryWhereInput.ts @@ -0,0 +1,44 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { InputType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { StringFilter } from "../../util/StringFilter"; +import { Type } from "class-transformer"; +import { IsOptional } from "class-validator"; +import { StringNullableFilter } from "../../util/StringNullableFilter"; + +@InputType() +class NotificationsHistoryWhereInput { + @ApiProperty({ + required: false, + type: StringFilter, + }) + @Type(() => StringFilter) + @IsOptional() + @Field(() => StringFilter, { + nullable: true, + }) + id?: StringFilter; + + @ApiProperty({ + required: false, + type: StringNullableFilter, + }) + @Type(() => StringNullableFilter) + @IsOptional() + @Field(() => StringNullableFilter, { + nullable: true, + }) + text?: StringNullableFilter; +} + +export { NotificationsHistoryWhereInput as NotificationsHistoryWhereInput }; diff --git a/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryWhereUniqueInput.ts b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryWhereUniqueInput.ts new file mode 100644 index 0000000..753706e --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/base/NotificationsHistoryWhereUniqueInput.ts @@ -0,0 +1,27 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { InputType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsString } from "class-validator"; + +@InputType() +class NotificationsHistoryWhereUniqueInput { + @ApiProperty({ + required: true, + type: String, + }) + @IsString() + @Field(() => String) + id!: string; +} + +export { NotificationsHistoryWhereUniqueInput as NotificationsHistoryWhereUniqueInput }; diff --git a/apps/notification-service/src/notificationsHistory/base/UpdateNotificationsHistoryArgs.ts b/apps/notification-service/src/notificationsHistory/base/UpdateNotificationsHistoryArgs.ts new file mode 100644 index 0000000..a1a716c --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/base/UpdateNotificationsHistoryArgs.ts @@ -0,0 +1,40 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { ArgsType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { NotificationsHistoryWhereUniqueInput } from "./NotificationsHistoryWhereUniqueInput"; +import { ValidateNested } from "class-validator"; +import { Type } from "class-transformer"; +import { NotificationsHistoryUpdateInput } from "./NotificationsHistoryUpdateInput"; + +@ArgsType() +class UpdateNotificationsHistoryArgs { + @ApiProperty({ + required: true, + type: () => NotificationsHistoryWhereUniqueInput, + }) + @ValidateNested() + @Type(() => NotificationsHistoryWhereUniqueInput) + @Field(() => NotificationsHistoryWhereUniqueInput, { nullable: false }) + where!: NotificationsHistoryWhereUniqueInput; + + @ApiProperty({ + required: true, + type: () => NotificationsHistoryUpdateInput, + }) + @ValidateNested() + @Type(() => NotificationsHistoryUpdateInput) + @Field(() => NotificationsHistoryUpdateInput, { nullable: false }) + data!: NotificationsHistoryUpdateInput; +} + +export { UpdateNotificationsHistoryArgs as UpdateNotificationsHistoryArgs }; diff --git a/apps/notification-service/src/notificationsHistory/base/notificationsHistory.controller.base.spec.ts b/apps/notification-service/src/notificationsHistory/base/notificationsHistory.controller.base.spec.ts new file mode 100644 index 0000000..2447b13 --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/base/notificationsHistory.controller.base.spec.ts @@ -0,0 +1,194 @@ +import { Test } from "@nestjs/testing"; +import { + INestApplication, + HttpStatus, + ExecutionContext, + CallHandler, +} from "@nestjs/common"; +import request from "supertest"; +import { ACGuard } from "nest-access-control"; +import { DefaultAuthGuard } from "../../auth/defaultAuth.guard"; +import { ACLModule } from "../../auth/acl.module"; +import { AclFilterResponseInterceptor } from "../../interceptors/aclFilterResponse.interceptor"; +import { AclValidateRequestInterceptor } from "../../interceptors/aclValidateRequest.interceptor"; +import { map } from "rxjs"; +import { NotificationsHistoryController } from "../notificationsHistory.controller"; +import { NotificationsHistoryService } from "../notificationsHistory.service"; + +const nonExistingId = "nonExistingId"; +const existingId = "existingId"; +const CREATE_INPUT = { + createdAt: new Date(), + id: "exampleId", + text: "exampleText", + updatedAt: new Date(), +}; +const CREATE_RESULT = { + createdAt: new Date(), + id: "exampleId", + text: "exampleText", + updatedAt: new Date(), +}; +const FIND_MANY_RESULT = [ + { + createdAt: new Date(), + id: "exampleId", + text: "exampleText", + updatedAt: new Date(), + }, +]; +const FIND_ONE_RESULT = { + createdAt: new Date(), + id: "exampleId", + text: "exampleText", + updatedAt: new Date(), +}; + +const service = { + createNotificationsHistory() { + return CREATE_RESULT; + }, + notificationsHistories: () => FIND_MANY_RESULT, + notificationsHistory: ({ where }: { where: { id: string } }) => { + switch (where.id) { + case existingId: + return FIND_ONE_RESULT; + case nonExistingId: + return null; + } + }, +}; + +const basicAuthGuard = { + canActivate: (context: ExecutionContext) => { + const argumentHost = context.switchToHttp(); + const request = argumentHost.getRequest(); + request.user = { + roles: ["user"], + }; + return true; + }, +}; + +const acGuard = { + canActivate: () => { + return true; + }, +}; + +const aclFilterResponseInterceptor = { + intercept: (context: ExecutionContext, next: CallHandler) => { + return next.handle().pipe( + map((data) => { + return data; + }) + ); + }, +}; +const aclValidateRequestInterceptor = { + intercept: (context: ExecutionContext, next: CallHandler) => { + return next.handle(); + }, +}; + +describe("NotificationsHistory", () => { + let app: INestApplication; + + beforeAll(async () => { + const moduleRef = await Test.createTestingModule({ + providers: [ + { + provide: NotificationsHistoryService, + useValue: service, + }, + ], + controllers: [NotificationsHistoryController], + imports: [ACLModule], + }) + .overrideGuard(DefaultAuthGuard) + .useValue(basicAuthGuard) + .overrideGuard(ACGuard) + .useValue(acGuard) + .overrideInterceptor(AclFilterResponseInterceptor) + .useValue(aclFilterResponseInterceptor) + .overrideInterceptor(AclValidateRequestInterceptor) + .useValue(aclValidateRequestInterceptor) + .compile(); + + app = moduleRef.createNestApplication(); + await app.init(); + }); + + test("POST /notificationsHistories", async () => { + await request(app.getHttpServer()) + .post("/notificationsHistories") + .send(CREATE_INPUT) + .expect(HttpStatus.CREATED) + .expect({ + ...CREATE_RESULT, + createdAt: CREATE_RESULT.createdAt.toISOString(), + updatedAt: CREATE_RESULT.updatedAt.toISOString(), + }); + }); + + test("GET /notificationsHistories", async () => { + await request(app.getHttpServer()) + .get("/notificationsHistories") + .expect(HttpStatus.OK) + .expect([ + { + ...FIND_MANY_RESULT[0], + createdAt: FIND_MANY_RESULT[0].createdAt.toISOString(), + updatedAt: FIND_MANY_RESULT[0].updatedAt.toISOString(), + }, + ]); + }); + + test("GET /notificationsHistories/:id non existing", async () => { + await request(app.getHttpServer()) + .get(`${"/notificationsHistories"}/${nonExistingId}`) + .expect(HttpStatus.NOT_FOUND) + .expect({ + statusCode: HttpStatus.NOT_FOUND, + message: `No resource was found for {"${"id"}":"${nonExistingId}"}`, + error: "Not Found", + }); + }); + + test("GET /notificationsHistories/:id existing", async () => { + await request(app.getHttpServer()) + .get(`${"/notificationsHistories"}/${existingId}`) + .expect(HttpStatus.OK) + .expect({ + ...FIND_ONE_RESULT, + createdAt: FIND_ONE_RESULT.createdAt.toISOString(), + updatedAt: FIND_ONE_RESULT.updatedAt.toISOString(), + }); + }); + + test("POST /notificationsHistories existing resource", async () => { + const agent = request(app.getHttpServer()); + await agent + .post("/notificationsHistories") + .send(CREATE_INPUT) + .expect(HttpStatus.CREATED) + .expect({ + ...CREATE_RESULT, + createdAt: CREATE_RESULT.createdAt.toISOString(), + updatedAt: CREATE_RESULT.updatedAt.toISOString(), + }) + .then(function () { + agent + .post("/notificationsHistories") + .send(CREATE_INPUT) + .expect(HttpStatus.CONFLICT) + .expect({ + statusCode: HttpStatus.CONFLICT, + }); + }); + }); + + afterAll(async () => { + await app.close(); + }); +}); diff --git a/apps/notification-service/src/notificationsHistory/base/notificationsHistory.controller.base.ts b/apps/notification-service/src/notificationsHistory/base/notificationsHistory.controller.base.ts new file mode 100644 index 0000000..c3e63a4 --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/base/notificationsHistory.controller.base.ts @@ -0,0 +1,191 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import * as common from "@nestjs/common"; +import * as swagger from "@nestjs/swagger"; +import { isRecordNotFoundError } from "../../prisma.util"; +import * as errors from "../../errors"; +import { Request } from "express"; +import { plainToClass } from "class-transformer"; +import { ApiNestedQuery } from "../../decorators/api-nested-query.decorator"; +import * as nestAccessControl from "nest-access-control"; +import * as defaultAuthGuard from "../../auth/defaultAuth.guard"; +import { NotificationsHistoryService } from "../notificationsHistory.service"; +import { AclValidateRequestInterceptor } from "../../interceptors/aclValidateRequest.interceptor"; +import { AclFilterResponseInterceptor } from "../../interceptors/aclFilterResponse.interceptor"; +import { NotificationsHistoryCreateInput } from "./NotificationsHistoryCreateInput"; +import { NotificationsHistory } from "./NotificationsHistory"; +import { NotificationsHistoryFindManyArgs } from "./NotificationsHistoryFindManyArgs"; +import { NotificationsHistoryWhereUniqueInput } from "./NotificationsHistoryWhereUniqueInput"; +import { NotificationsHistoryUpdateInput } from "./NotificationsHistoryUpdateInput"; + +@swagger.ApiBearerAuth() +@common.UseGuards(defaultAuthGuard.DefaultAuthGuard, nestAccessControl.ACGuard) +export class NotificationsHistoryControllerBase { + constructor( + protected readonly service: NotificationsHistoryService, + protected readonly rolesBuilder: nestAccessControl.RolesBuilder + ) {} + @common.UseInterceptors(AclValidateRequestInterceptor) + @common.Post() + @swagger.ApiCreatedResponse({ type: NotificationsHistory }) + @nestAccessControl.UseRoles({ + resource: "NotificationsHistory", + action: "create", + possession: "any", + }) + @swagger.ApiForbiddenResponse({ + type: errors.ForbiddenException, + }) + async createNotificationsHistory( + @common.Body() data: NotificationsHistoryCreateInput + ): Promise { + return await this.service.createNotificationsHistory({ + data: data, + select: { + createdAt: true, + id: true, + text: true, + updatedAt: true, + }, + }); + } + + @common.UseInterceptors(AclFilterResponseInterceptor) + @common.Get() + @swagger.ApiOkResponse({ type: [NotificationsHistory] }) + @ApiNestedQuery(NotificationsHistoryFindManyArgs) + @nestAccessControl.UseRoles({ + resource: "NotificationsHistory", + action: "read", + possession: "any", + }) + @swagger.ApiForbiddenResponse({ + type: errors.ForbiddenException, + }) + async notificationsHistories( + @common.Req() request: Request + ): Promise { + const args = plainToClass(NotificationsHistoryFindManyArgs, request.query); + return this.service.notificationsHistories({ + ...args, + select: { + createdAt: true, + id: true, + text: true, + updatedAt: true, + }, + }); + } + + @common.UseInterceptors(AclFilterResponseInterceptor) + @common.Get("/:id") + @swagger.ApiOkResponse({ type: NotificationsHistory }) + @swagger.ApiNotFoundResponse({ type: errors.NotFoundException }) + @nestAccessControl.UseRoles({ + resource: "NotificationsHistory", + action: "read", + possession: "own", + }) + @swagger.ApiForbiddenResponse({ + type: errors.ForbiddenException, + }) + async notificationsHistory( + @common.Param() params: NotificationsHistoryWhereUniqueInput + ): Promise { + const result = await this.service.notificationsHistory({ + where: params, + select: { + createdAt: true, + id: true, + text: true, + updatedAt: true, + }, + }); + if (result === null) { + throw new errors.NotFoundException( + `No resource was found for ${JSON.stringify(params)}` + ); + } + return result; + } + + @common.UseInterceptors(AclValidateRequestInterceptor) + @common.Patch("/:id") + @swagger.ApiOkResponse({ type: NotificationsHistory }) + @swagger.ApiNotFoundResponse({ type: errors.NotFoundException }) + @nestAccessControl.UseRoles({ + resource: "NotificationsHistory", + action: "update", + possession: "any", + }) + @swagger.ApiForbiddenResponse({ + type: errors.ForbiddenException, + }) + async updateNotificationsHistory( + @common.Param() params: NotificationsHistoryWhereUniqueInput, + @common.Body() data: NotificationsHistoryUpdateInput + ): Promise { + try { + return await this.service.updateNotificationsHistory({ + where: params, + data: data, + select: { + createdAt: true, + id: true, + text: true, + updatedAt: true, + }, + }); + } catch (error) { + if (isRecordNotFoundError(error)) { + throw new errors.NotFoundException( + `No resource was found for ${JSON.stringify(params)}` + ); + } + throw error; + } + } + + @common.Delete("/:id") + @swagger.ApiOkResponse({ type: NotificationsHistory }) + @swagger.ApiNotFoundResponse({ type: errors.NotFoundException }) + @nestAccessControl.UseRoles({ + resource: "NotificationsHistory", + action: "delete", + possession: "any", + }) + @swagger.ApiForbiddenResponse({ + type: errors.ForbiddenException, + }) + async deleteNotificationsHistory( + @common.Param() params: NotificationsHistoryWhereUniqueInput + ): Promise { + try { + return await this.service.deleteNotificationsHistory({ + where: params, + select: { + createdAt: true, + id: true, + text: true, + updatedAt: true, + }, + }); + } catch (error) { + if (isRecordNotFoundError(error)) { + throw new errors.NotFoundException( + `No resource was found for ${JSON.stringify(params)}` + ); + } + throw error; + } + } +} diff --git a/apps/notification-service/src/notificationsHistory/base/notificationsHistory.module.base.ts b/apps/notification-service/src/notificationsHistory/base/notificationsHistory.module.base.ts new file mode 100644 index 0000000..a10a05e --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/base/notificationsHistory.module.base.ts @@ -0,0 +1,18 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { Module } from "@nestjs/common"; +import { ACLModule } from "../../auth/acl.module"; +@Module({ + imports: [ACLModule], + exports: [ACLModule], +}) +export class NotificationsHistoryModuleBase {} diff --git a/apps/notification-service/src/notificationsHistory/base/notificationsHistory.service.base.ts b/apps/notification-service/src/notificationsHistory/base/notificationsHistory.service.base.ts new file mode 100644 index 0000000..c4b2f7d --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/base/notificationsHistory.service.base.ts @@ -0,0 +1,59 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { PrismaService } from "../../prisma/prisma.service"; +import { Prisma, NotificationsHistory } from "@prisma/client"; + +export class NotificationsHistoryServiceBase { + constructor(protected readonly prisma: PrismaService) {} + + async count( + args: Prisma.SelectSubset + ): Promise { + return this.prisma.notificationsHistory.count(args); + } + + async notificationsHistories< + T extends Prisma.NotificationsHistoryFindManyArgs + >( + args: Prisma.SelectSubset + ): Promise { + return this.prisma.notificationsHistory.findMany(args); + } + async notificationsHistory< + T extends Prisma.NotificationsHistoryFindUniqueArgs + >( + args: Prisma.SelectSubset + ): Promise { + return this.prisma.notificationsHistory.findUnique(args); + } + async createNotificationsHistory< + T extends Prisma.NotificationsHistoryCreateArgs + >( + args: Prisma.SelectSubset + ): Promise { + return this.prisma.notificationsHistory.create(args); + } + async updateNotificationsHistory< + T extends Prisma.NotificationsHistoryUpdateArgs + >( + args: Prisma.SelectSubset + ): Promise { + return this.prisma.notificationsHistory.update(args); + } + async deleteNotificationsHistory< + T extends Prisma.NotificationsHistoryDeleteArgs + >( + args: Prisma.SelectSubset + ): Promise { + return this.prisma.notificationsHistory.delete(args); + } +} diff --git a/apps/notification-service/src/notificationsHistory/notificationsHistory.controller.ts b/apps/notification-service/src/notificationsHistory/notificationsHistory.controller.ts new file mode 100644 index 0000000..e1709ca --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/notificationsHistory.controller.ts @@ -0,0 +1,17 @@ +import * as common from "@nestjs/common"; +import * as swagger from "@nestjs/swagger"; +import * as nestAccessControl from "nest-access-control"; +import { NotificationsHistoryService } from "./notificationsHistory.service"; +import { NotificationsHistoryControllerBase } from "./base/notificationsHistory.controller.base"; + +@swagger.ApiTags("notificationsHistories") +@common.Controller("notificationsHistories") +export class NotificationsHistoryController extends NotificationsHistoryControllerBase { + constructor( + protected readonly service: NotificationsHistoryService, + @nestAccessControl.InjectRolesBuilder() + protected readonly rolesBuilder: nestAccessControl.RolesBuilder + ) { + super(service, rolesBuilder); + } +} diff --git a/apps/notification-service/src/notificationsHistory/notificationsHistory.module.ts b/apps/notification-service/src/notificationsHistory/notificationsHistory.module.ts new file mode 100644 index 0000000..d4771da --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/notificationsHistory.module.ts @@ -0,0 +1,13 @@ +import { Module, forwardRef } from "@nestjs/common"; +import { AuthModule } from "../auth/auth.module"; +import { NotificationsHistoryModuleBase } from "./base/notificationsHistory.module.base"; +import { NotificationsHistoryService } from "./notificationsHistory.service"; +import { NotificationsHistoryController } from "./notificationsHistory.controller"; + +@Module({ + imports: [NotificationsHistoryModuleBase, forwardRef(() => AuthModule)], + controllers: [NotificationsHistoryController], + providers: [NotificationsHistoryService], + exports: [NotificationsHistoryService], +}) +export class NotificationsHistoryModule {} diff --git a/apps/notification-service/src/notificationsHistory/notificationsHistory.service.ts b/apps/notification-service/src/notificationsHistory/notificationsHistory.service.ts new file mode 100644 index 0000000..261be3a --- /dev/null +++ b/apps/notification-service/src/notificationsHistory/notificationsHistory.service.ts @@ -0,0 +1,10 @@ +import { Injectable } from "@nestjs/common"; +import { PrismaService } from "../prisma/prisma.service"; +import { NotificationsHistoryServiceBase } from "./base/notificationsHistory.service.base"; + +@Injectable() +export class NotificationsHistoryService extends NotificationsHistoryServiceBase { + constructor(protected readonly prisma: PrismaService) { + super(prisma); + } +} diff --git a/apps/notification-service/src/prisma.util.spec.ts b/apps/notification-service/src/prisma.util.spec.ts new file mode 100644 index 0000000..0aa308e --- /dev/null +++ b/apps/notification-service/src/prisma.util.spec.ts @@ -0,0 +1,23 @@ +import { + isRecordNotFoundError, + PRISMA_QUERY_INTERPRETATION_ERROR, +} from "./prisma.util"; + +describe("isRecordNotFoundError", () => { + test("returns true for record not found error", () => { + expect( + isRecordNotFoundError( + Object.assign( + new Error(`Error occurred during query execution: + InterpretationError("Error for binding '0': RecordNotFound("Record to update not found.")")`), + { + code: PRISMA_QUERY_INTERPRETATION_ERROR, + } + ) + ) + ).toBe(true); + }); + test("returns false for any other error", () => { + expect(isRecordNotFoundError(new Error())).toBe(false); + }); +}); diff --git a/apps/notification-service/src/prisma.util.ts b/apps/notification-service/src/prisma.util.ts new file mode 100644 index 0000000..029b98a --- /dev/null +++ b/apps/notification-service/src/prisma.util.ts @@ -0,0 +1,29 @@ +export const PRISMA_QUERY_INTERPRETATION_ERROR = "P2016"; +export const PRISMA_RECORD_NOT_FOUND = "RecordNotFound"; + +export function isRecordNotFoundError(error: any): boolean { + return ( + error instanceof Error && + "code" in error && + error.code === PRISMA_QUERY_INTERPRETATION_ERROR && + error.message.includes(PRISMA_RECORD_NOT_FOUND) + ); +} + +export async function transformStringFieldUpdateInput< + T extends undefined | string | { set?: string } +>(input: T, transform: (input: string) => Promise): Promise { + if (typeof input === "object" && typeof input?.set === "string") { + return { set: await transform(input.set) } as T; + } + if (typeof input === "object") { + if (typeof input.set === "string") { + return { set: await transform(input.set) } as T; + } + return input; + } + if (typeof input === "string") { + return (await transform(input)) as T; + } + return input; +} diff --git a/apps/notification-service/src/prisma/prisma.module.ts b/apps/notification-service/src/prisma/prisma.module.ts new file mode 100644 index 0000000..1edbf95 --- /dev/null +++ b/apps/notification-service/src/prisma/prisma.module.ts @@ -0,0 +1,9 @@ +import { Global, Module } from "@nestjs/common"; +import { PrismaService } from "./prisma.service"; + +@Global() +@Module({ + providers: [PrismaService], + exports: [PrismaService], +}) +export class PrismaModule {} diff --git a/apps/notification-service/src/prisma/prisma.service.ts b/apps/notification-service/src/prisma/prisma.service.ts new file mode 100644 index 0000000..79ea4fa --- /dev/null +++ b/apps/notification-service/src/prisma/prisma.service.ts @@ -0,0 +1,9 @@ +import { Injectable, OnModuleInit, INestApplication } from "@nestjs/common"; +import { PrismaClient } from "@prisma/client"; + +@Injectable() +export class PrismaService extends PrismaClient implements OnModuleInit { + async onModuleInit() { + await this.$connect(); + } +} diff --git a/apps/notification-service/src/providers/secrets/base/secretsManager.service.base.spec.ts b/apps/notification-service/src/providers/secrets/base/secretsManager.service.base.spec.ts new file mode 100644 index 0000000..f161172 --- /dev/null +++ b/apps/notification-service/src/providers/secrets/base/secretsManager.service.base.spec.ts @@ -0,0 +1,41 @@ +import { ConfigService } from "@nestjs/config"; +import { mock } from "jest-mock-extended"; +import { SecretsManagerServiceBase } from "./secretsManager.service.base"; +import { EnumSecretsNameKey } from "../secretsNameKey.enum"; + +describe("Testing the secrets manager base class", () => { + const SECRET_KEY = "SECRET_KEY"; + const SECRET_VALUE = "SECRET_VALUE"; + const configService = mock(); + const secretsManagerServiceBase = new SecretsManagerServiceBase( + configService + ); + beforeEach(() => { + configService.get.mockClear(); + }); + it("should return value from env", async () => { + //ARRANGE + configService.get.mockReturnValue(SECRET_VALUE); + //ACT + const result = await secretsManagerServiceBase.getSecret( + SECRET_KEY as unknown as EnumSecretsNameKey + ); + //ASSERT + expect(result).toBe(SECRET_VALUE); + }); + it("should return null for unknown keys", async () => { + //ARRANGE + configService.get.mockReturnValue(undefined); + //ACT + const result = await secretsManagerServiceBase.getSecret( + SECRET_KEY as unknown as EnumSecretsNameKey + ); + //ASSERT + expect(result).toBeNull(); + }); + it("should throw an exception if getting null key", () => { + return expect( + secretsManagerServiceBase.getSecret(null as unknown as EnumSecretsNameKey) + ).rejects.toThrow(); + }); +}); diff --git a/apps/notification-service/src/providers/secrets/base/secretsManager.service.base.ts b/apps/notification-service/src/providers/secrets/base/secretsManager.service.base.ts new file mode 100644 index 0000000..340818c --- /dev/null +++ b/apps/notification-service/src/providers/secrets/base/secretsManager.service.base.ts @@ -0,0 +1,17 @@ +import { ConfigService } from "@nestjs/config"; +import { EnumSecretsNameKey } from "../secretsNameKey.enum"; + +export interface ISecretsManager { + getSecret: (key: EnumSecretsNameKey) => Promise; +} + +export class SecretsManagerServiceBase implements ISecretsManager { + constructor(protected readonly configService: ConfigService) {} + async getSecret(key: EnumSecretsNameKey): Promise { + const value = this.configService.get(key.toString()); + if (value) { + return value; + } + return null; + } +} diff --git a/apps/notification-service/src/providers/secrets/secretsManager.module.ts b/apps/notification-service/src/providers/secrets/secretsManager.module.ts new file mode 100644 index 0000000..3a621e4 --- /dev/null +++ b/apps/notification-service/src/providers/secrets/secretsManager.module.ts @@ -0,0 +1,8 @@ +import { Module } from "@nestjs/common"; +import { SecretsManagerService } from "./secretsManager.service"; + +@Module({ + providers: [SecretsManagerService], + exports: [SecretsManagerService], +}) +export class SecretsManagerModule {} diff --git a/apps/notification-service/src/providers/secrets/secretsManager.service.ts b/apps/notification-service/src/providers/secrets/secretsManager.service.ts new file mode 100644 index 0000000..89907c3 --- /dev/null +++ b/apps/notification-service/src/providers/secrets/secretsManager.service.ts @@ -0,0 +1,10 @@ +import { Injectable } from "@nestjs/common"; +import { ConfigService } from "@nestjs/config"; +import { SecretsManagerServiceBase } from "./base/secretsManager.service.base"; + +@Injectable() +export class SecretsManagerService extends SecretsManagerServiceBase { + constructor(protected readonly configService: ConfigService) { + super(configService); + } +} diff --git a/apps/notification-service/src/providers/secrets/secretsNameKey.enum.ts b/apps/notification-service/src/providers/secrets/secretsNameKey.enum.ts new file mode 100644 index 0000000..52c18af --- /dev/null +++ b/apps/notification-service/src/providers/secrets/secretsNameKey.enum.ts @@ -0,0 +1,3 @@ +export enum EnumSecretsNameKey { + JwtSecretKey = "JWT_SECRET_KEY" +} \ No newline at end of file diff --git a/apps/notification-service/src/serveStaticOptions.service.ts b/apps/notification-service/src/serveStaticOptions.service.ts new file mode 100644 index 0000000..390248b --- /dev/null +++ b/apps/notification-service/src/serveStaticOptions.service.ts @@ -0,0 +1,39 @@ +import * as path from "path"; +import { Injectable, Logger } from "@nestjs/common"; +import { ConfigService } from "@nestjs/config"; +import { + ServeStaticModuleOptions, + ServeStaticModuleOptionsFactory, +} from "@nestjs/serve-static"; + +const SERVE_STATIC_ROOT_PATH_VAR = "SERVE_STATIC_ROOT_PATH"; +const DEFAULT_STATIC_MODULE_OPTIONS_LIST: ServeStaticModuleOptions[] = [ + { + serveRoot: "/swagger", + rootPath: path.join(__dirname, "swagger"), + }, +]; + +@Injectable() +export class ServeStaticOptionsService + implements ServeStaticModuleOptionsFactory +{ + private readonly logger = new Logger(ServeStaticOptionsService.name); + + constructor(private readonly configService: ConfigService) {} + + createLoggerOptions(): ServeStaticModuleOptions[] { + const serveStaticRootPath = this.configService.get( + SERVE_STATIC_ROOT_PATH_VAR + ); + if (serveStaticRootPath) { + const resolvedPath = path.resolve(serveStaticRootPath); + this.logger.log(`Serving static files from ${resolvedPath}`); + return [ + ...DEFAULT_STATIC_MODULE_OPTIONS_LIST, + { rootPath: resolvedPath, exclude: ["/api*", "/graphql"] }, + ]; + } + return DEFAULT_STATIC_MODULE_OPTIONS_LIST; + } +} diff --git a/apps/notification-service/src/swagger.ts b/apps/notification-service/src/swagger.ts new file mode 100644 index 0000000..94dbfa9 --- /dev/null +++ b/apps/notification-service/src/swagger.ts @@ -0,0 +1,20 @@ +import { DocumentBuilder, SwaggerCustomOptions } from "@nestjs/swagger"; + +export const swaggerPath = "api"; + +export const swaggerDocumentOptions = new DocumentBuilder() + .setTitle("Notification Service") + .setDescription( + '\n\n## Congratulations! Your service resource is ready.\n \nPlease note that all endpoints are secured with JWT Bearer authentication.\nBy default, your service resource comes with one user with the username "admin" and password "admin".\nLearn more in [our docs](https://docs.amplication.com)' + ) + .addBearerAuth() + .build(); + +export const swaggerSetupOptions: SwaggerCustomOptions = { + swaggerOptions: { + persistAuthorization: true, + }, + customCssUrl: "../swagger/swagger.css", + customfavIcon: "../swagger/favicon.png", + customSiteTitle: "Notification Service", +}; diff --git a/apps/notification-service/src/swagger/favicon.png b/apps/notification-service/src/swagger/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..a79882d55bdcd1d04939ed7a42257c20ac32f17c GIT binary patch literal 2498 zcmZ`*>rdNd6#kVvl#bgdw{@jJ2c2M{$hfWC29(Qyav88OF5?my1-7meXrU!j6F<&G z-ABd5FD8azVwPxROPCY=pqU9IVsw7-3sY^_r^PK0L_t)QhIp_Dnt0#Nz zUY8*$H%ZepLuW_p0DL|zAr9;d1YSMa)3n&PI$N8EMqLPi?xpdO9FbuTLR}6=B34ZB zy#t_5cb?U4GfMi3xYNne*$y3abW!UWxa^9V{q33d1Q|_*bMr~9z|sXrD};qn7-fYX zJ9r$ZL*gj`_q@8O&Pu=ZcALiC%(#YrvYl=>*7ZL+_uZ1LLR8y1ma@|zuo%${e}1{$Q(P*)dWk2g>f3H@$e(CwZ3uE+aLqK z?07P=SW=y8g0XIce%v;Tj76T%H!`q$&8i7QLkLwB>*hDih!$ad2k`gKV+Pkitia~M zciiE|BnaTf0h>7ReDWpmD!&3CPh79gG4=X4tM|)TnEm_>i}Abag~Lx}tm`7YKN~bC z2{6lGV;gQrDqkGf&e8+xJ?wsU@KBR)f`SwY&8}tmC>XE`v$1gLl&@O}9~kZ&FoBJm70?rd0NJ!Xul;7G7}#yNDdgkg_Qo+ur=9{H$f ze=%oW^lx>uo#SAYe4KT#cr^dPgEz_>PRfAnQcB_5%T5S^nd|4zfPjJ11J(BA>a!xj zd>>m~WlmZJx$`IcjVorK2~>kx1SKnXpd5bWTC z`X(#^Yv^;X_dI6bMM&fAqrxc-3ApTslzP0rD-r_&kecO5$Gw z)fhF90)A5MFm65xcD&1q@Gry-n6-b6S5E#+4flMxno9we)N5k?ddS}oaJLCE1mJHG$` literal 0 HcmV?d00001 diff --git a/apps/notification-service/src/swagger/logo-amplication-white.svg b/apps/notification-service/src/swagger/logo-amplication-white.svg new file mode 100644 index 0000000..0054cd4 --- /dev/null +++ b/apps/notification-service/src/swagger/logo-amplication-white.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/apps/notification-service/src/swagger/swagger.css b/apps/notification-service/src/swagger/swagger.css new file mode 100644 index 0000000..b7c4037 --- /dev/null +++ b/apps/notification-service/src/swagger/swagger.css @@ -0,0 +1,321 @@ +html, +body { + background-color: #f4f4f7; +} + +body { + margin: auto; + line-height: 1.6; + font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", + "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", + "Helvetica Neue", sans-serif; + color: #121242; +} + +.swagger-ui { + font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", + "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", + "Helvetica Neue", sans-serif; +} + +.swagger-ui button, +.swagger-ui input, +.swagger-ui optgroup, +.swagger-ui select, +.swagger-ui textarea, +.swagger-ui .parameter__name, +.swagger-ui .parameters-col_name > *, +.swagger-ui label { + font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", + "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", + "Helvetica Neue", sans-serif; + font-weight: normal; + font-size: 12px; + outline: none; +} + +.swagger-ui textarea { + border: 1px solid #d0d0d9; + min-height: 100px; +} + +.swagger-ui input[type="email"], +.swagger-ui input[type="file"], +.swagger-ui input[type="password"], +.swagger-ui input[type="search"], +.swagger-ui input[type="text"], +.swagger-ui textarea { + border-radius: 3px; +} + +.swagger-ui input[disabled], +.swagger-ui select[disabled], +.swagger-ui textarea[disabled] { + background: #f4f4f7; + color: #b8b8c6; +} + +.swagger-ui .btn { + font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", + "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", + "Helvetica Neue", sans-serif; + font-weight: 500; + box-shadow: none; + border: 1px solid #d0d0d9; + height: 28px; + border-radius: 14px; + background-color: #fff; + color: #7950ed; +} + +.swagger-ui .btn:hover { + box-shadow: none; +} + +/* topbar */ + +.swagger-ui .topbar { + background-color: #7950ed; + height: 80px; + padding: 0; + display: flex; + flex-direction: row; + align-items: center; + justify-content: flex-start; +} + +.swagger-ui .topbar-wrapper a { + display: block; + width: 206px; + height: 35px; + background-image: url("logo-amplication-white.svg"); + background-repeat: no-repeat; + background-size: contain; +} + +.swagger-ui .topbar-wrapper svg, +.swagger-ui .topbar-wrapper img { + display: none; +} + +/* title */ +.swagger-ui .info { + margin: 0; +} + +.swagger-ui .info .title { + font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", + "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", + "Helvetica Neue", sans-serif; + font-size: 32px; + font-weight: 600; +} + +.swagger-ui .information-container { + padding-top: 50px; + padding-bottom: 20px; + position: relative; +} + +.swagger-ui .info .title small.version-stamp { + display: none; +} + +.swagger-ui .info .title small { + background-color: #a787ff; +} + +.swagger-ui .info .description p { + max-width: 1000px; + margin: 0; +} + +.swagger-ui .info .description p, +.swagger-ui .info .description a { + font-size: 1rem; +} + +.swagger-ui .information-container section { + position: relative; +} + +.swagger-ui .scheme-container { + box-shadow: none; + background-color: transparent; + position: relative; + margin: 0; + margin-top: 20px; + margin-bottom: 20px; + padding: 0; +} + +.swagger-ui .scheme-container .auth-wrapper { + justify-content: flex-start; +} + +.swagger-ui .btn.authorize { + box-shadow: none; + border: 1px solid #d0d0d9; + height: 40px; + border-radius: 20px; + background-color: #fff; + color: #7950ed; +} + +.swagger-ui .btn.authorize svg { + fill: #7950ed; +} + +/* content */ + +.swagger-ui .opblock-tag { + font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", + "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", + "Helvetica Neue", sans-serif; + font-size: 28px; + font-weight: 600; +} + +.swagger-ui .opblock.is-open .opblock-summary { + border-color: #e7e7ec !important; + border-bottom: none; +} + +.swagger-ui .opblock .opblock-section-header { + background-color: #fff; + border: none; + border-top: 1px solid #e7e7ec; + border-bottom: 1px solid #e7e7ec; + box-shadow: none; +} + +.swagger-ui .opblock .tab-header .tab-item.active h4 span:after { + display: none; +} + +.swagger-ui .opblock.opblock-post { + border: 1px solid #e7e7ec; + background: #f9f9fa; + box-shadow: none; + color: #fff; +} + +.swagger-ui .opblock.opblock-post:hover, +.swagger-ui .opblock.opblock-post.is-open { + border-color: #31c587; +} + +.swagger-ui .opblock.opblock-post .opblock-summary-method { + background-color: #31c587; +} + +.swagger-ui .opblock.opblock-get { + border: 1px solid #e7e7ec; + background: #f9f9fa; + box-shadow: none; +} +.swagger-ui .opblock.opblock-get:hover, +.swagger-ui .opblock.opblock-get.is-open { + border-color: #20a4f3; +} +.swagger-ui .opblock.opblock-get .opblock-summary-method { + background-color: #20a4f3; +} + +.swagger-ui .opblock.opblock-delete { + border: 1px solid #e7e7ec; + background: #f9f9fa; + box-shadow: none; +} +.swagger-ui .opblock.opblock-delete:hover, +.swagger-ui .opblock.opblock-delete.is-open { + border-color: #e93c51; +} +.swagger-ui .opblock.opblock-delete .opblock-summary-method { + background-color: #e93c51; +} + +.swagger-ui .opblock.opblock-patch { + border: 1px solid #e7e7ec; + background: #f9f9fa; + box-shadow: none; +} +.swagger-ui .opblock.opblock-patch:hover, +.swagger-ui .opblock.opblock-patch.is-open { + border-color: #41cadd; +} +.swagger-ui .opblock.opblock-patch .opblock-summary-method { + background-color: #41cadd; +} + +.swagger-ui .opblock-body pre { + background-color: #121242 !important; +} + +.swagger-ui select, +.swagger-ui .response-control-media-type--accept-controller select { + border: 1px solid #d0d0d9; + box-shadow: none; + outline: none; +} + +/* models */ + +.swagger-ui section.models { + background-color: #fff; + border: 1px solid #e7e7ec; +} + +.swagger-ui section.models.is-open h4 { + border-bottom: 1px solid #e7e7ec; +} + +.swagger-ui section.models .model-container, +.swagger-ui section.models .model-container:hover { + background-color: #f4f4f7; + color: #121242; +} + +.swagger-ui .model-title { + font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", + "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", + "Helvetica Neue", sans-serif; + font-weight: normal; + font-size: 15px; + color: #121242; +} + +/* modal */ + +.swagger-ui .dialog-ux .modal-ux-header h3, +.swagger-ui .dialog-ux .modal-ux-content h4, +.swagger-ui .dialog-ux .modal-ux-content h4 code { + font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", + "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", + "Helvetica Neue", sans-serif; + font-weight: normal; + font-size: 15px; + color: #121242; +} + +.swagger-ui .dialog-ux .modal-ux-content .btn.authorize { + height: 28px; + border-radius: 14px; +} + +.swagger-ui .auth-btn-wrapper { + display: flex; + flex-direction: row-reverse; + align-items: center; + justify-content: flex-start; +} + +.swagger-ui .auth-btn-wrapper .btn-done { + border: none; + color: #121242; + margin-right: 0; +} + +.swagger-ui .authorization__btn { + fill: #414168; +} diff --git a/apps/notification-service/src/tests/auth/constants.ts b/apps/notification-service/src/tests/auth/constants.ts new file mode 100644 index 0000000..98e4887 --- /dev/null +++ b/apps/notification-service/src/tests/auth/constants.ts @@ -0,0 +1,19 @@ +import { Credentials } from "../../auth/Credentials"; +import { UserInfo } from "../../auth/UserInfo"; + +export const VALID_ID = "1"; + +export const TEST_USER: UserInfo = { + id: "cl7qmjh4h0000tothyjqapgj5", + roles: ["User"], + username: "ofek", +}; +export const SIGN_TOKEN = "SIGN_TOKEN"; +export const VALID_CREDENTIALS: Credentials = { + username: "Valid User", + password: "Valid User Password", +}; +export const INVALID_CREDENTIALS: Credentials = { + username: "Invalid User", + password: "Invalid User Password", +}; diff --git a/apps/notification-service/src/tests/auth/jwt/jwt.strategy.spec.ts b/apps/notification-service/src/tests/auth/jwt/jwt.strategy.spec.ts new file mode 100644 index 0000000..36bbb24 --- /dev/null +++ b/apps/notification-service/src/tests/auth/jwt/jwt.strategy.spec.ts @@ -0,0 +1,28 @@ +import { UnauthorizedException } from "@nestjs/common"; +import { mock } from "jest-mock-extended"; +import { JwtStrategyBase } from "../../../auth/jwt/base/jwt.strategy.base"; +import { TEST_USER } from "../constants"; +import { UserService } from "../../../user/user.service"; +describe("Testing the jwtStrategyBase.validate()", () => { + const userService = mock(); + const jwtStrategy = new JwtStrategyBase("Secrete", userService); + beforeEach(() => { + userService.user.mockClear(); + }); + it("should throw UnauthorizedException where there is no user", async () => { + //ARRANGE + userService.user + .calledWith({ + where: { username: TEST_USER.username }, + }) + .mockReturnValue(Promise.resolve(null)); + //ACT + const result = jwtStrategy.validate({ + id: TEST_USER.id, + username: TEST_USER.username, + roles: TEST_USER.roles, + }); + //ASSERT + return expect(result).rejects.toThrowError(UnauthorizedException); + }); +}); diff --git a/apps/notification-service/src/tests/auth/token.service.spec.ts b/apps/notification-service/src/tests/auth/token.service.spec.ts new file mode 100644 index 0000000..83b5a51 --- /dev/null +++ b/apps/notification-service/src/tests/auth/token.service.spec.ts @@ -0,0 +1,47 @@ +import { JwtService } from "@nestjs/jwt"; +import { mock } from "jest-mock-extended"; +import { TokenServiceBase } from "../../auth/base/token.service.base"; +import { + INVALID_PASSWORD_ERROR, + INVALID_USERNAME_ERROR, +} from "../../auth/constants"; +import { SIGN_TOKEN, VALID_CREDENTIALS, VALID_ID } from "./constants"; + +describe("Testing the TokenServiceBase", () => { + let tokenServiceBase: TokenServiceBase; + const jwtService = mock(); + beforeEach(() => { + tokenServiceBase = new TokenServiceBase(jwtService); + jwtService.signAsync.mockClear(); + }); + describe("Testing the BasicTokenService.createToken()", () => { + it("should create valid token for valid username and password", async () => { + jwtService.signAsync.mockReturnValue(Promise.resolve(SIGN_TOKEN)); + expect( + await tokenServiceBase.createToken({ + id: VALID_ID, + username: VALID_CREDENTIALS.username, + password: VALID_CREDENTIALS.password, + }) + ).toBe(SIGN_TOKEN); + }); + it("should reject when username missing", () => { + const result = tokenServiceBase.createToken({ + id: VALID_ID, + //@ts-ignore + username: null, + password: VALID_CREDENTIALS.password, + }); + return expect(result).rejects.toBe(INVALID_USERNAME_ERROR); + }); + it("should reject when password missing", () => { + const result = tokenServiceBase.createToken({ + id: VALID_ID, + username: VALID_CREDENTIALS.username, + //@ts-ignore + password: null, + }); + return expect(result).rejects.toBe(INVALID_PASSWORD_ERROR); + }); + }); +}); diff --git a/apps/notification-service/src/tests/health/health.service.spec.ts b/apps/notification-service/src/tests/health/health.service.spec.ts new file mode 100644 index 0000000..4b191f1 --- /dev/null +++ b/apps/notification-service/src/tests/health/health.service.spec.ts @@ -0,0 +1,36 @@ +import { mock } from "jest-mock-extended"; +import { PrismaService } from "../../prisma/prisma.service"; +import { HealthServiceBase } from "../../health/base/health.service.base"; + +describe("Testing the HealthServiceBase", () => { + //ARRANGE + let prismaService: PrismaService; + let healthServiceBase: HealthServiceBase; + + describe("Testing the isDbReady function in HealthServiceBase class", () => { + beforeEach(() => { + prismaService = mock(); + healthServiceBase = new HealthServiceBase(prismaService); + }); + it("should return true if allow connection to db", async () => { + //ARRANGE + (prismaService.$queryRaw as jest.Mock).mockReturnValue( + Promise.resolve(true) + ); + //ACT + const response = await healthServiceBase.isDbReady(); + //ASSERT + expect(response).toBe(true); + }); + it("should return false if db is not available", async () => { + //ARRANGE + (prismaService.$queryRaw as jest.Mock).mockReturnValue( + Promise.reject(false) + ); + //ACT + const response = await healthServiceBase.isDbReady(); + //ASSERT + expect(response).toBe(false); + }); + }); +}); diff --git a/apps/notification-service/src/types.ts b/apps/notification-service/src/types.ts new file mode 100644 index 0000000..f762a5d --- /dev/null +++ b/apps/notification-service/src/types.ts @@ -0,0 +1,3 @@ +import type { JsonValue } from "type-fest"; + +export type InputJsonValue = Omit; diff --git a/apps/notification-service/src/user/base/CreateUserArgs.ts b/apps/notification-service/src/user/base/CreateUserArgs.ts new file mode 100644 index 0000000..092a504 --- /dev/null +++ b/apps/notification-service/src/user/base/CreateUserArgs.ts @@ -0,0 +1,30 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { ArgsType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { UserCreateInput } from "./UserCreateInput"; +import { ValidateNested } from "class-validator"; +import { Type } from "class-transformer"; + +@ArgsType() +class CreateUserArgs { + @ApiProperty({ + required: true, + type: () => UserCreateInput, + }) + @ValidateNested() + @Type(() => UserCreateInput) + @Field(() => UserCreateInput, { nullable: false }) + data!: UserCreateInput; +} + +export { CreateUserArgs as CreateUserArgs }; diff --git a/apps/notification-service/src/user/base/DeleteUserArgs.ts b/apps/notification-service/src/user/base/DeleteUserArgs.ts new file mode 100644 index 0000000..042ed5f --- /dev/null +++ b/apps/notification-service/src/user/base/DeleteUserArgs.ts @@ -0,0 +1,30 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { ArgsType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { UserWhereUniqueInput } from "./UserWhereUniqueInput"; +import { ValidateNested } from "class-validator"; +import { Type } from "class-transformer"; + +@ArgsType() +class DeleteUserArgs { + @ApiProperty({ + required: true, + type: () => UserWhereUniqueInput, + }) + @ValidateNested() + @Type(() => UserWhereUniqueInput) + @Field(() => UserWhereUniqueInput, { nullable: false }) + where!: UserWhereUniqueInput; +} + +export { DeleteUserArgs as DeleteUserArgs }; diff --git a/apps/notification-service/src/user/base/UpdateUserArgs.ts b/apps/notification-service/src/user/base/UpdateUserArgs.ts new file mode 100644 index 0000000..1f13420 --- /dev/null +++ b/apps/notification-service/src/user/base/UpdateUserArgs.ts @@ -0,0 +1,40 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { ArgsType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { UserWhereUniqueInput } from "./UserWhereUniqueInput"; +import { ValidateNested } from "class-validator"; +import { Type } from "class-transformer"; +import { UserUpdateInput } from "./UserUpdateInput"; + +@ArgsType() +class UpdateUserArgs { + @ApiProperty({ + required: true, + type: () => UserWhereUniqueInput, + }) + @ValidateNested() + @Type(() => UserWhereUniqueInput) + @Field(() => UserWhereUniqueInput, { nullable: false }) + where!: UserWhereUniqueInput; + + @ApiProperty({ + required: true, + type: () => UserUpdateInput, + }) + @ValidateNested() + @Type(() => UserUpdateInput) + @Field(() => UserUpdateInput, { nullable: false }) + data!: UserUpdateInput; +} + +export { UpdateUserArgs as UpdateUserArgs }; diff --git a/apps/notification-service/src/user/base/User.ts b/apps/notification-service/src/user/base/User.ts new file mode 100644 index 0000000..0ed8084 --- /dev/null +++ b/apps/notification-service/src/user/base/User.ts @@ -0,0 +1,84 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { ObjectType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsDate, IsString, IsOptional } from "class-validator"; +import { Type } from "class-transformer"; +import { IsJSONValue } from "../../validators"; +import { GraphQLJSON } from "graphql-type-json"; +import { JsonValue } from "type-fest"; + +@ObjectType() +class User { + @ApiProperty({ + required: true, + }) + @IsDate() + @Type(() => Date) + @Field(() => Date) + createdAt!: Date; + + @ApiProperty({ + required: false, + type: String, + }) + @IsString() + @IsOptional() + @Field(() => String, { + nullable: true, + }) + firstName!: string | null; + + @ApiProperty({ + required: true, + type: String, + }) + @IsString() + @Field(() => String) + id!: string; + + @ApiProperty({ + required: false, + type: String, + }) + @IsString() + @IsOptional() + @Field(() => String, { + nullable: true, + }) + lastName!: string | null; + + @ApiProperty({ + required: true, + }) + @IsJSONValue() + @Field(() => GraphQLJSON) + roles!: JsonValue; + + @ApiProperty({ + required: true, + }) + @IsDate() + @Type(() => Date) + @Field(() => Date) + updatedAt!: Date; + + @ApiProperty({ + required: true, + type: String, + }) + @IsString() + @Field(() => String) + username!: string; +} + +export { User as User }; diff --git a/apps/notification-service/src/user/base/UserCountArgs.ts b/apps/notification-service/src/user/base/UserCountArgs.ts new file mode 100644 index 0000000..f4a14ac --- /dev/null +++ b/apps/notification-service/src/user/base/UserCountArgs.ts @@ -0,0 +1,28 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { ArgsType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { UserWhereInput } from "./UserWhereInput"; +import { Type } from "class-transformer"; + +@ArgsType() +class UserCountArgs { + @ApiProperty({ + required: false, + type: () => UserWhereInput, + }) + @Field(() => UserWhereInput, { nullable: true }) + @Type(() => UserWhereInput) + where?: UserWhereInput; +} + +export { UserCountArgs as UserCountArgs }; diff --git a/apps/notification-service/src/user/base/UserCreateInput.ts b/apps/notification-service/src/user/base/UserCreateInput.ts new file mode 100644 index 0000000..617155a --- /dev/null +++ b/apps/notification-service/src/user/base/UserCreateInput.ts @@ -0,0 +1,67 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { InputType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsString, IsOptional } from "class-validator"; +import { IsJSONValue } from "../../validators"; +import { GraphQLJSON } from "graphql-type-json"; +import { InputJsonValue } from "../../types"; + +@InputType() +class UserCreateInput { + @ApiProperty({ + required: false, + type: String, + }) + @IsString() + @IsOptional() + @Field(() => String, { + nullable: true, + }) + firstName?: string | null; + + @ApiProperty({ + required: false, + type: String, + }) + @IsString() + @IsOptional() + @Field(() => String, { + nullable: true, + }) + lastName?: string | null; + + @ApiProperty({ + required: true, + type: String, + }) + @IsString() + @Field(() => String) + password!: string; + + @ApiProperty({ + required: true, + }) + @IsJSONValue() + @Field(() => GraphQLJSON) + roles!: InputJsonValue; + + @ApiProperty({ + required: true, + type: String, + }) + @IsString() + @Field(() => String) + username!: string; +} + +export { UserCreateInput as UserCreateInput }; diff --git a/apps/notification-service/src/user/base/UserFindManyArgs.ts b/apps/notification-service/src/user/base/UserFindManyArgs.ts new file mode 100644 index 0000000..8ba369c --- /dev/null +++ b/apps/notification-service/src/user/base/UserFindManyArgs.ts @@ -0,0 +1,62 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { ArgsType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { UserWhereInput } from "./UserWhereInput"; +import { IsOptional, ValidateNested, IsInt } from "class-validator"; +import { Type } from "class-transformer"; +import { UserOrderByInput } from "./UserOrderByInput"; + +@ArgsType() +class UserFindManyArgs { + @ApiProperty({ + required: false, + type: () => UserWhereInput, + }) + @IsOptional() + @ValidateNested() + @Field(() => UserWhereInput, { nullable: true }) + @Type(() => UserWhereInput) + where?: UserWhereInput; + + @ApiProperty({ + required: false, + type: [UserOrderByInput], + }) + @IsOptional() + @ValidateNested({ each: true }) + @Field(() => [UserOrderByInput], { nullable: true }) + @Type(() => UserOrderByInput) + orderBy?: Array; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @IsInt() + @Field(() => Number, { nullable: true }) + @Type(() => Number) + skip?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @IsInt() + @Field(() => Number, { nullable: true }) + @Type(() => Number) + take?: number; +} + +export { UserFindManyArgs as UserFindManyArgs }; diff --git a/apps/notification-service/src/user/base/UserFindUniqueArgs.ts b/apps/notification-service/src/user/base/UserFindUniqueArgs.ts new file mode 100644 index 0000000..c64506f --- /dev/null +++ b/apps/notification-service/src/user/base/UserFindUniqueArgs.ts @@ -0,0 +1,30 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { ArgsType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { UserWhereUniqueInput } from "./UserWhereUniqueInput"; +import { ValidateNested } from "class-validator"; +import { Type } from "class-transformer"; + +@ArgsType() +class UserFindUniqueArgs { + @ApiProperty({ + required: true, + type: () => UserWhereUniqueInput, + }) + @ValidateNested() + @Type(() => UserWhereUniqueInput) + @Field(() => UserWhereUniqueInput, { nullable: false }) + where!: UserWhereUniqueInput; +} + +export { UserFindUniqueArgs as UserFindUniqueArgs }; diff --git a/apps/notification-service/src/user/base/UserListRelationFilter.ts b/apps/notification-service/src/user/base/UserListRelationFilter.ts new file mode 100644 index 0000000..0ff7d94 --- /dev/null +++ b/apps/notification-service/src/user/base/UserListRelationFilter.ts @@ -0,0 +1,56 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { InputType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { UserWhereInput } from "./UserWhereInput"; +import { ValidateNested, IsOptional } from "class-validator"; +import { Type } from "class-transformer"; + +@InputType() +class UserListRelationFilter { + @ApiProperty({ + required: false, + type: () => UserWhereInput, + }) + @ValidateNested() + @Type(() => UserWhereInput) + @IsOptional() + @Field(() => UserWhereInput, { + nullable: true, + }) + every?: UserWhereInput; + + @ApiProperty({ + required: false, + type: () => UserWhereInput, + }) + @ValidateNested() + @Type(() => UserWhereInput) + @IsOptional() + @Field(() => UserWhereInput, { + nullable: true, + }) + some?: UserWhereInput; + + @ApiProperty({ + required: false, + type: () => UserWhereInput, + }) + @ValidateNested() + @Type(() => UserWhereInput) + @IsOptional() + @Field(() => UserWhereInput, { + nullable: true, + }) + none?: UserWhereInput; +} +export { UserListRelationFilter as UserListRelationFilter }; diff --git a/apps/notification-service/src/user/base/UserOrderByInput.ts b/apps/notification-service/src/user/base/UserOrderByInput.ts new file mode 100644 index 0000000..1ded2ed --- /dev/null +++ b/apps/notification-service/src/user/base/UserOrderByInput.ts @@ -0,0 +1,111 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { InputType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsOptional, IsEnum } from "class-validator"; +import { SortOrder } from "../../util/SortOrder"; + +@InputType({ + isAbstract: true, + description: undefined, +}) +class UserOrderByInput { + @ApiProperty({ + required: false, + enum: ["asc", "desc"], + }) + @IsOptional() + @IsEnum(SortOrder) + @Field(() => SortOrder, { + nullable: true, + }) + createdAt?: SortOrder; + + @ApiProperty({ + required: false, + enum: ["asc", "desc"], + }) + @IsOptional() + @IsEnum(SortOrder) + @Field(() => SortOrder, { + nullable: true, + }) + firstName?: SortOrder; + + @ApiProperty({ + required: false, + enum: ["asc", "desc"], + }) + @IsOptional() + @IsEnum(SortOrder) + @Field(() => SortOrder, { + nullable: true, + }) + id?: SortOrder; + + @ApiProperty({ + required: false, + enum: ["asc", "desc"], + }) + @IsOptional() + @IsEnum(SortOrder) + @Field(() => SortOrder, { + nullable: true, + }) + lastName?: SortOrder; + + @ApiProperty({ + required: false, + enum: ["asc", "desc"], + }) + @IsOptional() + @IsEnum(SortOrder) + @Field(() => SortOrder, { + nullable: true, + }) + password?: SortOrder; + + @ApiProperty({ + required: false, + enum: ["asc", "desc"], + }) + @IsOptional() + @IsEnum(SortOrder) + @Field(() => SortOrder, { + nullable: true, + }) + roles?: SortOrder; + + @ApiProperty({ + required: false, + enum: ["asc", "desc"], + }) + @IsOptional() + @IsEnum(SortOrder) + @Field(() => SortOrder, { + nullable: true, + }) + updatedAt?: SortOrder; + + @ApiProperty({ + required: false, + enum: ["asc", "desc"], + }) + @IsOptional() + @IsEnum(SortOrder) + @Field(() => SortOrder, { + nullable: true, + }) + username?: SortOrder; +} + +export { UserOrderByInput as UserOrderByInput }; diff --git a/apps/notification-service/src/user/base/UserUpdateInput.ts b/apps/notification-service/src/user/base/UserUpdateInput.ts new file mode 100644 index 0000000..0a9ab93 --- /dev/null +++ b/apps/notification-service/src/user/base/UserUpdateInput.ts @@ -0,0 +1,76 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { InputType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsString, IsOptional } from "class-validator"; +import { IsJSONValue } from "../../validators"; +import { GraphQLJSON } from "graphql-type-json"; +import { InputJsonValue } from "../../types"; + +@InputType() +class UserUpdateInput { + @ApiProperty({ + required: false, + type: String, + }) + @IsString() + @IsOptional() + @Field(() => String, { + nullable: true, + }) + firstName?: string | null; + + @ApiProperty({ + required: false, + type: String, + }) + @IsString() + @IsOptional() + @Field(() => String, { + nullable: true, + }) + lastName?: string | null; + + @ApiProperty({ + required: false, + type: String, + }) + @IsString() + @IsOptional() + @Field(() => String, { + nullable: true, + }) + password?: string; + + @ApiProperty({ + required: false, + }) + @IsJSONValue() + @IsOptional() + @Field(() => GraphQLJSON, { + nullable: true, + }) + roles?: InputJsonValue; + + @ApiProperty({ + required: false, + type: String, + }) + @IsString() + @IsOptional() + @Field(() => String, { + nullable: true, + }) + username?: string; +} + +export { UserUpdateInput as UserUpdateInput }; diff --git a/apps/notification-service/src/user/base/UserWhereInput.ts b/apps/notification-service/src/user/base/UserWhereInput.ts new file mode 100644 index 0000000..a8babc1 --- /dev/null +++ b/apps/notification-service/src/user/base/UserWhereInput.ts @@ -0,0 +1,66 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { InputType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { StringNullableFilter } from "../../util/StringNullableFilter"; +import { Type } from "class-transformer"; +import { IsOptional } from "class-validator"; +import { StringFilter } from "../../util/StringFilter"; + +@InputType() +class UserWhereInput { + @ApiProperty({ + required: false, + type: StringNullableFilter, + }) + @Type(() => StringNullableFilter) + @IsOptional() + @Field(() => StringNullableFilter, { + nullable: true, + }) + firstName?: StringNullableFilter; + + @ApiProperty({ + required: false, + type: StringFilter, + }) + @Type(() => StringFilter) + @IsOptional() + @Field(() => StringFilter, { + nullable: true, + }) + id?: StringFilter; + + @ApiProperty({ + required: false, + type: StringNullableFilter, + }) + @Type(() => StringNullableFilter) + @IsOptional() + @Field(() => StringNullableFilter, { + nullable: true, + }) + lastName?: StringNullableFilter; + + @ApiProperty({ + required: false, + type: StringFilter, + }) + @Type(() => StringFilter) + @IsOptional() + @Field(() => StringFilter, { + nullable: true, + }) + username?: StringFilter; +} + +export { UserWhereInput as UserWhereInput }; diff --git a/apps/notification-service/src/user/base/UserWhereUniqueInput.ts b/apps/notification-service/src/user/base/UserWhereUniqueInput.ts new file mode 100644 index 0000000..0bcea12 --- /dev/null +++ b/apps/notification-service/src/user/base/UserWhereUniqueInput.ts @@ -0,0 +1,27 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { InputType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsString } from "class-validator"; + +@InputType() +class UserWhereUniqueInput { + @ApiProperty({ + required: true, + type: String, + }) + @IsString() + @Field(() => String) + id!: string; +} + +export { UserWhereUniqueInput as UserWhereUniqueInput }; diff --git a/apps/notification-service/src/user/base/user.controller.base.spec.ts b/apps/notification-service/src/user/base/user.controller.base.spec.ts new file mode 100644 index 0000000..91ee4d0 --- /dev/null +++ b/apps/notification-service/src/user/base/user.controller.base.spec.ts @@ -0,0 +1,124 @@ +import { Test } from "@nestjs/testing"; +import { + INestApplication, + HttpStatus, + ExecutionContext, + CallHandler, +} from "@nestjs/common"; +import request from "supertest"; +import { ACGuard } from "nest-access-control"; +import { DefaultAuthGuard } from "../../auth/defaultAuth.guard"; +import { ACLModule } from "../../auth/acl.module"; +import { AclFilterResponseInterceptor } from "../../interceptors/aclFilterResponse.interceptor"; +import { AclValidateRequestInterceptor } from "../../interceptors/aclValidateRequest.interceptor"; +import { map } from "rxjs"; +import { UserController } from "../user.controller"; +import { UserService } from "../user.service"; + +const nonExistingId = "nonExistingId"; +const existingId = "existingId"; +const CREATE_INPUT = { + createdAt: new Date(), + firstName: "exampleFirstName", + id: "exampleId", + lastName: "exampleLastName", + password: "examplePassword", + updatedAt: new Date(), + username: "exampleUsername", +}; +const CREATE_RESULT = { + createdAt: new Date(), + firstName: "exampleFirstName", + id: "exampleId", + lastName: "exampleLastName", + password: "examplePassword", + updatedAt: new Date(), + username: "exampleUsername", +}; +const FIND_MANY_RESULT = [ + { + createdAt: new Date(), + firstName: "exampleFirstName", + id: "exampleId", + lastName: "exampleLastName", + password: "examplePassword", + updatedAt: new Date(), + username: "exampleUsername", + }, +]; +const FIND_ONE_RESULT = { + createdAt: new Date(), + firstName: "exampleFirstName", + id: "exampleId", + lastName: "exampleLastName", + password: "examplePassword", + updatedAt: new Date(), + username: "exampleUsername", +}; + +const service = {}; + +const basicAuthGuard = { + canActivate: (context: ExecutionContext) => { + const argumentHost = context.switchToHttp(); + const request = argumentHost.getRequest(); + request.user = { + roles: ["user"], + }; + return true; + }, +}; + +const acGuard = { + canActivate: () => { + return true; + }, +}; + +const aclFilterResponseInterceptor = { + intercept: (context: ExecutionContext, next: CallHandler) => { + return next.handle().pipe( + map((data) => { + return data; + }) + ); + }, +}; +const aclValidateRequestInterceptor = { + intercept: (context: ExecutionContext, next: CallHandler) => { + return next.handle(); + }, +}; + +describe("User", () => { + let app: INestApplication; + + beforeAll(async () => { + const moduleRef = await Test.createTestingModule({ + providers: [ + { + provide: UserService, + useValue: service, + }, + ], + controllers: [UserController], + imports: [ACLModule], + }) + .overrideGuard(DefaultAuthGuard) + .useValue(basicAuthGuard) + .overrideGuard(ACGuard) + .useValue(acGuard) + .overrideInterceptor(AclFilterResponseInterceptor) + .useValue(aclFilterResponseInterceptor) + .overrideInterceptor(AclValidateRequestInterceptor) + .useValue(aclValidateRequestInterceptor) + .compile(); + + app = moduleRef.createNestApplication(); + await app.init(); + }); + + afterAll(async () => { + await app.close(); + }); +}); diff --git a/apps/notification-service/src/user/base/user.controller.base.ts b/apps/notification-service/src/user/base/user.controller.base.ts new file mode 100644 index 0000000..dac1998 --- /dev/null +++ b/apps/notification-service/src/user/base/user.controller.base.ts @@ -0,0 +1,30 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import * as common from "@nestjs/common"; +import * as swagger from "@nestjs/swagger"; +import { isRecordNotFoundError } from "../../prisma.util"; +import * as errors from "../../errors"; +import { Request } from "express"; +import { plainToClass } from "class-transformer"; +import { ApiNestedQuery } from "../../decorators/api-nested-query.decorator"; +import * as nestAccessControl from "nest-access-control"; +import * as defaultAuthGuard from "../../auth/defaultAuth.guard"; +import { UserService } from "../user.service"; + +@swagger.ApiBearerAuth() +@common.UseGuards(defaultAuthGuard.DefaultAuthGuard, nestAccessControl.ACGuard) +export class UserControllerBase { + constructor( + protected readonly service: UserService, + protected readonly rolesBuilder: nestAccessControl.RolesBuilder + ) {} +} diff --git a/apps/notification-service/src/user/base/user.module.base.ts b/apps/notification-service/src/user/base/user.module.base.ts new file mode 100644 index 0000000..a8b6c68 --- /dev/null +++ b/apps/notification-service/src/user/base/user.module.base.ts @@ -0,0 +1,18 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { Module } from "@nestjs/common"; +import { ACLModule } from "../../auth/acl.module"; +@Module({ + imports: [ACLModule], + exports: [ACLModule], +}) +export class UserModuleBase {} diff --git a/apps/notification-service/src/user/base/user.service.base.ts b/apps/notification-service/src/user/base/user.service.base.ts new file mode 100644 index 0000000..d23387f --- /dev/null +++ b/apps/notification-service/src/user/base/user.service.base.ts @@ -0,0 +1,74 @@ +/* +------------------------------------------------------------------------------ +This code was generated by Amplication. + +Changes to this file will be lost if the code is regenerated. + +There are other ways to to customize your code, see this doc to learn more +https://docs.amplication.com/how-to/custom-code + +------------------------------------------------------------------------------ + */ +import { PrismaService } from "../../prisma/prisma.service"; +import { Prisma, User } from "@prisma/client"; +import { PasswordService } from "../../auth/password.service"; +import { transformStringFieldUpdateInput } from "../../prisma.util"; + +export class UserServiceBase { + constructor( + protected readonly prisma: PrismaService, + protected readonly passwordService: PasswordService + ) {} + + async count( + args: Prisma.SelectSubset + ): Promise { + return this.prisma.user.count(args); + } + + async users( + args: Prisma.SelectSubset + ): Promise { + return this.prisma.user.findMany(args); + } + async user( + args: Prisma.SelectSubset + ): Promise { + return this.prisma.user.findUnique(args); + } + async createUser( + args: Prisma.SelectSubset + ): Promise { + return this.prisma.user.create({ + ...args, + + data: { + ...args.data, + password: await this.passwordService.hash(args.data.password), + }, + }); + } + async updateUser( + args: Prisma.SelectSubset + ): Promise { + return this.prisma.user.update({ + ...args, + + data: { + ...args.data, + + password: + args.data.password && + (await transformStringFieldUpdateInput( + args.data.password, + (password) => this.passwordService.hash(password) + )), + }, + }); + } + async deleteUser( + args: Prisma.SelectSubset + ): Promise { + return this.prisma.user.delete(args); + } +} diff --git a/apps/notification-service/src/user/user.controller.ts b/apps/notification-service/src/user/user.controller.ts new file mode 100644 index 0000000..21d9583 --- /dev/null +++ b/apps/notification-service/src/user/user.controller.ts @@ -0,0 +1,17 @@ +import * as common from "@nestjs/common"; +import * as swagger from "@nestjs/swagger"; +import * as nestAccessControl from "nest-access-control"; +import { UserService } from "./user.service"; +import { UserControllerBase } from "./base/user.controller.base"; + +@swagger.ApiTags("users") +@common.Controller("users") +export class UserController extends UserControllerBase { + constructor( + protected readonly service: UserService, + @nestAccessControl.InjectRolesBuilder() + protected readonly rolesBuilder: nestAccessControl.RolesBuilder + ) { + super(service, rolesBuilder); + } +} diff --git a/apps/notification-service/src/user/user.module.ts b/apps/notification-service/src/user/user.module.ts new file mode 100644 index 0000000..3ad610a --- /dev/null +++ b/apps/notification-service/src/user/user.module.ts @@ -0,0 +1,13 @@ +import { Module, forwardRef } from "@nestjs/common"; +import { AuthModule } from "../auth/auth.module"; +import { UserModuleBase } from "./base/user.module.base"; +import { UserService } from "./user.service"; +import { UserController } from "./user.controller"; + +@Module({ + imports: [UserModuleBase, forwardRef(() => AuthModule)], + controllers: [UserController], + providers: [UserService], + exports: [UserService], +}) +export class UserModule {} diff --git a/apps/notification-service/src/user/user.service.ts b/apps/notification-service/src/user/user.service.ts new file mode 100644 index 0000000..a8e4508 --- /dev/null +++ b/apps/notification-service/src/user/user.service.ts @@ -0,0 +1,14 @@ +import { Injectable } from "@nestjs/common"; +import { PrismaService } from "../prisma/prisma.service"; +import { PasswordService } from "../auth/password.service"; +import { UserServiceBase } from "./base/user.service.base"; + +@Injectable() +export class UserService extends UserServiceBase { + constructor( + protected readonly prisma: PrismaService, + protected readonly passwordService: PasswordService + ) { + super(prisma, passwordService); + } +} diff --git a/apps/notification-service/src/util/BooleanFilter.ts b/apps/notification-service/src/util/BooleanFilter.ts new file mode 100644 index 0000000..75f4e34 --- /dev/null +++ b/apps/notification-service/src/util/BooleanFilter.ts @@ -0,0 +1,32 @@ +import { Field, InputType } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsOptional } from "class-validator"; +import { Type } from "class-transformer"; + +@InputType({ + isAbstract: true, + description: undefined, +}) +export class BooleanFilter { + @ApiProperty({ + required: false, + type: Boolean, + }) + @IsOptional() + @Field(() => Boolean, { + nullable: true, + }) + @Type(() => Boolean) + equals?: boolean; + + @ApiProperty({ + required: false, + type: Boolean, + }) + @IsOptional() + @Field(() => Boolean, { + nullable: true, + }) + @Type(() => Boolean) + not?: boolean; +} diff --git a/apps/notification-service/src/util/BooleanNullableFilter.ts b/apps/notification-service/src/util/BooleanNullableFilter.ts new file mode 100644 index 0000000..9f48ac1 --- /dev/null +++ b/apps/notification-service/src/util/BooleanNullableFilter.ts @@ -0,0 +1,31 @@ +import { Field, InputType } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsOptional } from "class-validator"; +import { Type } from "class-transformer"; +@InputType({ + isAbstract: true, + description: undefined, +}) +export class BooleanNullableFilter { + @ApiProperty({ + required: false, + type: Boolean, + }) + @IsOptional() + @Field(() => Boolean, { + nullable: true, + }) + @Type(() => Boolean) + equals?: boolean | null; + + @ApiProperty({ + required: false, + type: Boolean, + }) + @IsOptional() + @Field(() => Boolean, { + nullable: true, + }) + @Type(() => Boolean) + not?: boolean | null; +} diff --git a/apps/notification-service/src/util/DateTimeFilter.ts b/apps/notification-service/src/util/DateTimeFilter.ts new file mode 100644 index 0000000..d2b6dfb --- /dev/null +++ b/apps/notification-service/src/util/DateTimeFilter.ts @@ -0,0 +1,97 @@ +import { Field, InputType } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsOptional } from "class-validator"; +import { Type } from "class-transformer"; +@InputType({ + isAbstract: true, + description: undefined, +}) +export class DateTimeFilter { + @ApiProperty({ + required: false, + type: Date, + }) + @IsOptional() + @Field(() => Date, { + nullable: true, + }) + @Type(() => Date) + equals?: Date; + + @ApiProperty({ + required: false, + type: Date, + }) + @IsOptional() + @Field(() => Date, { + nullable: true, + }) + @Type(() => Date) + not?: Date; + + @ApiProperty({ + required: false, + type: [Date], + }) + @IsOptional() + @Field(() => [Date], { + nullable: true, + }) + @Type(() => Date) + in?: Date[]; + + @ApiProperty({ + required: false, + type: [Date], + }) + @IsOptional() + @Field(() => [Date], { + nullable: true, + }) + @Type(() => Date) + notIn?: Date[]; + + @ApiProperty({ + required: false, + type: Date, + }) + @IsOptional() + @Field(() => Date, { + nullable: true, + }) + @Type(() => Date) + lt?: Date; + + @ApiProperty({ + required: false, + type: Date, + }) + @IsOptional() + @Field(() => Date, { + nullable: true, + }) + @Type(() => Date) + lte?: Date; + + @ApiProperty({ + required: false, + type: Date, + }) + @IsOptional() + @Field(() => Date, { + nullable: true, + }) + @Type(() => Date) + gt?: Date; + + @ApiProperty({ + required: false, + type: Date, + }) + @IsOptional() + @Field(() => Date, { + nullable: true, + }) + @Type(() => Date) + gte?: Date; +} diff --git a/apps/notification-service/src/util/DateTimeNullableFilter.ts b/apps/notification-service/src/util/DateTimeNullableFilter.ts new file mode 100644 index 0000000..ccc00a5 --- /dev/null +++ b/apps/notification-service/src/util/DateTimeNullableFilter.ts @@ -0,0 +1,97 @@ +import { Field, InputType } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsOptional } from "class-validator"; +import { Type } from "class-transformer"; +@InputType({ + isAbstract: true, + description: undefined, +}) +export class DateTimeNullableFilter { + @ApiProperty({ + required: false, + type: Date, + }) + @IsOptional() + @Field(() => Date, { + nullable: true, + }) + @Type(() => Date) + equals?: Date | null; + + @ApiProperty({ + required: false, + type: [Date], + }) + @IsOptional() + @Field(() => [Date], { + nullable: true, + }) + @Type(() => Date) + in?: Date[] | null; + + @ApiProperty({ + required: false, + type: [Date], + }) + @IsOptional() + @Field(() => [Date], { + nullable: true, + }) + @Type(() => Date) + notIn?: Date[] | null; + + @ApiProperty({ + required: false, + type: Date, + }) + @IsOptional() + @Field(() => Date, { + nullable: true, + }) + @Type(() => Date) + lt?: Date; + + @ApiProperty({ + required: false, + type: Date, + }) + @IsOptional() + @Field(() => Date, { + nullable: true, + }) + @Type(() => Date) + lte?: Date; + + @ApiProperty({ + required: false, + type: Date, + }) + @IsOptional() + @Field(() => Date, { + nullable: true, + }) + @Type(() => Date) + gt?: Date; + + @ApiProperty({ + required: false, + type: Date, + }) + @IsOptional() + @Field(() => Date, { + nullable: true, + }) + @Type(() => Date) + gte?: Date; + + @ApiProperty({ + required: false, + type: Date, + }) + @IsOptional() + @Field(() => Date, { + nullable: true, + }) + @Type(() => Date) + not?: Date; +} diff --git a/apps/notification-service/src/util/FloatFilter.ts b/apps/notification-service/src/util/FloatFilter.ts new file mode 100644 index 0000000..a3266d2 --- /dev/null +++ b/apps/notification-service/src/util/FloatFilter.ts @@ -0,0 +1,98 @@ +import { Field, InputType, Float } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsOptional } from "class-validator"; +import { Type } from "class-transformer"; + +@InputType({ + isAbstract: true, + description: undefined, +}) +export class FloatFilter { + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Float, { + nullable: true, + }) + @Type(() => Number) + equals?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => [Float], { + nullable: true, + }) + @Type(() => Number) + in?: number[]; + + @ApiProperty({ + required: false, + type: [Number], + }) + @IsOptional() + @Field(() => [Float], { + nullable: true, + }) + @Type(() => Number) + notIn?: number[]; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Float, { + nullable: true, + }) + @Type(() => Number) + lt?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Float, { + nullable: true, + }) + @Type(() => Number) + lte?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Float, { + nullable: true, + }) + @Type(() => Number) + gt?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Float, { + nullable: true, + }) + @Type(() => Number) + gte?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Float, { + nullable: true, + }) + @Type(() => Number) + not?: number; +} diff --git a/apps/notification-service/src/util/FloatNullableFilter.ts b/apps/notification-service/src/util/FloatNullableFilter.ts new file mode 100644 index 0000000..feb0fc5 --- /dev/null +++ b/apps/notification-service/src/util/FloatNullableFilter.ts @@ -0,0 +1,98 @@ +import { Field, InputType, Float } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsOptional } from "class-validator"; +import { Type } from "class-transformer"; + +@InputType({ + isAbstract: true, + description: undefined, +}) +export class FloatNullableFilter { + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Float, { + nullable: true, + }) + @Type(() => Number) + equals?: number | null; + + @ApiProperty({ + required: false, + type: [Number], + }) + @IsOptional() + @Field(() => [Float], { + nullable: true, + }) + @Type(() => Number) + in?: number[] | null; + + @ApiProperty({ + required: false, + type: [Number], + }) + @IsOptional() + @Field(() => [Float], { + nullable: true, + }) + @Type(() => Number) + notIn?: number[] | null; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Float, { + nullable: true, + }) + @Type(() => Number) + lt?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Float, { + nullable: true, + }) + @Type(() => Number) + lte?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Float, { + nullable: true, + }) + @Type(() => Number) + gt?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Float, { + nullable: true, + }) + @Type(() => Number) + gte?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Float, { + nullable: true, + }) + @Type(() => Number) + not?: number; +} diff --git a/apps/notification-service/src/util/IntFilter.ts b/apps/notification-service/src/util/IntFilter.ts new file mode 100644 index 0000000..f6880e7 --- /dev/null +++ b/apps/notification-service/src/util/IntFilter.ts @@ -0,0 +1,98 @@ +import { Field, InputType, Int } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsOptional } from "class-validator"; +import { Type } from "class-transformer"; + +@InputType({ + isAbstract: true, + description: undefined, +}) +export class IntFilter { + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Int, { + nullable: true, + }) + @Type(() => Number) + equals?: number; + + @ApiProperty({ + required: false, + type: [Number], + }) + @IsOptional() + @Field(() => [Int], { + nullable: true, + }) + @Type(() => Number) + in?: number[]; + + @ApiProperty({ + required: false, + type: [Number], + }) + @IsOptional() + @Field(() => [Int], { + nullable: true, + }) + @Type(() => Number) + notIn?: number[]; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Int, { + nullable: true, + }) + @Type(() => Number) + lt?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Int, { + nullable: true, + }) + @Type(() => Number) + lte?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Int, { + nullable: true, + }) + @Type(() => Number) + gt?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Int, { + nullable: true, + }) + @Type(() => Number) + gte?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Int, { + nullable: true, + }) + @Type(() => Number) + not?: number; +} diff --git a/apps/notification-service/src/util/IntNullableFilter.ts b/apps/notification-service/src/util/IntNullableFilter.ts new file mode 100644 index 0000000..e3b71a3 --- /dev/null +++ b/apps/notification-service/src/util/IntNullableFilter.ts @@ -0,0 +1,98 @@ +import { Field, InputType, Int } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsOptional } from "class-validator"; +import { Type } from "class-transformer"; + +@InputType({ + isAbstract: true, + description: undefined, +}) +export class IntNullableFilter { + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Int, { + nullable: true, + }) + @Type(() => Number) + equals?: number | null; + + @ApiProperty({ + required: false, + type: [Number], + }) + @IsOptional() + @Field(() => [Int], { + nullable: true, + }) + @Type(() => Number) + in?: number[] | null; + + @ApiProperty({ + required: false, + type: [Number], + }) + @IsOptional() + @Field(() => [Int], { + nullable: true, + }) + @Type(() => Number) + notIn?: number[] | null; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Int, { + nullable: true, + }) + @Type(() => Number) + lt?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Int, { + nullable: true, + }) + @Type(() => Number) + lte?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Int, { + nullable: true, + }) + @Type(() => Number) + gt?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Int, { + nullable: true, + }) + @Type(() => Number) + gte?: number; + + @ApiProperty({ + required: false, + type: Number, + }) + @IsOptional() + @Field(() => Int, { + nullable: true, + }) + @Type(() => Number) + not?: number; +} diff --git a/apps/notification-service/src/util/JsonFilter.ts b/apps/notification-service/src/util/JsonFilter.ts new file mode 100644 index 0000000..7040b74 --- /dev/null +++ b/apps/notification-service/src/util/JsonFilter.ts @@ -0,0 +1,31 @@ +import { Field, InputType } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsOptional } from "class-validator"; +import { GraphQLJSONObject } from "graphql-type-json"; +import { InputJsonValue } from "../types"; + +@InputType({ + isAbstract: true, + description: undefined, +}) +export class JsonFilter { + @ApiProperty({ + required: false, + type: GraphQLJSONObject, + }) + @IsOptional() + @Field(() => GraphQLJSONObject, { + nullable: true, + }) + equals?: InputJsonValue; + + @ApiProperty({ + required: false, + type: GraphQLJSONObject, + }) + @IsOptional() + @Field(() => GraphQLJSONObject, { + nullable: true, + }) + not?: InputJsonValue; +} diff --git a/apps/notification-service/src/util/JsonNullableFilter.ts b/apps/notification-service/src/util/JsonNullableFilter.ts new file mode 100644 index 0000000..3381d52 --- /dev/null +++ b/apps/notification-service/src/util/JsonNullableFilter.ts @@ -0,0 +1,31 @@ +import type { JsonValue } from "type-fest"; +import { Field, InputType } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsOptional } from "class-validator"; +import { GraphQLJSONObject } from "graphql-type-json"; + +@InputType({ + isAbstract: true, + description: undefined, +}) +export class JsonNullableFilter { + @ApiProperty({ + required: false, + type: GraphQLJSONObject, + }) + @IsOptional() + @Field(() => GraphQLJSONObject, { + nullable: true, + }) + equals?: JsonValue; + + @ApiProperty({ + required: false, + type: GraphQLJSONObject, + }) + @IsOptional() + @Field(() => GraphQLJSONObject, { + nullable: true, + }) + not?: JsonValue; +} diff --git a/apps/notification-service/src/util/MetaQueryPayload.ts b/apps/notification-service/src/util/MetaQueryPayload.ts new file mode 100644 index 0000000..fc30531 --- /dev/null +++ b/apps/notification-service/src/util/MetaQueryPayload.ts @@ -0,0 +1,13 @@ +import { ObjectType, Field } from "@nestjs/graphql"; +import { ApiProperty } from "@nestjs/swagger"; + +@ObjectType() +class MetaQueryPayload { + @ApiProperty({ + required: true, + type: [Number], + }) + @Field(() => Number) + count!: number; +} +export { MetaQueryPayload }; diff --git a/apps/notification-service/src/util/QueryMode.ts b/apps/notification-service/src/util/QueryMode.ts new file mode 100644 index 0000000..f9b1653 --- /dev/null +++ b/apps/notification-service/src/util/QueryMode.ts @@ -0,0 +1,10 @@ +import { registerEnumType } from "@nestjs/graphql"; + +export enum QueryMode { + Default = "default", + Insensitive = "insensitive", +} +registerEnumType(QueryMode, { + name: "QueryMode", + description: undefined, +}); diff --git a/apps/notification-service/src/util/SortOrder.ts b/apps/notification-service/src/util/SortOrder.ts new file mode 100644 index 0000000..d4108e6 --- /dev/null +++ b/apps/notification-service/src/util/SortOrder.ts @@ -0,0 +1,10 @@ +import { registerEnumType } from "@nestjs/graphql"; + +export enum SortOrder { + Asc = "asc", + Desc = "desc", +} +registerEnumType(SortOrder, { + name: "SortOrder", + description: undefined, +}); diff --git a/apps/notification-service/src/util/StringFilter.ts b/apps/notification-service/src/util/StringFilter.ts new file mode 100644 index 0000000..80b573d --- /dev/null +++ b/apps/notification-service/src/util/StringFilter.ts @@ -0,0 +1,141 @@ +import { Field, InputType } from "@nestjs/graphql"; +import { QueryMode } from "./QueryMode"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsOptional } from "class-validator"; +import { Type } from "class-transformer"; + +@InputType({ + isAbstract: true, +}) +export class StringFilter { + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + equals?: string; + + @ApiProperty({ + required: false, + type: [String], + }) + @IsOptional() + @Field(() => [String], { + nullable: true, + }) + @Type(() => String) + in?: string[]; + + @ApiProperty({ + required: false, + type: [String], + }) + @IsOptional() + @Field(() => [String], { + nullable: true, + }) + @Type(() => String) + notIn?: string[]; + + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + lt?: string; + + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + lte?: string; + + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + gt?: string; + + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + gte?: string; + + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + contains?: string; + + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + startsWith?: string; + + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + endsWith?: string; + + @ApiProperty({ + required: false, + enum: ["Default", "Insensitive"], + }) + @IsOptional() + @Field(() => QueryMode, { + nullable: true, + }) + mode?: QueryMode; + + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + not?: string; +} diff --git a/apps/notification-service/src/util/StringNullableFilter.ts b/apps/notification-service/src/util/StringNullableFilter.ts new file mode 100644 index 0000000..01b399c --- /dev/null +++ b/apps/notification-service/src/util/StringNullableFilter.ts @@ -0,0 +1,141 @@ +import { Field, InputType } from "@nestjs/graphql"; +import { QueryMode } from "./QueryMode"; +import { ApiProperty } from "@nestjs/swagger"; +import { IsOptional } from "class-validator"; +import { Type } from "class-transformer"; + +@InputType({ + isAbstract: true, +}) +export class StringNullableFilter { + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + equals?: string | null; + + @ApiProperty({ + required: false, + type: [String], + }) + @IsOptional() + @Field(() => [String], { + nullable: true, + }) + @Type(() => String) + in?: string[] | null; + + @ApiProperty({ + required: false, + type: [String], + }) + @IsOptional() + @Field(() => [String], { + nullable: true, + }) + @Type(() => String) + notIn?: string[] | null; + + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + lt?: string; + + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + lte?: string; + + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + gt?: string; + + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + gte?: string; + + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + contains?: string; + + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + startsWith?: string; + + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + endsWith?: string; + + @ApiProperty({ + required: false, + enum: ["Default", "Insensitive"], + }) + @IsOptional() + @Field(() => QueryMode, { + nullable: true, + }) + mode?: QueryMode; + + @ApiProperty({ + required: false, + type: String, + }) + @IsOptional() + @Field(() => String, { + nullable: true, + }) + @Type(() => String) + not?: string; +} diff --git a/apps/notification-service/src/validators/index.ts b/apps/notification-service/src/validators/index.ts new file mode 100644 index 0000000..7f62d84 --- /dev/null +++ b/apps/notification-service/src/validators/index.ts @@ -0,0 +1 @@ +export * from "./is-json-value-validator"; diff --git a/apps/notification-service/src/validators/is-json-value-validator.spec.ts b/apps/notification-service/src/validators/is-json-value-validator.spec.ts new file mode 100644 index 0000000..5a77824 --- /dev/null +++ b/apps/notification-service/src/validators/is-json-value-validator.spec.ts @@ -0,0 +1,44 @@ +import { validate, ValidationError } from "class-validator"; +import { IsJSONValue } from "./is-json-value-validator"; + +class TestClass { + @IsJSONValue() + jsonProperty: unknown; +} + +describe("IsJSONValue", () => { + it("should validate a valid JSON string", async () => { + const testObj = new TestClass(); + testObj.jsonProperty = '{"name": "John", "age": 30}'; + const errors: ValidationError[] = await validate(testObj); + expect(errors.length).toBe(0); + }); + + it("should not validate an invalid JSON string", async () => { + const testObj = new TestClass(); + testObj.jsonProperty = '{name: "John", age: 30}'; + const errors: ValidationError[] = await validate(testObj); + expect(errors.length).toBe(1); + }); + + it("should not validate an invalid JSON string", async () => { + const testObj = new TestClass(); + testObj.jsonProperty = "John"; + const errors: ValidationError[] = await validate(testObj); + expect(errors.length).toBe(1); + }); + + it("should validate a valid JSON object", async () => { + const testObj = new TestClass(); + testObj.jsonProperty = { name: "John", age: 30 }; + const errors: ValidationError[] = await validate(testObj); + expect(errors.length).toBe(0); + }); + + it("should validate a valid JSON array", async () => { + const testObj = new TestClass(); + testObj.jsonProperty = ["John", "30"]; + const errors: ValidationError[] = await validate(testObj); + expect(errors.length).toBe(0); + }); +}); diff --git a/apps/notification-service/src/validators/is-json-value-validator.ts b/apps/notification-service/src/validators/is-json-value-validator.ts new file mode 100644 index 0000000..1002540 --- /dev/null +++ b/apps/notification-service/src/validators/is-json-value-validator.ts @@ -0,0 +1,29 @@ +import { + ValidationArguments, + registerDecorator, + ValidationOptions, +} from "class-validator"; +import isJSONValidator from "validator/lib/isJSON"; + +export function IsJSONValue(validationOptions?: ValidationOptions) { + return function (object: Record, propertyName: string) { + registerDecorator({ + name: "IsJSONValue", + target: object.constructor, + propertyName: propertyName, + options: validationOptions, + validator: { + validate(value: any, args: ValidationArguments) { + if (typeof value === "string") { + return isJSONValidator(value); + } + + return isJSONValidator(JSON.stringify(value)); + }, + defaultMessage(args: ValidationArguments): string { + return `${args.property} must be a valid json`; + }, + }, + }); + }; +} diff --git a/apps/notification-service/tsconfig.build.json b/apps/notification-service/tsconfig.build.json new file mode 100644 index 0000000..e579401 --- /dev/null +++ b/apps/notification-service/tsconfig.build.json @@ -0,0 +1,4 @@ +{ + "extends": "./tsconfig.json", + "exclude": ["node_modules", "prisma", "test", "dist", "**/*spec.ts", "admin"] +} diff --git a/apps/notification-service/tsconfig.json b/apps/notification-service/tsconfig.json new file mode 100644 index 0000000..707e8cd --- /dev/null +++ b/apps/notification-service/tsconfig.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "baseUrl": "./", + "module": "commonjs", + "declaration": false, + "removeComments": true, + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "target": "es2022", + "lib": ["es2023"], + "sourceMap": true, + "outDir": "./dist", + "incremental": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "resolveJsonModule": true, + "skipLibCheck": true, + "strict": true + }, + "include": ["src"] +}