Account webhooks sign outgoing payloads with HMAC-SHA256, but agent bot and API inbox webhooks were delivered unsigned. This PR adds the same signing to both. Each model gets a dedicated `secret` column rather than reusing the agent bot's `access_token` (for API auth back into Chatwoot) or the API inbox's `hmac_token` (for inbound contact identity verification). These serve different trust boundaries and shouldn't be coupled — rotating a signing secret shouldn't invalidate API access or contact verification. The existing `Webhooks::Trigger` already signs when a secret is present, so the backend change is just passing `secret:` through to the jobs. Shared token logic is extracted into a `WebhookSecretable` concern included by `Webhook`, `AgentBot`, and `Channel::Api`. The frontend reuses the existing `AccessToken` component for secret display. Secrets are admin-only and excluded from enterprise audit logs. ### How to test Point an agent bot or API inbox webhook URL at a request inspector. Send a message and verify `X-Chatwoot-Signature` and `X-Chatwoot-Timestamp` headers are present. Reset the secret from settings and confirm subsequent deliveries use the new value. --------- Co-authored-by: Sojan Jose <sojan@pepalo.com>
35 lines
758 B
JavaScript
35 lines
758 B
JavaScript
/* global axios */
|
|
import ApiClient from './ApiClient';
|
|
|
|
class AgentBotsAPI extends ApiClient {
|
|
constructor() {
|
|
super('agent_bots', { accountScoped: true });
|
|
}
|
|
|
|
create(data) {
|
|
return axios.post(this.url, data, {
|
|
headers: { 'Content-Type': 'multipart/form-data' },
|
|
});
|
|
}
|
|
|
|
update(id, data) {
|
|
return axios.patch(`${this.url}/${id}`, data, {
|
|
headers: { 'Content-Type': 'multipart/form-data' },
|
|
});
|
|
}
|
|
|
|
deleteAgentBotAvatar(botId) {
|
|
return axios.delete(`${this.url}/${botId}/avatar`);
|
|
}
|
|
|
|
resetAccessToken(botId) {
|
|
return axios.post(`${this.url}/${botId}/reset_access_token`);
|
|
}
|
|
|
|
resetSecret(botId) {
|
|
return axios.post(`${this.url}/${botId}/reset_secret`);
|
|
}
|
|
}
|
|
|
|
export default new AgentBotsAPI();
|