This commit is contained in:
Kfir Dayan 2023-07-09 11:10:08 +03:00
parent 8497091309
commit 429ddebf02
4 changed files with 27 additions and 13 deletions

View file

@ -8,15 +8,12 @@ services:
volumes:
- mongodb_vol:/data/db
- ./mongo-init-scripts/init.js:/docker-entrypoint-initdb.d/mongo-init.js
environment:
- MONGO_INITDB_DATABASE=${MONGO_INITDB_DATABASE}
- MONGO_INITDB_ROOT_USERNAME=${MONGO_INITDB_ROOT_USERNAME}
- MONGO_INITDB_ROOT_PASSWORD=${MONGO_INITDB_ROOT_PASSWORD}
platform: linux/arm64/v8
expose:
- 27017
rabbitmq:
image: todorabbit:latest
image: kfda89/todorabbit:latest
restart: always
ports:
- 5672:5672
@ -24,9 +21,6 @@ services:
volumes:
- rabbitmq_volume:/var/lib/rabbitmq
- ./rabbitmq-init-scripts/init.sh:/docker-entrypoint-initdb.d/init.sh
environment:
- RABBITMQ_DEFAULT_USER=${RABBITMQ_DEFAULT_USER}
- RABBITMQ_DEFAULT_PASS=${RABBITMQ_DEFAULT_PASS}
expose:
- 5672
- 15672

View file

@ -0,0 +1,20 @@
# Use the official Node.js 14 image as the base
FROM node:14
# Set the working directory in the container
WORKDIR /app
# Copy package.json and package-lock.json to the container
COPY package*.json ./
# Install project dependencies
RUN npm install
# Copy the rest of the application code to the container
COPY . .
# Expose the port on which your Express app listens
EXPOSE 4000
# Start the application in development mode
CMD ["npm", "run", "dev"]

View file

@ -4,7 +4,7 @@
"description": "",
"main": "main.js",
"scripts": {
"dev": "tsc && nodemon dist/main.js"
"dev": "node dist/main.js"
},
"keywords": [],
"author": "",

View file

@ -4,11 +4,11 @@ import { MongoDbModel } from "./mongodb/MongoDb";
export class NotificationService {
rabbitmq: RabbitMQ;
mongoModle: MongoDbModel;
mongoModel: MongoDbModel;
constructor() {
this.rabbitmq = new RabbitMQ();
this.mongoModle = new MongoDbModel();
this.mongoModel = new MongoDbModel();
this.startListener();
}
@ -20,11 +20,11 @@ export class NotificationService {
}
async newMessageValidator(message: ITodo) {
const todo = await this.mongoModle.getTodoById(message._id.toString());
const todo = await this.mongoModel.getTodoById(message._id.toString());
if (todo) {
const due_date = new Date(todo.due_date);
if (todo.status === "pending" && due_date > new Date()) {
await this.mongoModle.updateTodoStatus(todo);
await this.mongoModel.updateTodoStatus(todo);
await this.sendNotification(todo); // Send notification to user
}
}