mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Remove constructor injection in favor of inject() calls
(cherry picked from commit 55be477979)
135 lines
3.9 KiB
TypeScript
135 lines
3.9 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
|
|
import {DOCUMENT, ɵparseCookieValue as parseCookieValue} from '../../index';
|
|
import {
|
|
EnvironmentInjector,
|
|
inject,
|
|
Injectable,
|
|
InjectionToken,
|
|
runInInjectionContext,
|
|
} from '@angular/core';
|
|
import {Observable} from 'rxjs';
|
|
|
|
import {HttpHandler} from './backend';
|
|
import {HttpHandlerFn, HttpInterceptor} from './interceptor';
|
|
import {HttpRequest} from './request';
|
|
import {HttpEvent} from './response';
|
|
|
|
export const XSRF_ENABLED = new InjectionToken<boolean>(
|
|
typeof ngDevMode !== undefined && ngDevMode ? 'XSRF_ENABLED' : '',
|
|
{
|
|
factory: () => true,
|
|
},
|
|
);
|
|
|
|
export const XSRF_DEFAULT_COOKIE_NAME = 'XSRF-TOKEN';
|
|
export const XSRF_COOKIE_NAME = new InjectionToken<string>(
|
|
typeof ngDevMode !== undefined && ngDevMode ? 'XSRF_COOKIE_NAME' : '',
|
|
{
|
|
providedIn: 'root',
|
|
factory: () => XSRF_DEFAULT_COOKIE_NAME,
|
|
},
|
|
);
|
|
|
|
export const XSRF_DEFAULT_HEADER_NAME = 'X-XSRF-TOKEN';
|
|
export const XSRF_HEADER_NAME = new InjectionToken<string>(
|
|
typeof ngDevMode !== undefined && ngDevMode ? 'XSRF_HEADER_NAME' : '',
|
|
{
|
|
providedIn: 'root',
|
|
factory: () => XSRF_DEFAULT_HEADER_NAME,
|
|
},
|
|
);
|
|
|
|
/**
|
|
* `HttpXsrfTokenExtractor` which retrieves the token from a cookie.
|
|
*/
|
|
@Injectable({providedIn: 'root'})
|
|
export class HttpXsrfCookieExtractor implements HttpXsrfTokenExtractor {
|
|
private readonly cookieName = inject(XSRF_COOKIE_NAME);
|
|
private readonly doc = inject(DOCUMENT);
|
|
|
|
private lastCookieString: string = '';
|
|
private lastToken: string | null = null;
|
|
|
|
/**
|
|
* @internal for testing
|
|
*/
|
|
parseCount: number = 0;
|
|
|
|
getToken(): string | null {
|
|
if (typeof ngServerMode !== 'undefined' && ngServerMode) {
|
|
return null;
|
|
}
|
|
const cookieString = this.doc.cookie || '';
|
|
if (cookieString !== this.lastCookieString) {
|
|
this.parseCount++;
|
|
this.lastToken = parseCookieValue(cookieString, this.cookieName);
|
|
this.lastCookieString = cookieString;
|
|
}
|
|
return this.lastToken;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Retrieves the current XSRF token to use with the next outgoing request.
|
|
*
|
|
* @publicApi
|
|
*/
|
|
@Injectable({providedIn: 'root', useExisting: HttpXsrfCookieExtractor})
|
|
export abstract class HttpXsrfTokenExtractor {
|
|
/**
|
|
* Get the XSRF token to use with an outgoing request.
|
|
*
|
|
* Will be called for every request, so the token may change between requests.
|
|
*/
|
|
abstract getToken(): string | null;
|
|
}
|
|
|
|
export function xsrfInterceptorFn(
|
|
req: HttpRequest<unknown>,
|
|
next: HttpHandlerFn,
|
|
): Observable<HttpEvent<unknown>> {
|
|
const lcUrl = req.url.toLowerCase();
|
|
// Skip both non-mutating requests and absolute URLs.
|
|
// Non-mutating requests don't require a token, and absolute URLs require special handling
|
|
// anyway as the cookie set
|
|
// on our origin is not the same as the token expected by another origin.
|
|
if (
|
|
!inject(XSRF_ENABLED) ||
|
|
req.method === 'GET' ||
|
|
req.method === 'HEAD' ||
|
|
lcUrl.startsWith('http://') ||
|
|
lcUrl.startsWith('https://')
|
|
) {
|
|
return next(req);
|
|
}
|
|
|
|
const token = inject(HttpXsrfTokenExtractor).getToken();
|
|
const headerName = inject(XSRF_HEADER_NAME);
|
|
|
|
// Be careful not to overwrite an existing header of the same name.
|
|
if (token != null && !req.headers.has(headerName)) {
|
|
req = req.clone({headers: req.headers.set(headerName, token)});
|
|
}
|
|
return next(req);
|
|
}
|
|
|
|
/**
|
|
* `HttpInterceptor` which adds an XSRF token to eligible outgoing requests.
|
|
*/
|
|
@Injectable()
|
|
export class HttpXsrfInterceptor implements HttpInterceptor {
|
|
private readonly injector = inject(EnvironmentInjector);
|
|
|
|
intercept(initialRequest: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
|
|
return runInInjectionContext(this.injector, () =>
|
|
xsrfInterceptorFn(initialRequest, (downstreamRequest) => next.handle(downstreamRequest)),
|
|
);
|
|
}
|
|
}
|