-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathGeolocationParams.ts
More file actions
60 lines (49 loc) · 1.21 KB
/
GeolocationParams.ts
File metadata and controls
60 lines (49 loc) · 1.21 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
export class GeolocationParams {
public ipAddress: string;
public fields: string;
public excludes: string;
public lang: string;
public ipAddresses: string[];
constructor() {
this.ipAddress = "";
this.fields = "";
this.excludes = "";
this.lang = "en";
this.ipAddresses = [];
}
public setIPAddress(ipAddress: string = ""): void {
this.ipAddress = ipAddress;
}
public getIPAddress(): string {
return this.ipAddress;
}
public setFields(fields: string = ""): void {
this.fields = fields;
}
public getFields(): string {
return this.fields;
}
public setExcludes(excludes: string = ""): void {
this.excludes = excludes;
}
public getExcludes(): string {
return this.excludes;
}
public setLang(lang: string = "en"): void {
this.lang = lang;
}
public getLang(): string {
return this.lang;
}
public setIPAddresses(ipAddresses: string[] = []): void {
if (ipAddresses.length > 50) {
// tslint:disable-next-line:no-console
console.log("Max. number of IP addresses cannot be more than 50.");
} else {
this.ipAddresses = ipAddresses;
}
}
public getIPAddresses(): string[] {
return this.ipAddresses;
}
}