mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-04-30 08:12:26 +00:00
49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
import axios from 'axios';
|
|
import { getSearxngApiEndpoint } from '../config';
|
|
|
|
interface SearxngSearchOptions {
|
|
categories?: string[];
|
|
engines?: string[];
|
|
language?: string;
|
|
pageno?: number;
|
|
}
|
|
|
|
interface SearxngSearchResult {
|
|
title: string;
|
|
url: string;
|
|
img_src?: string;
|
|
thumbnail_src?: string;
|
|
thumbnail?: string;
|
|
content?: string;
|
|
author?: string;
|
|
iframe_src?: string;
|
|
}
|
|
|
|
export const searchSearxng = async (
|
|
query: string,
|
|
opts?: SearxngSearchOptions,
|
|
) => {
|
|
const searxngURL = getSearxngApiEndpoint();
|
|
|
|
const url = new URL(`${searxngURL}/search?format=json`);
|
|
url.searchParams.append('q', query);
|
|
|
|
if (opts) {
|
|
Object.keys(opts).forEach((key) => {
|
|
const value = opts[key as keyof SearxngSearchOptions];
|
|
if (Array.isArray(value)) {
|
|
url.searchParams.append(key, value.join(','));
|
|
return;
|
|
}
|
|
url.searchParams.append(key, value as string);
|
|
});
|
|
}
|
|
|
|
const res = await axios.get(url.toString());
|
|
|
|
const results: SearxngSearchResult[] = res.data.results;
|
|
const suggestions: string[] = res.data.suggestions;
|
|
|
|
return { results, suggestions };
|
|
};
|