-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathurl-slugs.ts
More file actions
153 lines (130 loc) · 3.6 KB
/
url-slugs.ts
File metadata and controls
153 lines (130 loc) · 3.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
import type { ProductData } from "@/utils/parsers/product-parser-functions";
import type { ProfileData } from "@/utils/types/types";
import { nip19 } from "nostr-tools";
export interface ListingSlugCandidate {
id: string;
title: string;
pubkey: string;
}
export function titleToSlug(title: string): string {
if (!title) return "";
return title
.trim()
.replace(/[#?&\/\\%=+<>{}|^~\[\]`@!$*()"';:,]/g, "")
.replace(/\s+/g, "-")
.replace(/-+/g, "-")
.replace(/^-|-$/g, "");
}
export function getListingSlug(
product: ListingSlugCandidate,
allProducts: ListingSlugCandidate[]
): string {
const baseSlug = titleToSlug(product.title);
if (!baseSlug) {
return product.id;
}
const collisions = allProducts.filter(
(p) => titleToSlug(p.title) === baseSlug
);
if (collisions.length <= 1) {
return baseSlug;
}
return `${baseSlug}-${product.pubkey.substring(0, 8)}`;
}
export function findListingBySlug<T extends ListingSlugCandidate>(
slug: string,
allProducts: T[]
): T | undefined {
const pubkeySuffixMatch = slug.match(/^(.+)-([a-f0-9]{8})$/);
if (pubkeySuffixMatch) {
const baseSlug = pubkeySuffixMatch[1]!;
const pubkeyFragment = pubkeySuffixMatch[2]!;
const match = allProducts.find(
(p) =>
titleToSlug(p.title) === baseSlug && p.pubkey.startsWith(pubkeyFragment)
);
if (match) return match;
}
const plainMatches = allProducts.filter((p) => titleToSlug(p.title) === slug);
if (plainMatches.length >= 1) {
return plainMatches[0];
}
return undefined;
}
export function findProductBySlug(
slug: string,
allProducts: ProductData[]
): ProductData | undefined {
return findListingBySlug(slug, allProducts);
}
export function profileNameToSlug(name: string): string {
if (!name) return "";
return name
.trim()
.replace(/[#?&\/\\%=+<>{}|^~\[\]`@!$*()"';:,]/g, "")
.replace(/\s+/g, "-")
.replace(/-+/g, "-")
.replace(/^-|-$/g, "");
}
export function getProfileSlug(
pubkey: string,
profileData: Map<string, ProfileData>
): string {
const profile = profileData.get(pubkey);
const name = profile?.content?.name;
if (!name) {
return nip19.npubEncode(pubkey);
}
const baseSlug = profileNameToSlug(name);
if (!baseSlug) {
return nip19.npubEncode(pubkey);
}
const collisions = Array.from(profileData.values()).filter(
(p) => p.content?.name && profileNameToSlug(p.content.name) === baseSlug
);
if (collisions.length <= 1) {
return baseSlug;
}
return `${baseSlug}-${pubkey.substring(0, 8)}`;
}
export function findPubkeyByProfileSlug(
slug: string,
profileData: Map<string, ProfileData>
): string | undefined {
const matches: string[] = [];
for (const [pubkey, profile] of profileData.entries()) {
if (
profile.content?.name &&
profileNameToSlug(profile.content.name) === slug
) {
matches.push(pubkey);
}
}
if (matches.length === 1) {
return matches[0];
}
if (matches.length > 1) {
return undefined;
}
const pubkeySuffixMatch = slug.match(/^(.+)-([a-f0-9]{8})$/);
if (pubkeySuffixMatch) {
const baseSlug = pubkeySuffixMatch[1]!;
const pubkeyFragment = pubkeySuffixMatch[2]!;
for (const [pubkey, profile] of profileData.entries()) {
if (
profile.content?.name &&
profileNameToSlug(profile.content.name) === baseSlug &&
pubkey.startsWith(pubkeyFragment)
) {
return pubkey;
}
}
}
return undefined;
}
export function isNaddr(str: string): boolean {
return str.startsWith("naddr1");
}
export function isNpub(str: string): boolean {
return str.startsWith("npub1");
}