Rocky_Mountain_Vending/.pnpm-store/v10/files/65/d8329c68103bc52aa7268c2b432ce04337662592e305f3ad6c842f66fa75613cfb08161a2c36ec6d4f9f56daa9ca7849e1d6f84dfe12d5e4c0562ba4cd6e16
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

164 lines
No EOL
6.2 KiB
Text

// Copyright 2024 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import * as ThirdPartyWeb from '../../../third_party/third-party-web/third-party-web.js';
import * as Types from '../types/types.js';
export function getEntityForEvent(event, entityMappings) {
const url = getNonResolvedURL(event);
if (!url) {
return;
}
return getEntityForUrl(url, entityMappings);
}
export function getEntityForUrl(url, entityMappings) {
const cachedByUrl = entityMappings.entityByUrlCache.get(url);
if (cachedByUrl) {
return cachedByUrl;
}
const entity = ThirdPartyWeb.ThirdPartyWeb.getEntity(url) ?? makeUpEntity(entityMappings.createdEntityCache, url);
if (entity) {
entityMappings.entityByUrlCache.set(url, entity);
}
return entity;
}
export function getNonResolvedURL(entry, parsedTrace) {
if (Types.Events.isProfileCall(entry)) {
return entry.callFrame.url;
}
if (Types.Events.isSyntheticNetworkRequest(entry)) {
return entry.args.data.url;
}
if (Types.Events.isParseAuthorStyleSheetEvent(entry) && entry.args) {
return entry.args.data.stylesheetUrl;
}
if (entry.args?.data?.stackTrace && entry.args.data.stackTrace.length > 0) {
return entry.args.data.stackTrace[0].url;
}
// ParseHTML events store the URL under beginData, not data.
if (Types.Events.isParseHTML(entry)) {
return entry.args.beginData.url;
}
if (parsedTrace) {
// DecodeImage events use the URL from the relevant PaintImage event.
if (Types.Events.isDecodeImage(entry)) {
const paintEvent = parsedTrace.ImagePainting.paintImageForEvent.get(entry);
return paintEvent ? getNonResolvedURL(paintEvent, parsedTrace) : null;
}
// DrawLazyPixelRef events use the URL from the relevant PaintImage event.
if (Types.Events.isDrawLazyPixelRef(entry) && entry.args?.LazyPixelRef) {
const paintEvent = parsedTrace.ImagePainting.paintImageByDrawLazyPixelRef.get(entry.args.LazyPixelRef);
return paintEvent ? getNonResolvedURL(paintEvent, parsedTrace) : null;
}
}
// For all other events, try to see if the URL is provided, else return null.
if (entry.args?.data?.url) {
return entry.args.data.url;
}
// Many events don't have a url, but are associated with a request. Use the
// request's url.
const requestId = entry.args?.data?.requestId;
if (parsedTrace && requestId) {
const url = parsedTrace.NetworkRequests.byId.get(requestId)?.args.data.url;
if (url) {
return url;
}
}
return null;
}
export function makeUpEntity(entityCache, url) {
if (url.startsWith('chrome-extension:')) {
return makeUpChromeExtensionEntity(entityCache, url);
}
// Make up an entity only for valid http/https URLs.
if (!url.startsWith('http')) {
return;
}
// NOTE: Lighthouse uses a tld database to determine the root domain, but here
// we are using third party web's database. Doesn't really work for the case of classifying
// domains 3pweb doesn't know about, so it will just give us a guess.
const rootDomain = ThirdPartyWeb.ThirdPartyWeb.getRootDomain(url);
if (!rootDomain) {
return;
}
if (entityCache.has(rootDomain)) {
return entityCache.get(rootDomain);
}
const unrecognizedEntity = {
name: rootDomain,
company: rootDomain,
category: '',
categories: [],
domains: [rootDomain],
averageExecutionTime: 0,
totalExecutionTime: 0,
totalOccurrences: 0,
isUnrecognized: true,
};
entityCache.set(rootDomain, unrecognizedEntity);
return unrecognizedEntity;
}
function getChromeExtensionOrigin(url) {
return url.protocol + '//' + url.host;
}
function makeUpChromeExtensionEntity(entityCache, url, extensionName) {
const parsedUrl = new URL(url);
const origin = getChromeExtensionOrigin(parsedUrl);
const host = new URL(origin).host;
const name = extensionName || host;
const cachedEntity = entityCache.get(origin);
if (cachedEntity) {
return cachedEntity;
}
const chromeExtensionEntity = {
name,
company: name,
category: 'Chrome Extension',
homepage: 'https://chromewebstore.google.com/detail/' + host,
categories: [],
domains: [origin],
averageExecutionTime: 0,
totalExecutionTime: 0,
totalOccurrences: 0,
};
entityCache.set(origin, chromeExtensionEntity);
return chromeExtensionEntity;
}
export function addEventToEntityMapping(event, entityMappings) {
// As we share the entityMappings between Network and Renderer... We can have ResourceSendRequest events passed in here
// that were already mapped in Network. So, to avoid mapping twice, we always check that we didn't yet.
if (entityMappings.entityByEvent.has(event)) {
return;
}
const entity = getEntityForEvent(event, entityMappings);
if (!entity) {
return;
}
const mappedEvents = entityMappings.eventsByEntity.get(entity);
if (mappedEvents) {
mappedEvents.push(event);
}
else {
entityMappings.eventsByEntity.set(entity, [event]);
}
entityMappings.entityByEvent.set(event, entity);
}
// A slight upgrade of addEventToEntityMapping to handle the sub-events of a network request.
export function addNetworkRequestToEntityMapping(networkRequest, entityMappings, requestTraceEvents) {
const entity = getEntityForEvent(networkRequest, entityMappings);
if (!entity) {
return;
}
// In addition to mapping the network request, we'll also assign this entity to its "child" instant events like receiveData, willSendRequest, finishLoading, etc,
const eventsToMap = [networkRequest, ...Object.values(requestTraceEvents).flat()];
const mappedEvents = entityMappings.eventsByEntity.get(entity);
if (mappedEvents) {
mappedEvents.push(...eventsToMap);
}
else {
entityMappings.eventsByEntity.set(entity, eventsToMap);
}
for (const evt of eventsToMap) {
entityMappings.entityByEvent.set(evt, entity);
}
}
//# sourceMappingURL=helpers.js.map