2023-10-19 15:50:39 -04:00
|
|
|
/*
|
2025-04-04 09:57:48 -04:00
|
|
|
* Copyright (c) 2023-2025, Tim Flynn <trflynn89@ladybird.org>
|
2023-10-19 15:50:39 -04:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
2025-04-04 17:32:04 -04:00
|
|
|
#include <LibURL/URL.h>
|
2023-10-19 15:50:39 -04:00
|
|
|
#include <LibWebView/SearchEngine.h>
|
|
|
|
|
|
|
|
namespace WebView {
|
|
|
|
|
2025-04-04 18:12:32 -04:00
|
|
|
static auto s_builtin_search_engines = to_array<SearchEngine>({
|
2025-04-04 17:32:04 -04:00
|
|
|
{ "Bing"_string, "https://www.bing.com/search?q=%s"_string },
|
|
|
|
{ "Brave"_string, "https://search.brave.com/search?q=%s"_string },
|
|
|
|
{ "DuckDuckGo"_string, "https://duckduckgo.com/?q=%s"_string },
|
|
|
|
{ "Ecosia"_string, "https://ecosia.org/search?q=%s"_string },
|
|
|
|
{ "Google"_string, "https://www.google.com/search?q=%s"_string },
|
|
|
|
{ "Kagi"_string, "https://kagi.com/search?q=%s"_string },
|
|
|
|
{ "Mojeek"_string, "https://www.mojeek.com/search?q=%s"_string },
|
|
|
|
{ "Startpage"_string, "https://startpage.com/search?q=%s"_string },
|
|
|
|
{ "Yahoo"_string, "https://search.yahoo.com/search?p=%s"_string },
|
|
|
|
{ "Yandex"_string, "https://yandex.com/search/?text=%s"_string },
|
2025-04-04 09:57:48 -04:00
|
|
|
});
|
2023-10-19 15:50:39 -04:00
|
|
|
|
2025-04-04 18:12:32 -04:00
|
|
|
ReadonlySpan<SearchEngine> builtin_search_engines()
|
2023-10-19 15:50:39 -04:00
|
|
|
{
|
2025-04-04 18:12:32 -04:00
|
|
|
return s_builtin_search_engines;
|
2023-10-19 15:50:39 -04:00
|
|
|
}
|
|
|
|
|
2025-04-04 17:32:04 -04:00
|
|
|
String SearchEngine::format_search_query_for_display(StringView query) const
|
2023-10-23 16:41:36 -04:00
|
|
|
{
|
|
|
|
static constexpr auto MAX_SEARCH_STRING_LENGTH = 32;
|
|
|
|
|
2025-04-04 17:32:04 -04:00
|
|
|
return MUST(String::formatted("Search {} for \"{:.{}}{}\"",
|
|
|
|
name,
|
2023-10-23 16:41:36 -04:00
|
|
|
query,
|
|
|
|
MAX_SEARCH_STRING_LENGTH,
|
|
|
|
query.length() > MAX_SEARCH_STRING_LENGTH ? "..."sv : ""sv));
|
|
|
|
}
|
|
|
|
|
2025-04-04 17:32:04 -04:00
|
|
|
String SearchEngine::format_search_query_for_navigation(StringView query) const
|
|
|
|
{
|
|
|
|
return MUST(query_url.replace("%s"sv, URL::percent_encode(query), ReplaceMode::All));
|
|
|
|
}
|
|
|
|
|
2023-10-19 15:50:39 -04:00
|
|
|
}
|