-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add
getRequestFingerprint
util (#564)
Co-authored-by: Pooya Parsa <[email protected]>
- Loading branch information
Showing
3 changed files
with
169 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
import crypto from "uncrypto"; | ||
import type { H3Event } from "../event"; | ||
import { getRequestIP, getRequestHeader } from "./request"; | ||
|
||
export interface RequestFingerprintOptions { | ||
/** @default SHA-1 */ | ||
hash?: false | "SHA-1"; | ||
|
||
/** @default `true` */ | ||
ip?: boolean; | ||
|
||
/** @default `false` */ | ||
xForwardedFor?: boolean; | ||
|
||
/** @default `false` */ | ||
method?: boolean; | ||
|
||
/** @default `false` */ | ||
path?: boolean; | ||
|
||
/** @default `false` */ | ||
userAgent?: boolean; | ||
} | ||
|
||
/** @experimental Behavior of this utility might change in the future versions */ | ||
export async function getRequestFingerprint( | ||
event: H3Event, | ||
opts: RequestFingerprintOptions = {}, | ||
): Promise<string | null> { | ||
const fingerprint: unknown[] = []; | ||
|
||
if (opts.ip !== false) { | ||
fingerprint.push( | ||
getRequestIP(event, { xForwardedFor: opts.xForwardedFor }), | ||
); | ||
} | ||
|
||
if (opts.method === true) { | ||
fingerprint.push(event.method); | ||
} | ||
|
||
if (opts.path === true) { | ||
fingerprint.push(event.path); | ||
} | ||
|
||
if (opts.userAgent === true) { | ||
fingerprint.push(getRequestHeader(event, "user-agent")); | ||
} | ||
|
||
const fingerprintString = fingerprint.filter(Boolean).join("|"); | ||
|
||
if (!fingerprintString) { | ||
return null; | ||
} | ||
|
||
if (opts.hash === false) { | ||
return fingerprintString; | ||
} | ||
|
||
const buffer = await crypto.subtle.digest( | ||
opts.hash || "SHA-1", | ||
new TextEncoder().encode(fingerprintString), | ||
); | ||
|
||
const hash = [...new Uint8Array(buffer)] | ||
.map((b) => b.toString(16).padStart(2, "0")) | ||
.join(""); | ||
|
||
return hash; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters