forked from dubinc/dub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstats.ts
More file actions
270 lines (248 loc) · 6.9 KB
/
stats.ts
File metadata and controls
270 lines (248 loc) · 6.9 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
import { NextRequest } from "next/server";
import { COUNTRIES } from "@/lib/constants";
export interface RawStatsProps {
geo: NextRequest["geo"];
ua: any;
referer: string;
timestamp: number;
}
export interface StatsProps {
key: string;
interval: IntervalProps;
totalClicks: number;
clicksData: { start: number; end: number; count: number }[];
locationData: {
country: string;
countryCode: string;
city: string;
region: string;
}[];
deviceData: { device: string; browser: string; os: string; bot: string }[];
}
export type IntervalProps = "1h" | "24h" | "7d" | "30d";
export const intervalData = {
"1h": {
milliseconds: 3600000,
intervals: 60,
coefficient: 60000,
format: (e: number) =>
new Date(e).toLocaleTimeString("en-us", {
hour: "numeric",
minute: "numeric",
}),
},
"24h": {
milliseconds: 86400000,
intervals: 24,
coefficient: 3600000,
format: (e: number) =>
new Date(e)
.toLocaleDateString("en-us", {
month: "short",
day: "numeric",
hour: "numeric",
})
.replace(",", " "),
},
"7d": {
milliseconds: 604800000,
intervals: 7,
coefficient: 86400000,
format: (e: number) =>
new Date(e).toLocaleDateString("en-us", {
month: "short",
day: "numeric",
}),
},
"30d": {
milliseconds: 2592000000,
intervals: 30,
coefficient: 86400000,
format: (e: number) =>
new Date(e).toLocaleDateString("en-us", {
month: "short",
day: "numeric",
}),
},
};
interface getTimeIntervalsOutputProps {
startTimestamp: number;
endTimestamp: number;
timeIntervals: { start: number; end: number }[];
}
export const getTimeIntervals = (
interval: IntervalProps
): getTimeIntervalsOutputProps => {
const { milliseconds, intervals, coefficient } = intervalData[interval];
const endTimestamp = Math.ceil(Date.now() / coefficient) * coefficient;
const startTimestamp = endTimestamp - milliseconds;
const timeIntervals = Array.from({ length: intervals }, (_, i) => ({
start: startTimestamp + i * coefficient,
end: startTimestamp + (i + 1) * coefficient,
}));
return { startTimestamp, endTimestamp, timeIntervals };
};
export function processData(
key: string,
data: RawStatsProps[],
interval?: IntervalProps // if undefined, 7d is used
): StatsProps {
const { timeIntervals } = getTimeIntervals(interval || "7d");
const clicksData = timeIntervals.map((interval) => ({
...interval,
count: data.filter(
(d) => d.timestamp > interval.start && d.timestamp < interval.end
).length,
}));
const locationData = data.map(({ geo }) => {
const { country: countryCode, city, region } = geo || {};
const country = countryCode
? COUNTRIES[countryCode]
? COUNTRIES[countryCode]
: countryCode
: "Unknown";
return {
country,
countryCode: countryCode || "Unknown",
city: city || country,
region: region || country,
};
});
const deviceData = data.map(({ ua }) => {
const { ua: uaString, device, browser, os } = ua || {};
return {
device: device?.type
? device?.type
: handleDeviceEdgeCases(uaString) !== "Unknown"
? "Bot"
: "Desktop", // placeholder for now, after https://github.com/faisalman/ua-parser-js/issues/489 is fixed we can change this back to Unknown
browser: browser?.name
? browser?.name
: handleDeviceEdgeCases(uaString) !== "Unknown"
? "Bot"
: "Unknown",
os: os?.name
? os?.name
: handleDeviceEdgeCases(uaString) !== "Unknown"
? "Bot"
: "Unknown",
bot: handleDeviceEdgeCases(uaString),
};
});
return {
key,
interval: interval || "7d",
totalClicks: data.length,
clicksData,
locationData,
deviceData,
};
}
export interface LocationStatsProps {
display: string;
code: string;
count: number;
}
export type LocationTabs = "country" | "city" | "region";
export const processLocationData = (
data: StatsProps["locationData"],
tab: LocationTabs
): LocationStatsProps[] => {
const countryCodeMap: { [key: string]: string } = {};
const results =
data && data.length > 0
? data.reduce<Record<string, number>>((acc, d) => {
const count = acc[d[tab]] || 0;
acc[d[tab]] = count + 1;
countryCodeMap[d[tab]] = d.countryCode;
return acc;
}, {})
: {};
return Object.entries(results)
.map(([item, count]) => ({
display: item,
code: countryCodeMap[item],
count,
}))
.sort((a, b) => b.count - a.count);
};
export type DeviceTabs = "device" | "browser" | "os" | "bot";
export interface DeviceStatsProps {
display: string;
count: number;
}
export const processDeviceData = (
data: StatsProps["deviceData"],
tab: DeviceTabs,
showBots: boolean
): DeviceStatsProps[] => {
const results =
data && data.length > 0
? data.reduce<Record<string, number>>((acc, d) => {
const currentVal = d[tab];
const count = acc[currentVal] || 0;
// for the bots tab, we only want to show bots
if (tab === "bot") {
if (currentVal !== "Unknown") {
acc[currentVal] = count + 1;
}
// for all other tabs, we only show bots if showBots is true
} else {
if (currentVal !== "Bot" || (currentVal === "Bot" && showBots)) {
acc[currentVal] = count + 1;
}
}
return acc;
}, {})
: {};
return Object.entries(results)
.map(([display, count]) => ({
display,
count,
}))
.sort((a, b) => b.count - a.count);
};
export const dummyData: StatsProps = {
key: "test",
interval: "7d",
totalClicks: 0,
clicksData: getTimeIntervals("7d").timeIntervals.map((interval) => ({
...interval,
count: 0,
})),
// @ts-ignore
locationData: null,
// @ts-ignore
deviceData: null,
};
export const handleDeviceEdgeCases = (ua: string): string => {
if (ua.includes("curl")) {
return "Curl Request";
} else if (ua.includes("Slackbot")) {
return "Slack Bot";
} else if (ua.includes("Twitterbot")) {
return "Twitter Bot";
} else if (ua.includes("facebookexternalhit")) {
return "Facebook Bot";
} else if (ua.includes("LinkedInBot")) {
return "LinkedIn Bot";
} else if (ua.includes("WhatsApp")) {
return "WhatsApp Bot";
} else if (ua.includes("TelegramBot")) {
return "Telegram Bot";
} else if (ua.includes("Discordbot")) {
return "Discord Bot";
} else if (ua.includes("Googlebot")) {
return "Google Bot";
} else if (ua.includes("Baiduspider")) {
return "Baidu Bot";
} else if (ua.includes("bingbot")) {
return "Bing Bot";
} else if (ua.includes("YandexBot")) {
return "Yandex Bot";
} else if (ua.includes("DuckDuckBot")) {
return "DuckDuckGo Bot";
} else {
return "Unknown";
}
};