mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-11 02:49:36 -06:00
73 lines
2.1 KiB
TypeScript
73 lines
2.1 KiB
TypeScript
import { PrismaRepository } from '@api/repository/repository.service';
|
|
import { WAMonitoringService } from '@api/services/monitor.service';
|
|
import { Logger } from '@config/logger.config';
|
|
import axios from 'axios';
|
|
|
|
import { ChannelController, ChannelControllerInterface } from '../channel.controller';
|
|
|
|
export class MetaController extends ChannelController implements ChannelControllerInterface {
|
|
private readonly logger = new Logger(MetaController.name);
|
|
|
|
constructor(prismaRepository: PrismaRepository, waMonitor: WAMonitoringService) {
|
|
super(prismaRepository, waMonitor);
|
|
}
|
|
|
|
integrationEnabled: boolean;
|
|
|
|
public async receiveWebhook(data: any) {
|
|
if (data.object === 'whatsapp_business_account') {
|
|
if (data.entry[0]?.changes[0]?.field === 'message_template_status_update') {
|
|
const template = await this.prismaRepository.template.findFirst({
|
|
where: { templateId: `${data.entry[0].changes[0].value.message_template_id}` },
|
|
});
|
|
|
|
if (!template) {
|
|
console.log('template not found');
|
|
return;
|
|
}
|
|
|
|
const { webhookUrl } = template;
|
|
|
|
await axios.post(webhookUrl, data.entry[0].changes[0].value, {
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
});
|
|
return;
|
|
}
|
|
|
|
data.entry?.forEach(async (entry: any) => {
|
|
const numberId = entry.changes[0].value.metadata.phone_number_id;
|
|
|
|
if (!numberId) {
|
|
this.logger.error('WebhookService -> receiveWebhookMeta -> numberId not found');
|
|
return {
|
|
status: 'success',
|
|
};
|
|
}
|
|
|
|
const instance = await this.prismaRepository.instance.findFirst({
|
|
where: { number: numberId },
|
|
});
|
|
|
|
if (!instance) {
|
|
this.logger.error('WebhookService -> receiveWebhookMeta -> instance not found');
|
|
return {
|
|
status: 'success',
|
|
};
|
|
}
|
|
|
|
await this.waMonitor.waInstances[instance.name].connectToWhatsapp(data);
|
|
|
|
return {
|
|
status: 'success',
|
|
};
|
|
});
|
|
}
|
|
|
|
return {
|
|
status: 'success',
|
|
};
|
|
}
|
|
}
|