mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-27 15:47:45 -06:00
feat(template): add edit/delete endpoints, DTOs and validation"
This commit is contained in:
@@ -88,6 +88,77 @@ export class TemplateService {
|
||||
}
|
||||
}
|
||||
|
||||
public async edit(
|
||||
instance: InstanceDto,
|
||||
data: { templateId: string; category?: string; components?: any; allowCategoryChange?: boolean; ttl?: number },
|
||||
) {
|
||||
const getInstance = await this.waMonitor.waInstances[instance.instanceName].instance;
|
||||
if (!getInstance) {
|
||||
throw new Error('Instance not found');
|
||||
}
|
||||
|
||||
this.businessId = getInstance.businessId;
|
||||
this.token = getInstance.token;
|
||||
|
||||
const payload: Record<string, unknown> = {};
|
||||
if (typeof data.category === 'string') payload.category = data.category;
|
||||
if (typeof data.allowCategoryChange === 'boolean') payload.allow_category_change = data.allowCategoryChange;
|
||||
if (typeof data.ttl === 'number') payload.time_to_live = data.ttl;
|
||||
if (data.components) payload.components = data.components;
|
||||
|
||||
const response = await this.requestEditTemplate(data.templateId, payload);
|
||||
|
||||
if (!response || response.error) {
|
||||
if (response && response.error) {
|
||||
const metaError = new Error(response.error.message || 'WhatsApp API Error');
|
||||
(metaError as any).template = response.error;
|
||||
throw metaError;
|
||||
}
|
||||
throw new Error('Error to edit template');
|
||||
}
|
||||
|
||||
return response;
|
||||
}
|
||||
|
||||
public async delete(instance: InstanceDto, data: { name: string; hsmId?: string }) {
|
||||
const getInstance = await this.waMonitor.waInstances[instance.instanceName].instance;
|
||||
if (!getInstance) {
|
||||
throw new Error('Instance not found');
|
||||
}
|
||||
|
||||
this.businessId = getInstance.businessId;
|
||||
this.token = getInstance.token;
|
||||
|
||||
const response = await this.requestDeleteTemplate({ name: data.name, hsm_id: data.hsmId });
|
||||
|
||||
if (!response || response.error) {
|
||||
if (response && response.error) {
|
||||
const metaError = new Error(response.error.message || 'WhatsApp API Error');
|
||||
(metaError as any).template = response.error;
|
||||
throw metaError;
|
||||
}
|
||||
throw new Error('Error to delete template');
|
||||
}
|
||||
|
||||
try {
|
||||
// Best-effort local cleanup of stored template metadata
|
||||
await this.prismaRepository.template.deleteMany({
|
||||
where: {
|
||||
OR: [
|
||||
{ name: data.name, instanceId: getInstance.id },
|
||||
data.hsmId ? { templateId: data.hsmId, instanceId: getInstance.id } : undefined,
|
||||
].filter(Boolean) as any,
|
||||
},
|
||||
});
|
||||
} catch (err) {
|
||||
this.logger.warn(
|
||||
`Failed to cleanup local template records after delete: ${(err as Error)?.message || String(err)}`,
|
||||
);
|
||||
}
|
||||
|
||||
return response;
|
||||
}
|
||||
|
||||
private async requestTemplate(data: any, method: string) {
|
||||
try {
|
||||
let urlServer = this.configService.get<WaBusiness>('WA_BUSINESS').URL;
|
||||
@@ -116,4 +187,38 @@ export class TemplateService {
|
||||
throw new Error(`Connection error: ${e.message}`);
|
||||
}
|
||||
}
|
||||
|
||||
private async requestEditTemplate(templateId: string, data: any) {
|
||||
try {
|
||||
let urlServer = this.configService.get<WaBusiness>('WA_BUSINESS').URL;
|
||||
const version = this.configService.get<WaBusiness>('WA_BUSINESS').VERSION;
|
||||
urlServer = `${urlServer}/${version}/${templateId}`;
|
||||
const headers = { 'Content-Type': 'application/json', Authorization: `Bearer ${this.token}` };
|
||||
const result = await axios.post(urlServer, data, { headers });
|
||||
return result.data;
|
||||
} catch (e) {
|
||||
this.logger.error(
|
||||
'WhatsApp API request error: ' + (e.response?.data ? JSON.stringify(e.response?.data) : e.message),
|
||||
);
|
||||
if (e.response?.data) return e.response.data;
|
||||
throw new Error(`Connection error: ${e.message}`);
|
||||
}
|
||||
}
|
||||
|
||||
private async requestDeleteTemplate(params: { name: string; hsm_id?: string }) {
|
||||
try {
|
||||
let urlServer = this.configService.get<WaBusiness>('WA_BUSINESS').URL;
|
||||
const version = this.configService.get<WaBusiness>('WA_BUSINESS').VERSION;
|
||||
urlServer = `${urlServer}/${version}/${this.businessId}/message_templates`;
|
||||
const headers = { Authorization: `Bearer ${this.token}` };
|
||||
const result = await axios.delete(urlServer, { headers, params });
|
||||
return result.data;
|
||||
} catch (e) {
|
||||
this.logger.error(
|
||||
'WhatsApp API request error: ' + (e.response?.data ? JSON.stringify(e.response?.data) : e.message),
|
||||
);
|
||||
if (e.response?.data) return e.response.data;
|
||||
throw new Error(`Connection error: ${e.message}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user