Merge pull request #1325 from automatisch/AUT-318

feat(invoice-ninja): add new clients trigger
This commit is contained in:
Ömer Faruk Aydın
2023-10-10 12:51:40 +02:00
committed by GitHub
6 changed files with 84 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
import defineApp from '../../helpers/define-app';
import addAuthHeader from './common/add-auth-header';
import auth from './auth';
import triggers from './triggers';
export default defineApp({
name: 'Invoice Ninja',
@@ -13,4 +14,5 @@ export default defineApp({
supportsConnections: true,
beforeRequest: [addAuthHeader],
auth,
triggers,
});

View File

@@ -0,0 +1,3 @@
import newClients from './new-clients';
export default [newClients];

View File

@@ -0,0 +1,65 @@
import Crypto from 'crypto';
import isEmpty from 'lodash/isEmpty';
import defineTrigger from '../../../../helpers/define-trigger';
type Response = {
data: {
data: {
id: string;
event_id: string;
target_url: string;
format: string;
};
};
};
export default defineTrigger({
name: 'New clients',
key: 'newClients',
type: 'webhook',
description: 'Triggers when a new client is added.',
arguments: [],
async run($) {
const dataItem = {
raw: $.request.body,
meta: {
internalId: Crypto.randomUUID(),
},
};
$.pushTriggerItem(dataItem);
},
async testRun($) {
const lastExecutionStep = await $.getLastExecutionStep();
if (!isEmpty(lastExecutionStep?.dataOut)) {
$.pushTriggerItem({
raw: lastExecutionStep.dataOut,
meta: {
internalId: '',
},
});
}
},
async registerHook($) {
const CREATE_CLIENT_EVENT_ID = '1';
const payload = {
target_url: $.webhookUrl,
event_id: CREATE_CLIENT_EVENT_ID,
format: 'JSON',
rest_method: 'post',
};
const response: Response = await $.http.post('/v1/webhooks', payload);
await $.flow.setRemoteWebhookId(response.data.data.id);
},
async unregisterHook($) {
await $.http.delete(`/v1/webhooks/${$.flow.remoteWebhookId}`);
},
});

View File

@@ -174,6 +174,7 @@ export default defineConfig({
collapsible: true,
collapsed: true,
items: [
{ text: 'Triggers', link: '/apps/invoice-ninja/triggers' },
{ text: 'Connection', link: '/apps/invoice-ninja/connection' },
],
},

View File

@@ -0,0 +1,12 @@
---
favicon: /favicons/invoice-ninja.svg
items:
- name: New clients
desc: Triggers when a new client is added.
---
<script setup>
import CustomListing from '../../components/CustomListing.vue'
</script>
<CustomListing />

View File

@@ -17,6 +17,7 @@ The following integrations are currently supported by Automatisch.
- [Google Sheets](/apps/google-sheets/triggers)
- [HTTP Request](/apps/http-request/actions)
- [HubSpot](/apps/hubspot/actions)
- [Invoice Ninja](/apps/invoice-ninja/triggers)
- [Mattermost](/apps/mattermost/actions)
- [Miro](/apps/miro/actions)
- [Notion](/apps/notion/triggers)