unduck-plus/src/main.ts
Theo Browne b33d286134
Done
2025-02-14 22:03:20 -08:00

32 lines
885 B
TypeScript

import { bangs } from "./bang";
const defaultBang = bangs.find((b) => b.t === "g");
function getBangredirectUrl() {
const url = new URL(window.location.href);
const query = url.searchParams.get("q")?.trim() ?? "";
if (!query) return null;
const match = query.match(/!([a-z]+)/i);
if (!match) return null;
const bangCandidate = match[1].toLowerCase();
const selectedBang = bangs.find((b) => b.t === bangCandidate) ?? defaultBang;
// Remove the first bang from the query
const cleanQuery = query.replace(/![a-z]+\s*/i, "").trim();
// Format of the url is:
// https://www.google.com/search?q={{{s}}}
const searchUrl = selectedBang?.u.replace(
"{{{s}}}",
encodeURIComponent(cleanQuery)
);
if (!searchUrl) return null;
return searchUrl;
}
const searchUrl = getBangredirectUrl() ?? "https://www.google.com";
window.location.replace(searchUrl);