forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsemantiqRtdProvider.js
222 lines (183 loc) · 5.5 KB
/
semantiqRtdProvider.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
import { MODULE_TYPE_RTD } from '../src/activities/modules.js';
import { ajax } from '../src/ajax.js';
import { submodule } from '../src/hook.js';
import { getStorageManager } from '../src/storageManager.js';
import { getWindowLocation, logError, logInfo, logWarn, mergeDeep } from '../src/utils.js';
/**
* @typedef {import('../modules/rtdModule/index.js').RtdSubmodule} RtdSubmodule
*/
const MODULE_NAME = 'realTimeData';
const SUBMODULE_NAME = 'semantiq';
const LOG_PREFIX = '[SemantIQ RTD Module]: ';
const KEYWORDS_URL = 'https://api.adnz.co/api/ws-semantiq/page-keywords';
const STORAGE_KEY = `adnz_${SUBMODULE_NAME}`;
const AUDIENZZ_COMPANY_ID = 1;
const REQUIRED_TENANT_IDS = [AUDIENZZ_COMPANY_ID];
const AUDIENZZ_GLOBAL_VENDOR_ID = 783;
const DEFAULT_TIMEOUT = 1000;
export const storage = getStorageManager({
moduleType: MODULE_TYPE_RTD,
moduleName: SUBMODULE_NAME,
});
/**
* Gets SemantIQ keywords from local storage.
* @param {string} pageUrl
* @returns {Object.<string, string | string[]>}
*/
const getStorageKeywords = (pageUrl) => {
try {
const storageValue = JSON.parse(storage.getDataFromLocalStorage(STORAGE_KEY));
if (storageValue?.url === pageUrl) {
return storageValue.keywords;
}
return null;
} catch (error) {
logError('Unable to get SemantiQ keywords from local storage', error);
return null;
}
};
/**
* Gets URL of the current page.
* @returns {string}
*/
const getPageUrl = () => getWindowLocation().href;
/**
* Gets tenant IDs based on the customer company ID
* @param {number | number[] | undefined} companyId
* @returns {number[]}
*/
const getTenantIds = (companyId) => {
if (!companyId) {
return REQUIRED_TENANT_IDS;
}
const companyIdArray = Array.isArray(companyId) ? companyId : [companyId];
return [...REQUIRED_TENANT_IDS, ...companyIdArray];
};
/**
* Gets keywords from cache or SemantIQ service.
* @param {Object} params
* @returns {Promise<Object.<string, string | string[]>>}
*/
const getKeywords = (params) => new Promise((resolve, reject) => {
const pageUrl = getPageUrl();
const storageKeywords = getStorageKeywords(pageUrl);
if (storageKeywords) {
return resolve(storageKeywords);
}
const { companyId } = params;
const tenantIds = getTenantIds(companyId);
const searchParams = new URLSearchParams();
searchParams.append('url', pageUrl);
searchParams.append('tenantIds', tenantIds.join(','));
const requestUrl = `${KEYWORDS_URL}?${searchParams.toString()}`;
const callbacks = {
success(responseText, response) {
try {
if (response.status !== 200) {
throw new Error('Invalid response status');
}
const data = JSON.parse(responseText);
if (!data) {
throw new Error('Failed to parse the response');
}
storage.setDataInLocalStorage(STORAGE_KEY, JSON.stringify({ url: pageUrl, keywords: data }));
resolve(data);
} catch (error) {
reject(error);
}
},
error(error) {
reject(error);
}
}
ajax(requestUrl, callbacks);
});
/**
* Converts a single key-value pair to an ORTB keyword string.
* @param {string} key
* @param {string | string[]} value
* @returns {string}
*/
export const convertSemantiqKeywordToOrtb = (key, value) => {
if (!value || !value.length) {
return '';
}
if (Array.isArray(value)) {
return value.map((valueItem) => `${key}=${valueItem}`).join(',');
}
return `${key}=${value}`;
};
/**
* Converts SemantIQ keywords to ORTB format.
* @param {Object.<string, string | string[]>} keywords
* @returns {string}
*/
export const getOrtbKeywords = (keywords) => Object.entries(keywords).reduce((acc, entry) => {
const [key, values] = entry;
const ortbKeywordString = convertSemantiqKeywordToOrtb(key, values);
return ortbKeywordString ? [...acc, ortbKeywordString] : acc;
}, []).join(',');
/**
* Module init
* @param {Object} config
* @param {Object} userConsent
* @return {boolean}
*/
const init = (config, userConsent) => true;
/**
* Receives real-time data from SemantIQ service.
* @param {Object} reqBidsConfigObj
* @param {function} onDone
* @param {Object} moduleConfig
*/
const getBidRequestData = (
reqBidsConfigObj,
onDone,
moduleConfig,
) => {
let isDone = false;
const { params = {} } = moduleConfig || {};
const { timeout = DEFAULT_TIMEOUT } = params;
try {
logInfo(LOG_PREFIX, { reqBidsConfigObj });
const { adUnits = [] } = reqBidsConfigObj;
if (!adUnits.length) {
logWarn(LOG_PREFIX, 'No ad units found in the request');
isDone = true;
onDone();
}
getKeywords(params)
.then((keywords) => {
const ortbKeywords = getOrtbKeywords(keywords);
const siteKeywords = reqBidsConfigObj.ortb2Fragments?.global?.site?.keywords;
const updatedGlobalOrtb = { site: { keywords: [siteKeywords, ortbKeywords].filter(Boolean).join(',') } };
mergeDeep(reqBidsConfigObj.ortb2Fragments.global, updatedGlobalOrtb);
})
.catch((error) => {
logError(LOG_PREFIX, error);
})
.finally(() => {
isDone = true;
onDone();
});
} catch (error) {
logError(LOG_PREFIX, error);
isDone = true;
onDone();
}
setTimeout(() => {
if (!isDone) {
logWarn(LOG_PREFIX, 'Timeout exceeded');
isDone = true;
onDone();
}
}, timeout);
}
/** @type {RtdSubmodule} */
export const semantiqRtdSubmodule = {
name: SUBMODULE_NAME,
getBidRequestData,
init,
gvlid: AUDIENZZ_GLOBAL_VENDOR_ID,
};
submodule(MODULE_NAME, semantiqRtdSubmodule);