-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathfree-mode-country.ts
More file actions
349 lines (313 loc) · 8.2 KB
/
Copy pathfree-mode-country.ts
File metadata and controls
349 lines (313 loc) · 8.2 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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
import { createHmac } from 'node:crypto'
import geoip from 'geoip-lite'
import type { NextRequest } from 'next/server'
import type {
FreebuffCountryBlockReason,
FreebuffIpPrivacySignal,
} from '@codebuff/common/types/freebuff-session'
export const FREE_MODE_ALLOWED_COUNTRIES = new Set([
'US',
'CA',
'GB',
'AU',
'NZ',
'NO',
'SE',
'NL',
'DK',
'DE',
'FR',
'IT',
'ES',
'PT',
'FI',
'BE',
'LU',
'LI',
'CH',
'AT',
'SG',
'MT',
'IL',
'IE',
'IS',
])
const CLOUDFLARE_ANONYMIZED_OR_UNKNOWN_COUNTRIES = new Set(['T1', 'XX'])
export type FreeModeCountryBlockReason = FreebuffCountryBlockReason
export type FreeModeIpPrivacySignal = FreebuffIpPrivacySignal
export type FreeModeIpPrivacy = {
signals: FreeModeIpPrivacySignal[]
}
export type FreeModeCountryAccess = {
allowed: boolean
countryCode: string | null
blockReason: FreeModeCountryBlockReason | null
cfCountry: string | null
geoipCountry: string | null
ipPrivacy: FreeModeIpPrivacy | null
hasClientIp: boolean
clientIpHash: string | null
}
export type LookupIpPrivacyFn = (
ip: string,
) => Promise<FreeModeIpPrivacy | null>
type FreeModeCountryAccessOptions = {
lookupIpPrivacy?: LookupIpPrivacyFn
fetch?: typeof globalThis.fetch
ipinfoToken: string
ipHashSecret?: string
allowLocalhost?: boolean
}
const LOCALHOST_IPS = new Set(['::1', '::ffff:127.0.0.1'])
function isLocalhostIp(ip: string): boolean {
return ip.startsWith('127.') || LOCALHOST_IPS.has(ip)
}
type ResolvedCountryAccess = Omit<
FreeModeCountryAccess,
'allowed' | 'blockReason' | 'ipPrivacy' | 'countryCode'
> & {
countryCode: string
}
export const IPINFO_PRIVACY_CACHE_TTL_MS = 30 * 60 * 1000
const IPINFO_PRIVACY_CACHE_MAX_ENTRIES = 5000
const ipinfoPrivacyCache = new Map<
string,
{ expiresAt: number; privacy: FreeModeIpPrivacy | null }
>()
const FREE_MODE_BLOCKED_PRIVACY_SIGNALS = new Set<FreeModeIpPrivacySignal>([
'anonymous',
'vpn',
'proxy',
'tor',
'relay',
'res_proxy',
'hosting',
'service',
])
export function extractClientIp(req: NextRequest): string | undefined {
const cfConnectingIp = req.headers.get('cf-connecting-ip')?.trim()
if (cfConnectingIp) return cfConnectingIp
const realIp = req.headers.get('x-real-ip')?.trim()
if (realIp) return realIp
const forwardedFor = req.headers.get('x-forwarded-for')
if (forwardedFor) {
return forwardedFor.split(',')[0].trim()
}
return undefined
}
function hashClientIp(
clientIp: string | undefined,
secret: string | undefined,
): string | null {
if (!clientIp || !secret) return null
return createHmac('sha256', secret).update(clientIp).digest('hex')
}
function setIpinfoPrivacyCache(
ip: string,
privacy: FreeModeIpPrivacy | null,
): void {
while (ipinfoPrivacyCache.size >= IPINFO_PRIVACY_CACHE_MAX_ENTRIES) {
const oldestIp = ipinfoPrivacyCache.keys().next().value
if (!oldestIp) break
ipinfoPrivacyCache.delete(oldestIp)
}
ipinfoPrivacyCache.set(ip, {
expiresAt: Date.now() + IPINFO_PRIVACY_CACHE_TTL_MS,
privacy,
})
}
function privacySignalsFromIpinfo(
data: Record<string, unknown>,
): FreeModeIpPrivacySignal[] {
const anonymous =
data.anonymous && typeof data.anonymous === 'object'
? (data.anonymous as Record<string, unknown>)
: {}
const signals: FreeModeIpPrivacySignal[] = []
if (data.vpn === true || anonymous.is_vpn === true) signals.push('vpn')
if (data.proxy === true || anonymous.is_proxy === true) signals.push('proxy')
if (data.tor === true || anonymous.is_tor === true) signals.push('tor')
if (data.relay === true || anonymous.is_relay === true) signals.push('relay')
if (anonymous.is_res_proxy === true) signals.push('res_proxy')
if (data.hosting === true || data.is_hosting === true) {
signals.push('hosting')
}
if (
data.service === true ||
(typeof data.service === 'string' && data.service.length > 0)
) {
signals.push('service')
}
if (data.is_anonymous === true) {
signals.push('anonymous')
}
return signals
}
export async function lookupIpinfoPrivacy(params: {
ip: string
token: string
fetch: typeof globalThis.fetch
}): Promise<FreeModeIpPrivacy | null> {
const cached = ipinfoPrivacyCache.get(params.ip)
if (cached && cached.expiresAt > Date.now()) {
return cached.privacy
}
const response = await params.fetch(
`https://api.ipinfo.io/lookup/${encodeURIComponent(params.ip)}?token=${encodeURIComponent(params.token)}`,
)
if (!response.ok) {
return null
}
const data = (await response.json()) as Record<string, unknown>
const signals = privacySignalsFromIpinfo(data)
const privacy = {
signals,
}
setIpinfoPrivacyCache(params.ip, privacy)
return privacy
}
export async function getFreeModeCountryAccess(
req: NextRequest,
options: FreeModeCountryAccessOptions,
): Promise<FreeModeCountryAccess> {
const cfCountry = req.headers.get('cf-ipcountry')?.toUpperCase() ?? null
const clientIp = extractClientIp(req)
const clientIpHash = hashClientIp(clientIp, options.ipHashSecret)
// Dev-only bypass: when no Cloudflare country header is set and the request
// is from loopback (or has no client IP at all), treat it as US-allowed so
// local development doesn't require ipinfo or geoip resolution. In
// production behind Cloudflare, cf-ipcountry is always set, so this branch
// is unreachable.
if (
options.allowLocalhost &&
!cfCountry &&
(!clientIp || isLocalhostIp(clientIp))
) {
return {
allowed: true,
countryCode: 'US',
blockReason: null,
cfCountry: null,
geoipCountry: null,
ipPrivacy: { signals: [] },
hasClientIp: Boolean(clientIp),
clientIpHash,
}
}
if (cfCountry && CLOUDFLARE_ANONYMIZED_OR_UNKNOWN_COUNTRIES.has(cfCountry)) {
return {
allowed: false,
countryCode: null,
blockReason: 'anonymized_or_unknown_country',
cfCountry,
geoipCountry: null,
ipPrivacy: null,
hasClientIp: Boolean(clientIp),
clientIpHash,
}
}
let baseAccess: ResolvedCountryAccess
if (cfCountry) {
baseAccess = {
countryCode: cfCountry,
cfCountry,
geoipCountry: null,
hasClientIp: Boolean(clientIp),
clientIpHash,
}
} else if (!clientIp) {
return {
allowed: false,
countryCode: null,
blockReason: 'missing_client_ip',
cfCountry: null,
geoipCountry: null,
ipPrivacy: null,
hasClientIp: false,
clientIpHash,
}
} else {
const geoipCountry = geoip.lookup(clientIp)?.country ?? null
if (!geoipCountry) {
return {
allowed: false,
countryCode: null,
blockReason: 'unresolved_client_ip',
cfCountry: null,
geoipCountry: null,
ipPrivacy: null,
hasClientIp: true,
clientIpHash,
}
}
baseAccess = {
countryCode: geoipCountry,
cfCountry: null,
geoipCountry,
hasClientIp: true,
clientIpHash,
}
}
if (!FREE_MODE_ALLOWED_COUNTRIES.has(baseAccess.countryCode)) {
return {
...baseAccess,
allowed: false,
blockReason: 'country_not_allowed',
ipPrivacy: null,
clientIpHash,
}
}
if (!clientIp) {
return {
allowed: false,
countryCode: null,
blockReason: 'missing_client_ip',
cfCountry,
geoipCountry: null,
ipPrivacy: null,
hasClientIp: false,
clientIpHash,
}
}
let ipPrivacy: FreeModeIpPrivacy | null
try {
ipPrivacy = options.lookupIpPrivacy
? await options.lookupIpPrivacy(clientIp)
: await lookupIpinfoPrivacy({
ip: clientIp,
token: options.ipinfoToken,
fetch: options.fetch ?? globalThis.fetch,
})
} catch {
ipPrivacy = null
}
if (!ipPrivacy) {
return {
...baseAccess,
allowed: false,
blockReason: 'ip_privacy_lookup_failed',
ipPrivacy: null,
clientIpHash,
}
}
if (
ipPrivacy.signals.some((signal) =>
FREE_MODE_BLOCKED_PRIVACY_SIGNALS.has(signal),
)
) {
return {
...baseAccess,
allowed: false,
blockReason: 'anonymous_network',
ipPrivacy,
clientIpHash,
}
}
return {
...baseAccess,
allowed: true,
blockReason: null,
ipPrivacy,
clientIpHash,
}
}