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>
57 lines
No EOL
2.5 KiB
Text
57 lines
No EOL
2.5 KiB
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.isLayerIgnored = exports.getMiddlewareMetadata = void 0;
|
|
/*
|
|
* Copyright The OpenTelemetry Authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
const types_1 = require("./types");
|
|
const AttributeNames_1 = require("./enums/AttributeNames");
|
|
const semantic_conventions_1 = require("@opentelemetry/semantic-conventions");
|
|
const getMiddlewareMetadata = (context, layer, isRouter, layerPath) => {
|
|
var _a;
|
|
if (isRouter) {
|
|
return {
|
|
attributes: {
|
|
[AttributeNames_1.AttributeNames.KOA_NAME]: layerPath === null || layerPath === void 0 ? void 0 : layerPath.toString(),
|
|
[AttributeNames_1.AttributeNames.KOA_TYPE]: types_1.KoaLayerType.ROUTER,
|
|
[semantic_conventions_1.SEMATTRS_HTTP_ROUTE]: layerPath === null || layerPath === void 0 ? void 0 : layerPath.toString(),
|
|
},
|
|
name: context._matchedRouteName || `router - ${layerPath}`,
|
|
};
|
|
}
|
|
else {
|
|
return {
|
|
attributes: {
|
|
[AttributeNames_1.AttributeNames.KOA_NAME]: (_a = layer.name) !== null && _a !== void 0 ? _a : 'middleware',
|
|
[AttributeNames_1.AttributeNames.KOA_TYPE]: types_1.KoaLayerType.MIDDLEWARE,
|
|
},
|
|
name: `middleware - ${layer.name}`,
|
|
};
|
|
}
|
|
};
|
|
exports.getMiddlewareMetadata = getMiddlewareMetadata;
|
|
/**
|
|
* Check whether the given request is ignored by configuration
|
|
* @param [list] List of ignore patterns
|
|
* @param [onException] callback for doing something when an exception has
|
|
* occurred
|
|
*/
|
|
const isLayerIgnored = (type, config) => {
|
|
var _a;
|
|
return !!(Array.isArray(config === null || config === void 0 ? void 0 : config.ignoreLayersType) &&
|
|
((_a = config === null || config === void 0 ? void 0 : config.ignoreLayersType) === null || _a === void 0 ? void 0 : _a.includes(type)));
|
|
};
|
|
exports.isLayerIgnored = isLayerIgnored;
|
|
//# sourceMappingURL=utils.js.map |