12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import { defineIntegration, convertIntegrationFnToClass } from '@sentry/core';
- import { WINDOW } from '../helpers.js';
- const INTEGRATION_NAME = 'HttpContext';
- const _httpContextIntegration = (() => {
- return {
- name: INTEGRATION_NAME,
- // TODO v8: Remove this
- setupOnce() {}, // eslint-disable-line @typescript-eslint/no-empty-function
- preprocessEvent(event) {
- // if none of the information we want exists, don't bother
- if (!WINDOW.navigator && !WINDOW.location && !WINDOW.document) {
- return;
- }
- // grab as much info as exists and add it to the event
- const url = (event.request && event.request.url) || (WINDOW.location && WINDOW.location.href);
- const { referrer } = WINDOW.document || {};
- const { userAgent } = WINDOW.navigator || {};
- const headers = {
- ...(event.request && event.request.headers),
- ...(referrer && { Referer: referrer }),
- ...(userAgent && { 'User-Agent': userAgent }),
- };
- const request = { ...event.request, ...(url && { url }), headers };
- event.request = request;
- },
- };
- }) ;
- const httpContextIntegration = defineIntegration(_httpContextIntegration);
- /**
- * HttpContext integration collects information about HTTP request headers.
- * @deprecated Use `httpContextIntegration()` instead.
- */
- // eslint-disable-next-line deprecation/deprecation
- const HttpContext = convertIntegrationFnToClass(INTEGRATION_NAME, httpContextIntegration)
- ;
- export { HttpContext, httpContextIntegration };
- //# sourceMappingURL=httpcontext.js.map
|