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
1.9 KiB
Text
57 lines
No EOL
1.9 KiB
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = suffixLookup;
|
|
const tldts_core_1 = require("tldts-core");
|
|
const trie_1 = require("./data/trie");
|
|
/**
|
|
* Lookup parts of domain in Trie
|
|
*/
|
|
function lookupInTrie(parts, trie, index) {
|
|
let result = null;
|
|
let node = trie;
|
|
while (node !== undefined) {
|
|
// We have a match!
|
|
if (node[0] === 1) {
|
|
result = {
|
|
index: index + 1,
|
|
};
|
|
}
|
|
// No more `parts` to look for
|
|
if (index === -1) {
|
|
break;
|
|
}
|
|
const succ = node[1];
|
|
node = Object.prototype.hasOwnProperty.call(succ, parts[index])
|
|
? succ[parts[index]]
|
|
: succ['*'];
|
|
index -= 1;
|
|
}
|
|
return result;
|
|
}
|
|
/**
|
|
* Check if `hostname` has a valid public suffix in `trie`.
|
|
*/
|
|
function suffixLookup(hostname, options, out) {
|
|
var _a;
|
|
if ((0, tldts_core_1.fastPathLookup)(hostname, options, out)) {
|
|
return;
|
|
}
|
|
const hostnameParts = hostname.split('.');
|
|
// Look for exceptions
|
|
const exceptionMatch = lookupInTrie(hostnameParts, trie_1.exceptions, hostnameParts.length - 1);
|
|
if (exceptionMatch !== null) {
|
|
out.publicSuffix = hostnameParts.slice(exceptionMatch.index + 1).join('.');
|
|
return;
|
|
}
|
|
// Look for a match in rules
|
|
const rulesMatch = lookupInTrie(hostnameParts, trie_1.rules, hostnameParts.length - 1);
|
|
if (rulesMatch !== null) {
|
|
out.publicSuffix = hostnameParts.slice(rulesMatch.index).join('.');
|
|
return;
|
|
}
|
|
// No match found...
|
|
// Prevailing rule is '*' so we consider the top-level domain to be the
|
|
// public suffix of `hostname` (e.g.: 'example.org' => 'org').
|
|
out.publicSuffix = (_a = hostnameParts[hostnameParts.length - 1]) !== null && _a !== void 0 ? _a : null;
|
|
}
|
|
//# sourceMappingURL=suffix-trie.js.map |