forked from snowplow/snowplow-java-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSubject.java
More file actions
295 lines (266 loc) · 8.15 KB
/
Subject.java
File metadata and controls
295 lines (266 loc) · 8.15 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
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
/*
* Copyright (c) 2015 Snowplow Analytics Ltd. All rights reserved.
*
* This program is licensed to you under the Apache License Version 2.0,
* and you may not use this file except in compliance with the Apache License Version 2.0.
* You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the Apache License Version 2.0 is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
*/
package com.snowplowanalytics.snowplow.tracker;
// Java
import java.util.HashMap;
import java.util.Map;
// This library
import com.snowplowanalytics.snowplow.tracker.constants.Parameter;
/**
* An object for managing extra event decoration.
*/
public class Subject {
private HashMap<String, String> standardPairs = new HashMap<>();
/**
* Creates a Subject which will add extra data to each event.
*
* @param builder The builder that constructs a subject
*/
private Subject(SubjectBuilder builder) {
this.setUserId(builder.userId);
this.setScreenResolution(builder.screenResWidth, builder.screenResHeight);
this.setViewPort(builder.viewPortWidth, builder.viewPortHeight);
this.setColorDepth(builder.colorDepth);
this.setTimezone(builder.timezone);
this.setLanguage(builder.language);
this.setIpAddress(builder.ipAddress);
this.setUseragent(builder.useragent);
this.setNetworkUserId(builder.networkUserId);
this.setDomainUserId(builder.domainUserId);
}
/**
* Builder for the Subject
*/
public static class SubjectBuilder {
private String userId; // Optional
private int screenResWidth = 0; // Optional
private int screenResHeight = 0; // Optional
private int viewPortWidth = 0; // Optional
private int viewPortHeight = 0; // Optional
private int colorDepth = 0; // Optional
private String timezone = Utils.getTimezone(); // Optional
private String language; // Optional
private String ipAddress; // Optional
private String useragent; // Optional
private String networkUserId; // Optional
private String domainUserId; // Optional
/**
* @param userId a user id string
* @return itself
*/
public SubjectBuilder userId(String userId) {
this.userId = userId;
return this;
}
/**
* @param width a width integer
* @param height a height integer
* @return itself
*/
public SubjectBuilder screenResolution(int width, int height) {
this.screenResWidth = width;
this.screenResHeight = height;
return this;
}
/**
* @param width a width integer
* @param height a height integer
* @return itself
*/
public SubjectBuilder viewPort(int width, int height) {
this.viewPortWidth = width;
this.viewPortHeight = height;
return this;
}
/**
* @param depth a color depth integer
* @return itself
*/
public SubjectBuilder colorDepth(int depth) {
this.colorDepth = depth;
return this;
}
/**
* @param timezone a timezone string
* @return itself
*/
public SubjectBuilder timezone(String timezone) {
this.timezone = timezone;
return this;
}
/**
* @param language a language string
* @return itself
*/
public SubjectBuilder language(String language) {
this.language = language;
return this;
}
/**
* @param ipAddress a ipAddress string
* @return itself
*/
public SubjectBuilder ipAddress(String ipAddress) {
this.ipAddress = ipAddress;
return this;
}
/**
* @param useragent a useragent string
* @return itself
*/
public SubjectBuilder useragent(String useragent) {
this.useragent = useragent;
return this;
}
/**
* @param networkUserId a networkUserId string
* @return itself
*/
public SubjectBuilder networkUserId(String networkUserId) {
this.networkUserId = networkUserId;
return this;
}
/**
* @param domainUserId a domainUserId string
* @return itself
*/
public SubjectBuilder domainUserId(String domainUserId) {
this.domainUserId = domainUserId;
return this;
}
/**
* Creates a new Subject
*
* @return a new Subject object
*/
public Subject build() {
return new Subject(this);
}
}
/**
* Sets the User ID
*
* @param userId a user id string
*/
public void setUserId(String userId) {
if (userId != null) {
this.standardPairs.put(Parameter.UID, userId);
}
}
/**
* Sets the screen res parameter
*
* @param width a width integer
* @param height a height integer
*/
public void setScreenResolution(int width, int height) {
if (width > 0 && height > 0) {
String res = Integer.toString(width) + "x" + Integer.toString(height);
this.standardPairs.put(Parameter.RESOLUTION, res);
}
}
/**
* Sets the view port parameter
*
* @param width a width integer
* @param height a height integer
*/
public void setViewPort(int width, int height) {
if (width > 0 && height > 0) {
String res = Integer.toString(width) + "x" + Integer.toString(height);
this.standardPairs.put(Parameter.VIEWPORT, res);
}
}
/**
* Sets the color depth parameter
*
* @param depth a color depth integer
*/
public void setColorDepth(int depth) {
if (depth > 0) {
this.standardPairs.put(Parameter.COLOR_DEPTH, Integer.toString(depth));
}
}
/**
* Sets the timezone parameter
*
* @param timezone a timezone string
*/
public void setTimezone(String timezone) {
if (timezone != null) {
this.standardPairs.put(Parameter.TIMEZONE, timezone);
}
}
/**
* Sets the language parameter
*
* @param language a language string
*/
public void setLanguage(String language) {
if (language != null) {
this.standardPairs.put(Parameter.LANGUAGE, language);
}
}
/**
* User inputted ip address for the
* subject.
*
* @param ipAddress an ip address
*/
public void setIpAddress(String ipAddress) {
if (ipAddress != null) {
this.standardPairs.put(Parameter.IP_ADDRESS, ipAddress);
}
}
/**
* User inputted useragent for the
* subject.
*
* @param useragent a useragent
*/
public void setUseragent(String useragent) {
if (useragent != null) {
this.standardPairs.put(Parameter.USERAGENT, useragent);
}
}
/**
* User inputted Domain User Id for the
* subject.
*
* @param domainUserId a domain user id
*/
public void setDomainUserId(String domainUserId) {
if (domainUserId != null) {
this.standardPairs.put(Parameter.DOMAIN_UID, domainUserId);
}
}
/**
* User inputted Network User Id for the
* subject.
*
* @param networkUserId a network user id
*/
public void setNetworkUserId(String networkUserId) {
if (networkUserId != null) {
this.standardPairs.put(Parameter.NETWORK_UID, networkUserId);
}
}
/**
* Gets the Subject pairs.
*
* @return the stored k-v pairs
*/
public Map<String, String> getSubject() {
return this.standardPairs;
}
}