-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
zeotapIdPlusIdSystem.js
76 lines (69 loc) · 2.11 KB
/
zeotapIdPlusIdSystem.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
/**
* This module adds Zeotap to the User ID module
* The {@link module:modules/userId} module is required
* @module modules/zeotapIdPlusIdSystem
* @requires module:modules/userId
*/
import { isStr, isPlainObject } from '../src/utils.js';
import {submodule} from '../src/hook.js';
import {getStorageManager} from '../src/storageManager.js';
import {MODULE_TYPE_UID} from '../src/activities/modules.js';
/**
* @typedef {import('../modules/userId/index.js').Submodule} Submodule
* @typedef {import('../modules/userId/index.js').SubmoduleConfig} SubmoduleConfig
*/
const ZEOTAP_COOKIE_NAME = 'IDP';
const ZEOTAP_VENDOR_ID = 301;
const ZEOTAP_MODULE_NAME = 'zeotapIdPlus';
function readCookie() {
return storage.cookiesAreEnabled() ? storage.getCookie(ZEOTAP_COOKIE_NAME) : null;
}
function readFromLocalStorage() {
return storage.localStorageIsEnabled() ? storage.getDataFromLocalStorage(ZEOTAP_COOKIE_NAME) : null;
}
export function getStorage() {
return getStorageManager({moduleType: MODULE_TYPE_UID, moduleName: ZEOTAP_MODULE_NAME});
}
export const storage = getStorage();
/** @type {Submodule} */
export const zeotapIdPlusSubmodule = {
/**
* used to link submodule with config
* @type {string}
*/
name: ZEOTAP_MODULE_NAME,
/**
* Vendor ID of Zeotap
* @type {Number}
*/
gvlid: ZEOTAP_VENDOR_ID,
/**
* decode the stored id value for passing to bid requests
* @function
* @param { Object | string | undefined } value
* @return { Object | string | undefined }
*/
decode(value) {
const id = value ? isStr(value) ? value : isPlainObject(value) ? value.id : undefined : undefined;
return id ? {
'IDP': JSON.parse(atob(id))
} : undefined;
},
/**
* performs action to obtain id and return a value in the callback's response argument
* @function
* @param {SubmoduleConfig} config
* @return {{id: string | undefined} | undefined}
*/
getId() {
const id = readCookie() || readFromLocalStorage();
return id ? { id } : undefined;
},
eids: {
'IDP': {
source: 'zeotap.com',
atype: 1
},
}
};
submodule('userId', zeotapIdPlusSubmodule);