Skip to content

Commit

Permalink
chore(release): pull main into develop post release v1.66.1 (#3394)
Browse files Browse the repository at this point in the history
  • Loading branch information
krishna2020 authored May 20, 2024
2 parents e9409fd + 6fa89e3 commit b9ef30a
Show file tree
Hide file tree
Showing 18 changed files with 668 additions and 71 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.66.1](https://github.com/rudderlabs/rudder-transformer/compare/v1.66.0...v1.66.1) (2024-05-20)


### Bug Fixes

* add validation for null/undefined traits in slack ([#3382](https://github.com/rudderlabs/rudder-transformer/issues/3382)) ([755073c](https://github.com/rudderlabs/rudder-transformer/commit/755073c4341a454785050d835021d9f17e0b9d3f))
* gaoc store sales batching transform contract ([#3384](https://github.com/rudderlabs/rudder-transformer/issues/3384)) ([e7678cb](https://github.com/rudderlabs/rudder-transformer/commit/e7678cbdae4c06449ea9352ce3db390d2a29da14))
* move af_currency outside properties in eventValue ([#3316](https://github.com/rudderlabs/rudder-transformer/issues/3316)) ([71c3d46](https://github.com/rudderlabs/rudder-transformer/commit/71c3d46236fff9209625cfb0737c21db2d275345))
* remove default traits from ortto ([#3389](https://github.com/rudderlabs/rudder-transformer/issues/3389)) ([fbb0811](https://github.com/rudderlabs/rudder-transformer/commit/fbb0811aa0e417b0cffcea4ecc103979afccfe74))
* update validation of event duration ([#3376](https://github.com/rudderlabs/rudder-transformer/issues/3376)) ([3ad7850](https://github.com/rudderlabs/rudder-transformer/commit/3ad78506446915ada8bdc5f5594dc2710e6b0646))

## [1.66.0](https://github.com/rudderlabs/rudder-transformer/compare/v1.65.1...v1.66.0) (2024-05-13)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rudder-transformer",
"version": "1.66.0",
"version": "1.66.1",
"description": "",
"homepage": "https://github.com/rudderlabs/rudder-transformer#readme",
"bugs": {
Expand Down
6 changes: 3 additions & 3 deletions src/cdk/v2/destinations/ortto/procWorkflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ steps:
"str::ei": {{{{$.getGenericPaths("userId")}}}},
"str::language": .context.traits.language || .context.locale,
"phn::phone": phone ? {"n": phone},
"bol::gdpr": .context.traits.gdpr ?? true,
"bol::p": .context.traits.emailConsent || false,
"bol::sp": .context.traits.smsConsent || false,
"bol::gdpr": .context.traits.gdpr,
"bol::p": .context.traits.emailConsent,
"bol::sp": .context.traits.smsConsent,
},
"location": {"source_ip": .context.ip}
});
Expand Down
17 changes: 8 additions & 9 deletions src/v0/destinations/af/transform.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,9 @@ function getEventValueForUnIdentifiedTrackEvent(message) {
return { eventValue };
}

function getEventValueMapFromMappingJson(
message,
mappingJson,
isMultiSupport,
addPropertiesAtRoot,
) {
function getEventValueMapFromMappingJson(message, mappingJson, isMultiSupport, config) {
let eventValue = {};
const { addPropertiesAtRoot, afCurrencyAtRoot } = config;

if (addPropertiesAtRoot) {
eventValue = message.properties;
Expand Down Expand Up @@ -152,6 +148,9 @@ function getEventValueMapFromMappingJson(
af_price: prices,
};
}
if (afCurrencyAtRoot) {
eventValue.af_currency = message.properties.currency;
}
eventValue = removeUndefinedValues(eventValue);
if (Object.keys(eventValue).length > 0) {
eventValue = JSON.stringify(eventValue);
Expand All @@ -171,7 +170,7 @@ function processNonTrackEvents(message, eventName) {
return payload;
}

function processEventTypeTrack(message, addPropertiesAtRoot) {
function processEventTypeTrack(message, config) {
let isMultiSupport = true;
const evType = message.event && message.event.toLowerCase();
let category = ConfigCategory.DEFAULT;
Expand All @@ -195,7 +194,7 @@ function processEventTypeTrack(message, addPropertiesAtRoot) {
message,
mappingConfig[category.name],
isMultiSupport,
addPropertiesAtRoot,
config,
);
payload.eventName = message.event;
payload.eventCurrency = message?.properties?.currency;
Expand All @@ -208,7 +207,7 @@ function processSingleMessage(message, destination) {
let payload;
switch (messageType) {
case EventType.TRACK: {
payload = processEventTypeTrack(message, destination.Config.addPropertiesAtRoot);
payload = processEventTypeTrack(message, destination.Config);
break;
}
case EventType.SCREEN: {
Expand Down
16 changes: 2 additions & 14 deletions src/v0/destinations/facebook_conversions/transform.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/* eslint-disable no-param-reassign */
const get = require('get-value');
const moment = require('moment');
const { InstrumentationError, ConfigurationError } = require('@rudderstack/integrations-lib');
const {
CONFIG_CATEGORIES,
Expand Down Expand Up @@ -33,6 +32,7 @@ const {
fetchUserData,
formingFinalResponse,
} = require('../../util/facebookUtils');
const { verifyEventDuration } = require('../facebook_pixel/utils');

const responseBuilderSimple = (message, category, destination) => {
const { Config, ID } = destination;
Expand Down Expand Up @@ -121,19 +121,7 @@ const processEvent = (message, destination) => {
}

const timeStamp = getFieldValueFromMessage(message, 'timestamp');
if (timeStamp) {
const start = moment.unix(moment(timeStamp).format('X'));
const current = moment.unix(moment().format('X'));
// calculates past event in days
const deltaDay = Math.ceil(moment.duration(current.diff(start)).asDays());
// calculates future event in minutes
const deltaMin = Math.ceil(moment.duration(start.diff(current)).asMinutes());
if (deltaDay > 7 || deltaMin > 1) {
throw new InstrumentationError(
'Events must be sent within seven days of their occurrence or up to one minute in the future.',
);
}
}
verifyEventDuration(message, destination, timeStamp);

const { datasetId, accessToken } = destination.Config;
if (!datasetId) {
Expand Down
21 changes: 2 additions & 19 deletions src/v0/destinations/facebook_pixel/transform.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
/* eslint-disable no-param-reassign */
const get = require('get-value');
const moment = require('moment');
const { InstrumentationError, ConfigurationError } = require('@rudderstack/integrations-lib');
const stats = require('../../../util/stats');
const {
VERSION,
CONFIG_CATEGORIES,
Expand Down Expand Up @@ -31,6 +29,7 @@ const {
handleOrder,
populateCustomDataBasedOnCategory,
getCategoryFromEvent,
verifyEventDuration,
} = require('./utils');

const {
Expand Down Expand Up @@ -170,23 +169,7 @@ const processEvent = (message, destination) => {
}

const timeStamp = message.timestamp || message.originalTimestamp;
if (timeStamp) {
const start = moment.unix(moment(timeStamp).format('X'));
const current = moment.unix(moment().format('X'));
// calculates past event in days
const deltaDay = Math.ceil(moment.duration(current.diff(start)).asDays());
// calculates future event in minutes
const deltaMin = Math.ceil(moment.duration(start.diff(current)).asMinutes());
if (deltaDay > 7 || deltaMin > 1) {
// TODO: Remove after testing in mirror transformer
stats.increment('fb_pixel_timestamp_error', {
destinationId: destination.ID,
});
throw new InstrumentationError(
'Events must be sent within seven days of their occurrence or up to one minute in the future.',
);
}
}
verifyEventDuration(message, destination, timeStamp);

let eventsToEvents;
if (Array.isArray(destination.Config.eventsToEvents)) {
Expand Down
26 changes: 26 additions & 0 deletions src/v0/destinations/facebook_pixel/utils.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
const { InstrumentationError } = require('@rudderstack/integrations-lib');
const get = require('get-value');
const moment = require('moment');
const { isObject } = require('../../util');
const {
ACTION_SOURCES_VALUES,
Expand Down Expand Up @@ -339,6 +341,29 @@ const getCategoryFromEvent = (eventName) => {
return category;
};

const verifyEventDuration = (message, destination, timeStamp) => {
const actionSource =
get(message, 'traits.action_source') ||
get(message, 'context.traits.action_source') ||
get(message, 'properties.action_source');

const start = moment.unix(moment(timeStamp).format('X'));
const current = moment.unix(moment().format('X'));
// calculates past event in days
const deltaDay = Math.ceil(moment.duration(current.diff(start)).asDays());
// calculates future event in minutes
const deltaMin = Math.ceil(moment.duration(start.diff(current)).asMinutes());
let defaultSupportedDelta = 7;
if (actionSource === 'physical_store') {
defaultSupportedDelta = 62;
}
if (deltaDay > defaultSupportedDelta || deltaMin > 1) {
throw new InstrumentationError(
`Events must be sent within ${defaultSupportedDelta} days of their occurrence or up to one minute in the future.`,
);
}
};

module.exports = {
formatRevenue,
getActionSource,
Expand All @@ -348,4 +373,5 @@ module.exports = {
handleOrder,
populateCustomDataBasedOnCategory,
getCategoryFromEvent,
verifyEventDuration,
};
79 changes: 78 additions & 1 deletion src/v0/destinations/facebook_pixel/utils.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
const { InstrumentationError } = require('@rudderstack/integrations-lib');
const { getActionSource, formatRevenue, getCategoryFromEvent } = require('./utils');
const {
getActionSource,
formatRevenue,
getCategoryFromEvent,
verifyEventDuration,
} = require('./utils');
const { CONFIG_CATEGORIES, OTHER_STANDARD_EVENTS } = require('./config');

Date.now = jest.fn(() => new Date('2022-01-20T00:00:00Z'));
describe('Test Facebook Pixel Utils', () => {
describe('getActionSource', () => {
// Returns 'other' if payload.action_source is not defined and channel is neither 'web' nor 'mobile'
Expand Down Expand Up @@ -151,4 +157,75 @@ describe('Test Facebook Pixel Utils', () => {
expect(result).toEqual(CONFIG_CATEGORIES.SIMPLE_TRACK);
});
});

describe('verifyEventDuration', () => {
it('should not throw an InstrumentationError when event duration is less than 8 days after the event occurred', () => {
const message = {
traits: {
action_source: 'some_action_source',
},
context: {
traits: {
action_source: 'some_action_source',
},
},
properties: {
action_source: 'some_action_source',
},
};
const destination = {
ID: 'some_destination_id',
};
const timeStamp = '2022-01-20T00:00:00Z';
expect(() => {
verifyEventDuration(message, destination, timeStamp);
}).not.toThrow(InstrumentationError);
});
it('should throw an InstrumentationError when event duration is exactly 8 days after the event occurred', () => {
const message = {
traits: {
action_source: 'some_action_source',
},
context: {
traits: {
action_source: 'some_action_source',
},
},
properties: {
action_source: 'some_action_source',
},
};
const destination = {
ID: 'some_destination_id',
};
const timeStamp = '2022-01-12T00:00:00Z';

expect(() => {
verifyEventDuration(message, destination, timeStamp);
}).toThrow(InstrumentationError);
});
it('should not throw an InstrumentationError when event duration is greater than 8 days after the event occurred and action_source is physical_store', () => {
const message = {
traits: {
action_source: 'physical_store',
},
context: {
traits: {
action_source: 'some_action_source',
},
},
properties: {
action_source: 'some_action_source',
},
};
const destination = {
ID: 'some_destination_id',
};
const timeStamp = '2022-01-12T00:00:00Z';

expect(() => {
verifyEventDuration(message, destination, timeStamp);
}).not.toThrow(InstrumentationError);
});
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,8 @@ const batchEvents = (storeSalesEvents) => {
storeSalesEvent.message?.body?.JSON?.addConversionPayload?.operations,
);
batchEventResponse.metadatas.push(storeSalesEvent.metadata);
batchEventResponse.destination = storeSalesEvent.destination;
});

batchEventResponse.destination = storeSalesEvents[0].destination;
return [
getSuccessRespEvents(
batchEventResponse.batchedRequest,
Expand Down
2 changes: 1 addition & 1 deletion src/v0/destinations/slack/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const buildDefaultTraitTemplate = (traitsList, traits, template) => {
generatedStringFromTemplate += `${trait}: {{"${trait}"}} `;
});
// else with all traits
if (traitsList.length === 0) {
if (traitsList.length === 0 && !!traits) {
Object.keys(traits).forEach((traitKey) => {
generatedStringFromTemplate += `${traitKey}: {{"${traitKey}"}} `;
});
Expand Down
3 changes: 2 additions & 1 deletion test/integrations/destinations/af/processor/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1057,6 +1057,7 @@ export const data = [
groupValueTrait: 'age',
trackProductsOnce: false,
trackRevenuePerProduct: false,
afCurrencyAtRoot: true,
},
},
},
Expand All @@ -1079,7 +1080,7 @@ export const data = [
body: {
JSON: {
eventValue:
'{"properties":{"tax":2,"total":27.5,"coupon":"hasbros","revenue":48,"price":25,"quantity":2,"currency":"ZAR","discount":2.5,"order_id":"50314b8e9bcf000000000000","products":[{"sku":"45790-32","url":"https://www.example.com/product/path","name":"Monopoly: 3rd Edition","price":19,"category":"Games","quantity":1,"image_url":"https:///www.example.com/product/path.jpg","product_id":"507f1f77bcf86cd799439011"},{"sku":"46493-32","name":"Uno Card Game","price":3,"category":"Games","quantity":2,"product_id":"505bd76785ebb509fc183733"}],"shipping":3,"subtotal":22.5,"affiliation":"Google Store","checkout_id":"fksdjfsdjfisjf9sdfjsd9f"},"af_revenue":48,"af_quantity":2,"af_price":25}',
'{"properties":{"tax":2,"total":27.5,"coupon":"hasbros","revenue":48,"price":25,"quantity":2,"currency":"ZAR","discount":2.5,"order_id":"50314b8e9bcf000000000000","products":[{"sku":"45790-32","url":"https://www.example.com/product/path","name":"Monopoly: 3rd Edition","price":19,"category":"Games","quantity":1,"image_url":"https:///www.example.com/product/path.jpg","product_id":"507f1f77bcf86cd799439011"},{"sku":"46493-32","name":"Uno Card Game","price":3,"category":"Games","quantity":2,"product_id":"505bd76785ebb509fc183733"}],"shipping":3,"subtotal":22.5,"affiliation":"Google Store","checkout_id":"fksdjfsdjfisjf9sdfjsd9f"},"af_revenue":48,"af_quantity":2,"af_price":25,"af_currency":"ZAR"}',
eventName: 'normal track event',
eventTime: '2020-08-14T05:30:30.118Z',
eventCurrency: 'ZAR',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const data = [
body: [
{
error:
'Events must be sent within seven days of their occurrence or up to one minute in the future.',
'Events must be sent within 7 days of their occurrence or up to one minute in the future.',
statusCode: 400,
statTags: {
destType: 'FACEBOOK_CONVERSIONS',
Expand Down
Loading

0 comments on commit b9ef30a

Please sign in to comment.