File size: 6,411 Bytes
bee6636 |
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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 |
import { type URLMeta } from "../rewriters/url";
import type {
default as BareClient,
BareResponseFetch,
} from "@mercuryworkshop/bare-mux";
// Cache every hour
const CACHE_DURATION_MINUTES = 60;
const CACHE_KEY = "publicSuffixList";
/**
* Gets a connection to the IndexedDB database
*
* @returns Resolves to the database connection
*/
async function getDB(): Promise<IDBDatabase> {
const request = indexedDB.open("$scramjet", 1);
return new Promise((resolve, reject) => {
request.onerror = () => reject(request.error);
request.onsuccess = () => resolve(request.result);
});
}
/**
* Gets cached Public Suffix List
*
* @returns Cached Public Suffix List data if not expired, or `null`
*/
async function getCachedSuffixList(): Promise<{
data: string[];
expiry: number;
} | null> {
const db = await getDB();
const tx = db.transaction(CACHE_KEY, "readonly");
const store = tx.objectStore(CACHE_KEY);
return new Promise((resolve) => {
const request = store.get(CACHE_KEY);
request.onsuccess = () => resolve(request.result || null);
request.onerror = () => resolve(null);
});
}
/**
* Stores public suffix list
*
* @param data Public Suffix list data to cache
*/
async function setCachedSuffixList(data: string[]): Promise<void> {
const db = await getDB();
const tx = db.transaction("publicSuffixList", "readwrite");
const store = tx.objectStore("publicSuffixList");
return new Promise((resolve, reject) => {
const request = store.put(
{
data,
expiry: Date.now() + CACHE_DURATION_MINUTES * 60 * 1000,
},
CACHE_KEY
);
request.onsuccess = () => resolve();
request.onerror = () => reject(request.error);
});
}
/**
* Emulate `Sec-Fetch-Site` header using the referrer (another reason why Force Referrer is now a needed SJ feature)
*/
export async function getSiteDirective(
meta: URLMeta,
referrerURL: URL,
client: BareClient
): Promise<string> {
if (!referrerURL) {
return "none";
}
if (meta.origin.origin === referrerURL.origin) {
return "same-origin";
}
const sameSite = await isSameSite(meta.origin, referrerURL, client);
if (sameSite) {
return "same-site";
}
return "cross-site";
}
/**
* Tests if the two URLs are from the same site.
* This will be used in the response header rewriter.
*
* @see https://developer.mozilla.org/en-US/docs/Glossary/Site
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Sec-Fetch-Site#directives
*
* @param url1 First URL to compare
* @param url2 Second URL to compare
* @param client `BareClient` instance used for fetching
* @returns Whether the two URLs are from the same site
*
* @throws {Error} If an error occurs while getting the Public Suffix List
*/
export async function isSameSite(
url1: URL,
url2: URL,
client: BareClient
): Promise<boolean> {
const registrableDomain1 = await getRegistrableDomain(url1, client);
const registrableDomain2 = await getRegistrableDomain(url2, client);
return registrableDomain1 === registrableDomain2;
}
/**
* Gets the registrable domain (eTLD+1) for a URL
* @param url URL to get registrable domain for
* @param client `BareClient` instance for fetching public suffix list
* @returns Registrable domain
*/
async function getRegistrableDomain(
url: URL,
client: BareClient
): Promise<string> {
const publicSuffixes = await getPublicSuffixList(client);
const hostname = url.hostname.toLowerCase();
const labels = hostname.split(".");
let matchedSuffix = "";
let isException = false;
for (const suffix of publicSuffixes) {
const actualSuffix = suffix.startsWith("!") ? suffix.substring(1) : suffix;
const suffixLabels = actualSuffix.split(".");
if (matchesSuffix(labels, suffixLabels)) {
if (suffix.startsWith("!")) {
matchedSuffix = actualSuffix;
isException = true;
break;
}
if (!isException && actualSuffix.length > matchedSuffix.length) {
matchedSuffix = actualSuffix;
}
}
}
if (!matchedSuffix) {
return labels.slice(-2).join(".");
}
const suffixLabelCount = matchedSuffix.split(".").length;
const domainLabelCount = isException
? suffixLabelCount
: suffixLabelCount + 1;
return labels.slice(-domainLabelCount).join(".");
}
/**
* Checks if hostname labels match a suffix pattern
* @param hostnameLabels Labels of the hostname (split by `.`)
* @param suffixLabels Labels of the suffix pattern (split by `.`)
* @returns Whether the hostname matches the suffix
*/
function matchesSuffix(
hostnameLabels: string[],
suffixLabels: string[]
): boolean {
if (hostnameLabels.length < suffixLabels.length) {
return false;
}
const offset = hostnameLabels.length - suffixLabels.length;
for (let i = 0; i < suffixLabels.length; i++) {
const hostLabel = hostnameLabels[offset + i];
const suffixLabel = suffixLabels[i];
if (suffixLabel === "*") {
continue;
}
if (hostLabel !== suffixLabel) {
return false;
}
}
return true;
}
/**
* Gets parsed Public Suffix list from the API.
*
* Complies with the standard format.
* @see https://github.com/publicsuffix/list/wiki/Format#format
*
* @param {BareClient} client `BareClient` instance used for fetching
* @returns {Promise<string[]>} Parsed Public Suffix list
*
* @throws {Error} If an error occurs while fetching from the Public Suffix List
*/
export async function getPublicSuffixList(
client: BareClient
): Promise<string[]> {
const cached = await getCachedSuffixList();
if (cached && Date.now() < cached.expiry) {
return cached.data;
}
let publicSuffixesResponse: BareResponseFetch;
try {
publicSuffixesResponse = await client.fetch(
"https://publicsuffix.org/list/public_suffix_list.dat"
);
} catch (err) {
throw new Error(`Failed to fetch public suffix list: ${err}`);
}
const publicSuffixesRaw = await publicSuffixesResponse.text();
const publicSuffixes = publicSuffixesRaw
.split("\n")
.map((line) => {
const trimmed = line.trim();
const spaceIndex = trimmed.indexOf(" ");
return spaceIndex > -1 ? trimmed.substring(0, spaceIndex) : trimmed;
})
.filter((line) => line && !line.startsWith("//"));
await setCachedSuffixList(publicSuffixes);
return publicSuffixes;
}
|