mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2020, Sergey Bugaev <bugaevc@serenityos.org>
|
|
* Copyright (c) 2020, Linus Groh <linusg@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/URL.h>
|
|
#include <AK/Vector.h>
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <LibCore/EventLoop.h>
|
|
#include <LibDesktop/Launcher.h>
|
|
#include <LibFileSystem/FileSystem.h>
|
|
#include <LibMain/Main.h>
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
{
|
|
Core::EventLoop loop;
|
|
Vector<StringView> urls_or_paths;
|
|
Core::ArgsParser parser;
|
|
parser.set_general_help("Open a file or URL by executing the appropriate program.");
|
|
parser.add_positional_argument(urls_or_paths, "URL or file path to open", "url-or-path");
|
|
parser.parse(arguments);
|
|
|
|
bool all_ok = true;
|
|
|
|
for (auto& url_or_path : urls_or_paths) {
|
|
auto path = FileSystem::real_path(url_or_path);
|
|
auto url = URL::create_with_url_or_path(path.is_error() ? url_or_path : path.value());
|
|
|
|
if (!Desktop::Launcher::open(url)) {
|
|
warnln("Failed to open '{}'", url);
|
|
all_ok = false;
|
|
}
|
|
}
|
|
|
|
return all_ok ? 0 : 1;
|
|
}
|