733894bb4f
Closes #<issue> ## ✅ Checklist - [ ] I have followed every step in the [contributing guide](https://github.com/triggerdotdev/trigger.dev/blob/main/CONTRIBUTING.md) - [ ] The PR title follows the convention. - [ ] I ran and tested the code works --- ## Testing _[Describe the steps you took to test this change]_ --- ## Changelog _[Short description of what has changed]_ --- ## Screenshots _[Screenshots]_ 💯 --------- Co-authored-by: Matt Aitken <matt@mattaitken.com>
11 lines
406 B
TypeScript
11 lines
406 B
TypeScript
/**
|
|
* Extracts the client IP address from the X-Forwarded-For header.
|
|
* Takes the last item in the header since ALB appends the real client IP by default.
|
|
*/
|
|
export function extractClientIp(xff: string | null): string | null {
|
|
if (!xff) return null;
|
|
|
|
const parts = xff.split(",").map((p) => p.trim());
|
|
return parts[parts.length - 1]; // take last item, ALB appends the real client IP by default
|
|
}
|