-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathembeddedSessionManager.ts
More file actions
149 lines (115 loc) · 3.54 KB
/
Copy pathembeddedSessionManager.ts
File metadata and controls
149 lines (115 loc) · 3.54 KB
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
/* eslint-disable no-param-reassign */
/* eslint-disable class-methods-use-this */
import { generateUUID } from '../utils/generateUUID';
import { trackEmbeddedSession } from '../events/embedded/events';
import { IterableEmbeddedSessionRequestPayload } from '..';
class EmbeddedSession {
public start?: Date;
public end?: Date;
public id: string;
constructor(start?: Date, end?: Date) {
this.start = start;
this.end = end;
this.id = generateUUID();
}
}
class EmbeddedImpression {
public messageId: string;
public displayCount: number;
public displayDuration: number;
public start?: Date = undefined;
public placementId: number;
constructor(
messageId: string,
placementId: number,
displayCount?: number,
duration?: number
) {
this.messageId = messageId;
this.displayCount = displayCount || 0;
this.displayDuration = duration || 0.0;
this.placementId = placementId;
}
}
export class IterableEmbeddedSessionManager {
public appPackageName: string;
private impressions: Map<string, EmbeddedImpression> = new Map();
public session: EmbeddedSession = new EmbeddedSession();
constructor(appPackageName: string) {
this.appPackageName = appPackageName;
}
private isTracking(): boolean {
return this.session.start !== undefined;
}
public startSession() {
if (this.isTracking()) {
return;
}
this.session.start = new Date();
}
public async endSession() {
if (!this.isTracking()) {
return;
}
this.impressions.forEach((_, messageId) => this.pauseImpression(messageId));
this.session.end = new Date();
if (this.impressions.size) {
const sessionPayload: IterableEmbeddedSessionRequestPayload = {
session: {
start: this.session.start?.getTime(),
end: new Date().getTime(),
id: this.session.id
},
appPackageName: this.appPackageName,
impressions: this.getImpressionList()
};
await trackEmbeddedSession(sessionPayload);
// reset session for next session start
this.session = new EmbeddedSession();
this.impressions = new Map();
}
}
public startImpression(messageId: string, placementId: number) {
let impressionData: EmbeddedImpression | undefined =
this.impressions.get(messageId);
if (!impressionData) {
impressionData = new EmbeddedImpression(messageId, placementId);
this.impressions.set(messageId, impressionData);
}
impressionData.start = new Date();
}
public pauseImpression(messageId: string) {
const impressionData: EmbeddedImpression | undefined =
this.impressions.get(messageId);
if (!impressionData) {
return;
}
if (impressionData?.start === null) {
return;
}
this.updateDisplayCountAndDuration(impressionData);
}
private getImpressionList() {
const impressionList: EmbeddedImpression[] = [];
this.impressions.forEach((impressionData) => {
impressionList.push(
new EmbeddedImpression(
impressionData.messageId,
impressionData.placementId,
impressionData.displayCount,
impressionData.displayDuration
)
);
});
return impressionList;
}
private updateDisplayCountAndDuration(impressionData: EmbeddedImpression) {
if (impressionData.start) {
impressionData.displayCount += 1;
impressionData.displayDuration +=
(new Date().getTime() - impressionData.start.getTime()) / 1000.0;
impressionData.start = undefined;
}
return impressionData;
}
}