-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into reddit.refactor-proxy
- Loading branch information
Showing
71 changed files
with
4,756 additions
and
315 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
const { getMappingConfig } = require('../../../../v0/util'); | ||
|
||
const ConfigCategories = { | ||
GENERAL: { | ||
type: 'general', | ||
name: 'generalPayloadMapping', | ||
}, | ||
CONTEXT: { | ||
type: 'context', | ||
name: 'contextMapping', | ||
}, | ||
TRACK: { | ||
type: 'track', | ||
name: 'trackMapping', | ||
}, | ||
IDENTIFY: { | ||
type: 'identify', | ||
name: 'identifyMapping', | ||
}, | ||
PAGE: { | ||
type: 'page', | ||
name: 'pageMapping', | ||
}, | ||
}; | ||
|
||
// MAX_BATCH_SIZE : // Maximum number of events to send in a single batch | ||
const mappingConfig = getMappingConfig(ConfigCategories, __dirname); | ||
const batchEndpoint = | ||
'https://experience.ninetailed.co/v2/organizations/{{organisationId}}/environments/{{environment}}/events'; | ||
|
||
module.exports = { ConfigCategories, mappingConfig, batchEndpoint, MAX_BATCH_SIZE: 200 }; |
43 changes: 43 additions & 0 deletions
43
src/cdk/v2/destinations/ninetailed/data/contextMapping.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[ | ||
{ | ||
"sourceKeys": "app.name", | ||
"required": true, | ||
"destKey": "app.name" | ||
}, | ||
{ | ||
"sourceKeys": "app.version", | ||
"required": true, | ||
"destKey": "app.version" | ||
}, | ||
{ | ||
"sourceKeys": "campaign", | ||
"destKey": "campaign" | ||
}, | ||
{ | ||
"sourceKeys": "library.name", | ||
"required": true, | ||
"destKey": "library.name" | ||
}, | ||
{ | ||
"sourceKeys": "library.version", | ||
"required": true, | ||
"destKey": "library.version" | ||
}, | ||
{ | ||
"sourceKeys": "locale", | ||
"destKey": "locale" | ||
}, | ||
{ | ||
"sourceKeys": "page", | ||
"destKey": "page" | ||
}, | ||
{ | ||
"sourceKeys": "userAgent", | ||
"destKey": "userAgent" | ||
}, | ||
{ | ||
"sourceKeys": "location", | ||
"required": true, | ||
"destKey": "location" | ||
} | ||
] |
25 changes: 25 additions & 0 deletions
25
src/cdk/v2/destinations/ninetailed/data/generalPayloadMapping.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[ | ||
{ | ||
"sourceKeys": "anonymousId", | ||
"required": true, | ||
"destKey": "anonymousId" | ||
}, | ||
{ | ||
"sourceKeys": "messageId", | ||
"required": true, | ||
"destKey": "messageId" | ||
}, | ||
{ | ||
"sourceKeys": "channel", | ||
"required": true, | ||
"destKey": "channel" | ||
}, | ||
{ | ||
"sourceKeys": "type", | ||
"destKey": "type" | ||
}, | ||
{ | ||
"sourceKeys": "originalTimestamp", | ||
"destKey": "originalTimestamp" | ||
} | ||
] |
14 changes: 14 additions & 0 deletions
14
src/cdk/v2/destinations/ninetailed/data/identifyMapping.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[ | ||
{ | ||
"sourceKeys": "traits", | ||
"sourceFromGenericMap": true, | ||
"required": true, | ||
"destKey": "traits" | ||
}, | ||
{ | ||
"sourceKeys": "userIdOnly", | ||
"sourceFromGenericMap": true, | ||
"required": true, | ||
"destKey": "userId" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[ | ||
{ | ||
"sourceKeys": "properties", | ||
"required": true, | ||
"destKey": "properties" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[ | ||
{ | ||
"sourceKeys": "properties", | ||
"required": true, | ||
"destKey": "properties" | ||
}, | ||
{ | ||
"sourceKeys": "event", | ||
"required": true, | ||
"destKey": "event" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
bindings: | ||
- name: EventType | ||
path: ../../../../constants | ||
- path: ../../bindings/jsontemplate | ||
- name: defaultRequestConfig | ||
path: ../../../../v0/util | ||
- name: removeUndefinedAndNullValues | ||
path: ../../../../v0/util | ||
- path: ./utils | ||
|
||
steps: | ||
- name: messageType | ||
template: | | ||
.message.type.toLowerCase(); | ||
- name: validateInput | ||
template: | | ||
let messageType = $.outputs.messageType; | ||
$.assert(messageType, "message Type is not present. Aborting"); | ||
$.assert(messageType in {{$.EventType.([.TRACK,.IDENTIFY,.PAGE])}}, "message type " + messageType + " is not supported"); | ||
$.assertConfig(.destination.Config.organisationId, "Organisation ID is not present. Aborting"); | ||
$.assertConfig(.destination.Config.environment, "Environment is not present. Aborting"); | ||
- name: preparePayload | ||
template: | | ||
const payload = $.constructFullPayload(.message); | ||
$.context.payload = $.removeUndefinedAndNullValues(payload); | ||
- name: buildResponse | ||
template: | | ||
const response = $.defaultRequestConfig(); | ||
response.body.JSON.events = [$.context.payload]; | ||
response.endpoint = $.getEndpoint(.destination.Config); | ||
response.method = "POST"; | ||
response |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
bindings: | ||
- path: ./config | ||
- name: handleRtTfSingleEventError | ||
path: ../../../../v0/util/index | ||
- path: ./utils | ||
steps: | ||
- name: validateInput | ||
template: | | ||
$.assert(Array.isArray(^) && ^.length > 0, "Invalid event array") | ||
- name: transform | ||
externalWorkflow: | ||
path: ./procWorkflow.yaml | ||
loopOverInput: true | ||
|
||
- name: successfulEvents | ||
template: | | ||
$.outputs.transform#idx.output.({ | ||
"output": .body.JSON.events[0], | ||
"destination": ^[idx].destination, | ||
"metadata": ^[idx].metadata | ||
})[] | ||
- name: failedEvents | ||
template: | | ||
$.outputs.transform#idx.error.( | ||
$.handleRtTfSingleEventError(^[idx], .originalError ?? ., {}) | ||
)[] | ||
- name: batchSuccessfulEvents | ||
description: Batches the successfulEvents | ||
template: | | ||
$.batchResponseBuilder($.outputs.successfulEvents); | ||
- name: finalPayload | ||
template: | | ||
[...$.outputs.failedEvents, ...$.outputs.batchSuccessfulEvents] |
Oops, something went wrong.