summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2022-08-13 14:48:31 +0100
committerAndreas Kling <kling@serenityos.org>2022-08-13 23:32:52 +0200
commit913412e0c540a0d9f119e5575613162f2095d00c (patch)
tree95f0eaf773a362b9cb3f1b9950dc1f67c7da0e7d /Userland/Applications/Browser
parent9df81e20d77bf98267302cfde50dd92f079f6a0d (diff)
downloadserenity-913412e0c540a0d9f119e5575613162f2095d00c.zip
Browser+Base: Allow opening multiple URLs at once from command line
This lets you run `br example.com wikipedia.org some/local/file.html` in one go and have them all opened as tabs.
Diffstat (limited to 'Userland/Applications/Browser')
-rw-r--r--Userland/Applications/Browser/main.cpp29
1 files changed, 17 insertions, 12 deletions
diff --git a/Userland/Applications/Browser/main.cpp b/Userland/Applications/Browser/main.cpp
index 04a7ea4613..10990f6c4e 100644
--- a/Userland/Applications/Browser/main.cpp
+++ b/Userland/Applications/Browser/main.cpp
@@ -1,12 +1,11 @@
/*
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
+ * Copyright (c) 2022, Sam Atkins <atkinssj@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
-#include "AK/IterationDecision.h"
-#include "LibCore/FileWatcher.h"
-#include <AK/StringBuilder.h>
+#include <AK/IterationDecision.h>
#include <Applications/Browser/Browser.h>
#include <Applications/Browser/BrowserWindow.h>
#include <Applications/Browser/CookieJar.h>
@@ -15,6 +14,7 @@
#include <LibConfig/Client.h>
#include <LibCore/ArgsParser.h>
#include <LibCore/File.h>
+#include <LibCore/FileWatcher.h>
#include <LibCore/StandardPaths.h>
#include <LibCore/System.h>
#include <LibDesktop/Launcher.h>
@@ -63,10 +63,10 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
TRY(Core::System::pledge("stdio recvfd sendfd unix cpath rpath wpath proc exec"));
- char const* specified_url = nullptr;
+ Vector<String> specified_urls;
Core::ArgsParser args_parser;
- args_parser.add_positional_argument(specified_url, "URL to open", "url", Core::ArgsParser::Required::No);
+ args_parser.add_positional_argument(specified_urls, "URLs to open", "url", Core::ArgsParser::Required::No);
args_parser.parse(arguments);
auto app = TRY(GUI::Application::try_create(arguments));
@@ -118,14 +118,16 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
}
}
- URL first_url = Browser::url_from_user_input(Browser::g_home_url);
- if (specified_url) {
- if (Core::File::exists(specified_url)) {
- first_url = URL::create_with_file_protocol(Core::File::real_path_for(specified_url));
- } else {
- first_url = Browser::url_from_user_input(specified_url);
+ auto url_from_argument_string = [](String const& string) -> URL {
+ if (Core::File::exists(string)) {
+ return URL::create_with_file_protocol(Core::File::real_path_for(string));
}
- }
+ return Browser::url_from_user_input(string);
+ };
+
+ URL first_url = Browser::url_from_user_input(Browser::g_home_url);
+ if (!specified_urls.is_empty())
+ first_url = url_from_argument_string(specified_urls.first());
Browser::CookieJar cookie_jar;
auto window = Browser::BrowserWindow::construct(cookie_jar, first_url);
@@ -160,6 +162,9 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
}
};
+ for (size_t i = 1; i < specified_urls.size(); ++i)
+ window->create_new_tab(url_from_argument_string(specified_urls[i]), false);
+
window->show();
return app->exec();