Skip to content

Commit

Permalink
Merge branch 'develop' into feat-linkedInConv
Browse files Browse the repository at this point in the history
  • Loading branch information
shrouti1507 authored Apr 1, 2024
2 parents 7a339c1 + 92515a5 commit 579f43c
Show file tree
Hide file tree
Showing 42 changed files with 2,724 additions and 172 deletions.
30 changes: 30 additions & 0 deletions src/cdk/v2/destinations/bloomreach/config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import { getMappingConfig } from '../../../../v0/util';

export const CUSTOMER_COMMAND = 'customers';
export const CUSTOMER_EVENT_COMMAND = 'customers/events';
export const MAX_BATCH_SIZE = 50;

// ref:- https://documentation.bloomreach.com/engagement/reference/batch-commands-2
export const getBatchEndpoint = (apiBaseUrl: string, projectToken: string): string =>
`${apiBaseUrl}/track/v2/projects/${projectToken}/batch`;

const CONFIG_CATEGORIES = {
CUSTOMER_PROPERTIES_CONFIG: { name: 'BloomreachCustomerPropertiesConfig' },
};
const MAPPING_CONFIG = getMappingConfig(CONFIG_CATEGORIES, __dirname);
export const EXCLUSION_FIELDS: string[] = [
'email',
'firstName',
'firstname',
'first_name',
'lastName',
'lastname',
'last_name',
'name',
'phone',
'city',
'birthday',
'country',
];
export const CUSTOMER_PROPERTIES_CONFIG =
MAPPING_CONFIG[CONFIG_CATEGORIES.CUSTOMER_PROPERTIES_CONFIG.name];
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
[
{
"destKey": "first_name",
"sourceKeys": "firstName",
"sourceFromGenericMap": true
},
{
"destKey": "last_name",
"sourceKeys": "lastName",
"sourceFromGenericMap": true
},
{
"destKey": "email",
"sourceKeys": "emailOnly",
"sourceFromGenericMap": true
},
{
"destKey": "phone",
"sourceKeys": "phone",
"sourceFromGenericMap": true
},
{
"destKey": "city",
"sourceKeys": "city",
"sourceFromGenericMap": true
},
{
"destKey": "country",
"sourceKeys": ["traits.address.country", "context.traits.address.country"]
},
{
"destKey": "birthday",
"sourceKeys": "birthday",
"sourceFromGenericMap": true
}
]
119 changes: 119 additions & 0 deletions src/cdk/v2/destinations/bloomreach/procWorkflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
bindings:
- name: EventType
path: ../../../../constants
- path: ../../bindings/jsontemplate
- name: defaultRequestConfig
path: ../../../../v0/util
- name: toUnixTimestamp
path: ../../../../v0/util
- name: base64Convertor
path: ../../../../v0/util
- name: removeUndefinedAndNullValues
path: ../../../../v0/util
- name: generateExclusionList
path: ../../../../v0/util
- name: extractCustomFields
path: ../../../../v0/util
- name: constructPayload
path: ../../../../v0/util
- path: ./utils
- path: ./config

steps:
- name: messageType
template: |
$.context.messageType = .message.type.toLowerCase();
- name: validateInput
template: |
let messageType = $.context.messageType;
$.assert(messageType, "message Type is not present. Aborting");
$.assert(messageType in {{$.EventType.([.IDENTIFY,.TRACK,.PAGE,.SCREEN])}}, "message type " + messageType + " is not supported");
$.assertConfig(.destination.Config.apiBaseUrl, "API Base URL is not present. Aborting");
$.assertConfig(.destination.Config.apiKey, "API Key is not present . Aborting");
$.assertConfig(.destination.Config.apiSecret, "API Secret is not present. Aborting");
$.assertConfig(.destination.Config.projectToken, "Project Token is not present. Aborting");
$.assertConfig(.destination.Config.hardID, "Hard ID is not present. Aborting");
$.assertConfig(.destination.Config.softID, "Soft ID is not present. Aborting");
$.assert(.message.timestamp ?? .message.originalTimestamp, "Timestamp is not present. Aborting");
const userId = .message.().(
{{{{$.getGenericPaths("userIdOnly")}}}};
);
$.assert(userId ?? .message.anonymousId, "Either one of userId or anonymousId is required. Aborting");
- name: prepareIdentifyPayload
condition: $.context.messageType === {{$.EventType.IDENTIFY}}
template: |
const customerIDs = $.prepareCustomerIDs(.message, .destination);
const customerProperties = $.constructPayload(.message, $.CUSTOMER_PROPERTIES_CONFIG);
const extraCustomerProperties = $.extractCustomFields(.message, {}, ['traits', 'context.traits'], $.EXCLUSION_FIELDS);
const properties = {
...customerProperties,
...extraCustomerProperties
}
const data = .message.().({
"customer_ids": customerIDs,
"update_timestamp": $.toUnixTimestamp({{{{$.getGenericPaths("timestamp")}}}}),
properties
});
$.context.payload = $.removeUndefinedAndNullValues({name: $.CUSTOMER_COMMAND, data})
- name: prepareEventName
steps:
- name: pageEventName
condition: $.context.messageType === {{$.EventType.PAGE}}
template: |
const category = .message.category ?? .message.properties.category;
const name = .message.name || .message.properties.name;
const eventNameArray = ["Viewed"];
category ? eventNameArray.push(category);
name ? eventNameArray.push(name);
eventNameArray.push("Page");
$.context.event = eventNameArray.join(" ");
- name: screenEventName
condition: $.context.messageType === {{$.EventType.SCREEN}}
template: |
const category = .message.category ?? .message.properties.category;
const name = .message.name || .message.properties.name;
const eventNameArray = ["Viewed"];
category ? eventNameArray.push(category);
name ? eventNameArray.push(name);
eventNameArray.push("Screen");
$.context.event = eventNameArray.join(" ");
- name: trackEventName
condition: $.context.messageType === {{$.EventType.TRACK}}
template: |
$.assert(.message.event, "Event name is required. Aborting");
$.context.event = .message.event
- name: prepareTrackPageScreenPayload
condition: $.context.messageType !== {{$.EventType.IDENTIFY}}
template: |
const customerIDs = $.prepareCustomerIDs(.message, .destination);
const data = .message.().({
"customer_ids": customerIDs,
"timestamp": $.toUnixTimestamp({{{{$.getGenericPaths("timestamp")}}}}),
"properties": .properties,
"event_type": $.context.event,
});
$.context.payload = $.removeUndefinedAndNullValues({name: $.CUSTOMER_EVENT_COMMAND, data})
- name: buildResponse
description: In batchMode we return payload directly
condition: $.batchMode
template: |
$.context.payload
else:
name: buildResponseForProcessTransformation
template: |
const response = $.defaultRequestConfig();
response.body.JSON = $.context.payload;
response.endpoint = $.getBatchEndpoint(.destination.Config.apiBaseUrl, .destination.Config.projectToken);
response.method = "POST";
response.headers = {
"Content-Type": "application/json",
"Authorization": "Basic " + $.base64Convertor(.destination.Config.apiKey + ":" + .destination.Config.apiSecret)
}
response;
76 changes: 76 additions & 0 deletions src/cdk/v2/destinations/bloomreach/rtWorkflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
bindings:
- name: handleRtTfSingleEventError
path: ../../../../v0/util/index
- path: ./utils
exportAll: true
- name: base64Convertor
path: ../../../../v0/util
- name: toUnixTimestamp
path: ../../../../v0/util
- name: BatchUtils
path: '@rudderstack/workflow-engine'
- path: ./config

steps:
- name: validateInput
template: |
$.assert(Array.isArray(^) && ^.length > 0, "Invalid event array")
- name: transform
externalWorkflow:
path: ./procWorkflow.yaml
bindings:
- name: batchMode
value: true
loopOverInput: true

- name: successfulEvents
template: |
$.outputs.transform#idx.output.({
"batchedRequest": .,
"batched": false,
"destination": ^[idx].destination,
"metadata": ^[idx].metadata,
"statusCode": 200
})[]
- name: failedEvents
template: |
$.outputs.transform#idx.error.(
$.handleRtTfSingleEventError(^[idx], .originalError ?? ., {})
)[]
- name: batchSuccessfulEvents
description: Batches the successfulEvents
template: |
let batches = $.BatchUtils.chunkArrayBySizeAndLength(
$.outputs.successfulEvents, {maxItems: $.MAX_BATCH_SIZE}).items;
batches@batch.({
"batchedRequest": {
"body": {
"JSON": {"commands": ~r batch.batchedRequest[]},
"JSON_ARRAY": {},
"XML": {},
"FORM": {}
},
"version": "1",
"type": "REST",
"method": "POST",
"endpoint": batch[0].destination.Config.().($.getBatchEndpoint(.apiBaseUrl, .projectToken)),
"headers": batch[0].destination.Config.().({
"Content-Type": "application/json",
"Authorization": "Basic " + $.base64Convertor(.apiKey + ":" + .apiSecret)
}),
"params": {},
"files": {}
},
"metadata": ~r batch.metadata[],
"batched": true,
"statusCode": 200,
"destination": batch[0].destination
})[];
- name: finalPayload
template: |
[...$.outputs.batchSuccessfulEvents, ...$.outputs.failedEvents]
31 changes: 31 additions & 0 deletions src/cdk/v2/destinations/bloomreach/utils.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import { isObject, isEmptyObject, getIntegrationsObj } from '../../../../v0/util';
import { RudderMessage, Destination } from '../../../../types';

const getCustomerIDsFromIntegrationObject = (message: RudderMessage): any => {
const integrationObj = getIntegrationsObj(message, 'bloomreach' as any) || {};
const { hardID, softID } = integrationObj;
const customerIDs = {};

if (isObject(hardID) && !isEmptyObject(hardID)) {
Object.keys(hardID).forEach((id) => {
customerIDs[id] = hardID[id];
});
}

if (isObject(softID) && !isEmptyObject(softID)) {
Object.keys(softID).forEach((id) => {
customerIDs[id] = softID[id];
});
}

return customerIDs;
};

export const prepareCustomerIDs = (message: RudderMessage, destination: Destination): any => {
const customerIDs = {
[destination.Config.hardID]: message.userId,
[destination.Config.softID]: message.anonymousId,
...getCustomerIDsFromIntegrationObject(message),
};
return customerIDs;
};
3 changes: 2 additions & 1 deletion src/cdk/v2/destinations/movable_ink/config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
module.exports = {
MAX_REQUEST_SIZE_IN_BYTES: 13500,
MAX_REQUEST_SIZE_IN_BYTES: 1000000,
MAX_BATCH_SIZE: 1000,
};
1 change: 1 addition & 0 deletions src/cdk/v2/destinations/movable_ink/procWorkflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ steps:
$.assertConfig(.destination.Config.accessKey, "Access key is not present . Aborting");
$.assertConfig(.destination.Config.accessSecret, "Access Secret is not present. Aborting");
$.assert(.message.timestamp ?? .message.originalTimestamp, "Timestamp is not present. Aborting");
$.assert(!(messageType === {{$.EventType.TRACK}} && !(.message.event)), "Event name is not present. Aborting");
const userId = .message.().(
{{{{$.getGenericPaths("userIdOnly")}}}};
Expand Down
2 changes: 1 addition & 1 deletion src/cdk/v2/destinations/movable_ink/rtWorkflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ steps:
description: Batches the successfulEvents
template: |
let batches = $.BatchUtils.chunkArrayBySizeAndLength(
$.outputs.successfulEvents, {maxSizeInBytes: $.MAX_REQUEST_SIZE_IN_BYTES}).items;
$.outputs.successfulEvents, {maxSizeInBytes: $.MAX_REQUEST_SIZE_IN_BYTES, maxItems: $.MAX_BATCH_SIZE}).items;
batches@batch.({
"batchedRequest": {
Expand Down
4 changes: 0 additions & 4 deletions src/cdk/v2/destinations/ninetailed/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ const ConfigCategories = {
type: 'identify',
name: 'identifyMapping',
},
PAGE: {
type: 'page',
name: 'pageMapping',
},
};

// MAX_BATCH_SIZE : // Maximum number of events to send in a single batch
Expand Down
7 changes: 0 additions & 7 deletions src/cdk/v2/destinations/ninetailed/data/pageMapping.json

This file was deleted.

2 changes: 1 addition & 1 deletion src/cdk/v2/destinations/ninetailed/procWorkflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ steps:
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");
$.assert(messageType in {{$.EventType.([.TRACK,.IDENTIFY])}}, "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
Expand Down
6 changes: 0 additions & 6 deletions src/cdk/v2/destinations/ninetailed/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,6 @@ const constructFullPayload = (message) => {
config.mappingConfig[config.ConfigCategories.IDENTIFY.name],
);
break;
case 'page':
typeSpecifcPayload = constructPayload(
message,
config.mappingConfig[config.ConfigCategories.PAGE.name],
);
break;
default:
break;
}
Expand Down
1 change: 1 addition & 0 deletions src/constants/destinationCanonicalNames.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ const DestCanonicalNames = {
'google adwords offline conversions',
],
koala: ['Koala', 'koala', 'KOALA'],
bloomreach: ['Bloomreach', 'bloomreach', 'BLOOMREACH'],
};

module.exports = { DestHandlerMap, DestCanonicalNames };
1 change: 1 addition & 0 deletions src/features.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
"NINETAILED": true,
"KOALA": true,
"LINKEDIN_ADS": true,
"BLOOMREACH": true,
"MOVABLE_INK": true
},
"regulations": [
Expand Down
7 changes: 7 additions & 0 deletions src/v0/destinations/ga4/transform.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ const {
const {
getItemsArray,
validateEventName,
prepareUserConsents,
removeInvalidParams,
isReservedEventName,
getGA4ExclusionList,
Expand Down Expand Up @@ -238,6 +239,12 @@ const responseBuilder = (message, { Config }) => {
rawPayload.user_properties = userProperties;
}

// Prepare GA4 consents
const consents = prepareUserConsents(message);
if (!isEmptyObject(consents)) {
rawPayload.consent = consents;
}

payload = removeUndefinedAndNullValues(payload);
rawPayload = { ...rawPayload, events: [payload] };

Expand Down
Loading

0 comments on commit 579f43c

Please sign in to comment.