Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Forward client's user-agent instead of Node's #3152

Merged
merged 1 commit into from
Jul 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion src/app/core/forward-client-ip/forward-client-ip.interceptor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@
*/
intercept(httpRequest: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
const clientIp = this.req.get('x-forwarded-for') || this.req.connection.remoteAddress;
return next.handle(httpRequest.clone({ setHeaders: { 'X-Forwarded-For': clientIp } }));
const headers = { 'X-Forwarded-For': clientIp };

// if the request has a user-agent retain it
const userAgent = this.req.get('user-agent');
if (userAgent) {
headers['User-Agent'] = userAgent;

Check warning on line 26 in src/app/core/forward-client-ip/forward-client-ip.interceptor.ts

View check run for this annotation

Codecov / codecov/patch

src/app/core/forward-client-ip/forward-client-ip.interceptor.ts#L26

Added line #L26 was not covered by tests
}

return next.handle(httpRequest.clone({ setHeaders: headers }));
}
}
Loading