Skip to content

Commit 8a54efe

Browse files
committed
feat: Add NATS integration and update Baileys service
- Create Nats table in PostgreSQL migration - Disable message recovery logic in Baileys service - Remove console log in instance creation route
1 parent b58d9e9 commit 8a54efe

File tree

3 files changed

+30
-14
lines changed

3 files changed

+30
-14
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
-- CreateTable
2+
CREATE TABLE "Nats" (
3+
"id" TEXT NOT NULL,
4+
"enabled" BOOLEAN NOT NULL DEFAULT false,
5+
"events" JSONB NOT NULL,
6+
"createdAt" TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
7+
"updatedAt" TIMESTAMP NOT NULL,
8+
"instanceId" TEXT NOT NULL,
9+
10+
CONSTRAINT "Nats_pkey" PRIMARY KEY ("id")
11+
);
12+
13+
-- CreateIndex
14+
CREATE UNIQUE INDEX "Nats_instanceId_key" ON "Nats"("instanceId");
15+
16+
-- AddForeignKey
17+
ALTER TABLE "Nats" ADD CONSTRAINT "Nats_instanceId_fkey" FOREIGN KEY ("instanceId") REFERENCES "Instance"("id") ON DELETE CASCADE ON UPDATE CASCADE;

src/api/integrations/channel/whatsapp/whatsapp.baileys.service.ts

+13-13
Original file line numberDiff line numberDiff line change
@@ -1148,23 +1148,23 @@ export class BaileysStartupService extends ChannelStartupService {
11481148
}
11491149
}
11501150

1151-
if (received.messageStubParameters && received.messageStubParameters[0] === 'Message absent from node') {
1152-
this.logger.info(`Recovering message lost messageId: ${received.key.id}`);
1151+
// if (received.messageStubParameters && received.messageStubParameters[0] === 'Message absent from node') {
1152+
// this.logger.info(`Recovering message lost messageId: ${received.key.id}`);
11531153

1154-
await this.baileysCache.set(received.key.id, {
1155-
message: received,
1156-
retry: 0,
1157-
});
1154+
// await this.baileysCache.set(received.key.id, {
1155+
// message: received,
1156+
// retry: 0,
1157+
// });
11581158

1159-
continue;
1160-
}
1159+
// continue;
1160+
// }
11611161

1162-
const retryCache = (await this.baileysCache.get(received.key.id)) || null;
1162+
// const retryCache = (await this.baileysCache.get(received.key.id)) || null;
11631163

1164-
if (retryCache) {
1165-
this.logger.info('Recovered message lost');
1166-
await this.baileysCache.delete(received.key.id);
1167-
}
1164+
// if (retryCache) {
1165+
// this.logger.info('Recovered message lost');
1166+
// await this.baileysCache.delete(received.key.id);
1167+
// }
11681168

11691169
// Cache to avoid duplicate messages
11701170
const messageKey = `${this.instance.id}_${received.key.id}`;

src/api/routes/instance.router.ts

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ export class InstanceRouter extends RouterBroker {
1515
super();
1616
this.router
1717
.post('/create', ...guards, async (req, res) => {
18-
console.log('create instance', req.body);
1918
const response = await this.dataValidate<InstanceDto>({
2019
request: req,
2120
schema: instanceSchema,

0 commit comments

Comments
 (0)