1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
|
/************************************************************************
*
* Copyright (C) 2023-2025 IRCAD France
*
* This file is part of Sight.
*
* Sight is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Sight is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Sight. If not, see <https://www.gnu.org/licenses/>.
*
***********************************************************************/
// cspell:ignore NOLINT
#include "extract.hpp"
#include <core/com/signal.hxx>
#include <core/crypto/password_keeper.hpp>
#include <core/crypto/secure_string.hpp>
#include <core/jobs/aggregator.hpp>
#include <core/jobs/job.hpp>
#include <core/location/single_folder.hpp>
#include <core/tools/system.hpp>
#include <io/session/session_reader.hpp>
#include <io/zip/exception/read.hpp>
#include <ui/__/cursor.hpp>
#include <ui/__/dialog/input.hpp>
#include <ui/__/dialog/location.hpp>
#include <ui/__/dialog/message.hpp>
#include <fstream>
namespace sight::module::io::zip
{
using core::crypto::password_keeper;
using core::crypto::secure_string;
using sight::io::zip::archive;
/// Private implementation
class extract::extract_impl
{
public:
/// Delete default constructors and assignment operators
extract_impl(const extract_impl&) = delete;
extract_impl(extract_impl&&) = delete;
extract_impl& operator=(const extract_impl&) = delete;
extract_impl& operator=(extract_impl&&) = delete;
/// Constructor
explicit extract_impl(extract* const _reader) noexcept :
m_reader(_reader),
m_job_created_signal(_reader->new_signal<job_created_signal_t>("job_created"))
{
}
/// Default destructor
~extract_impl() noexcept = default;
/// Pointer to the public interface
extract* const m_reader;
/// Signal emitted when job created.
job_created_signal_t::sptr m_job_created_signal;
/// Used in case of bad password
int m_password_retry {0};
/// The path where to extract the files
std::filesystem::path m_output_path;
};
extract::extract() noexcept :
reader("Select the archive file"),
m_pimpl(std::make_unique<extract_impl>(this))
{
}
// Defining the destructor here, allows us to use PImpl with a unique_ptr
extract::~extract() noexcept = default;
//-----------------------------------------------------------------------------
void extract::starting()
{
}
//-----------------------------------------------------------------------------
void extract::stopping()
{
m_pimpl->m_password_retry = 0;
clear_locations();
}
//-----------------------------------------------------------------------------
void extract::configuring()
{
sight::io::service::reader::configuring();
}
//-----------------------------------------------------------------------------
void extract::updating()
{
// Set to failed until successful
m_read_failed = true;
// Show the save dialog if the path is empty
if(!has_location_defined())
{
open_location_dialog();
}
// If the user did not choose a file, we stop here
if(!has_location_defined())
{
return;
}
if(m_pimpl->m_output_path.empty())
{
static auto default_location = std::make_shared<core::location::single_folder>();
default_location->set_folder("/");
sight::ui::dialog::location location_dialog;
location_dialog.set_title("Enter the folder where the files must be extracted");
location_dialog.set_default_location(default_location);
location_dialog.set_option(ui::dialog::location::write);
location_dialog.set_type(ui::dialog::location::folder);
const auto result = std::dynamic_pointer_cast<core::location::single_folder>(location_dialog.show());
if(result)
{
if(!std::filesystem::is_empty(result->get_folder()))
{
sight::ui::dialog::message message("Output path not empty",
"The output path isn't empty. Continue anyway?",
sight::ui::dialog::message::warning);
message.add_button(sight::ui::dialog::message::yes);
message.add_button(sight::ui::dialog::message::cancel);
message.add_button(sight::ui::dialog::message::retry);
auto action = message.show();
switch(action)
{
case sight::ui::dialog::message::yes:
// Continue as normal
break;
case sight::ui::dialog::message::cancel:
// Totally abort the operation
clear_locations();
return;
case sight::ui::dialog::message::retry:
// Let the user choose another output path
updating();
return;
default:
SIGHT_ASSERT("Invalid button", false);
}
}
m_pimpl->m_output_path = result->get_folder();
default_location->set_folder(result->get_folder().parent_path());
location_dialog.save_default_location(default_location);
}
else
{
return;
}
}
const auto filepath = get_file();
SIGHT_THROW_IF("The file '" << filepath << "' is an existing folder.", std::filesystem::is_directory(filepath));
// Ask password if needed
const secure_string& password =
[&]
{
const secure_string& global_password = password_keeper::get_global_password();
if(m_pimpl->m_password_retry > 0)
{
const auto& [newPassword, ok] =
sight::ui::dialog::input::show_input_dialog(
"Enter Password",
"Password:",
global_password.c_str(), // NOLINT(readability-redundant-string-cstr)
sight::ui::dialog::input::echo_mode::password
);
return secure_string(newPassword);
}
return global_password;
}();
const auto read_job = std::make_shared<core::jobs::job>(
"Reading " + filepath.string() + " file",
[&](core::jobs::job& _running_job)
{
const sight::ui::busy_cursor busy_cursor;
_running_job.done_work(10);
try
{
auto archive_reader = sight::io::zip::archive_reader::get(
filepath,
archive::archive_format::DEFAULT
);
archive_reader->extract_all_to(m_pimpl->m_output_path, password);
}
catch(const sight::io::zip::exception::read&)
{
// Try with log extractor
std::ifstream input(filepath, std::ios::in | std::ios::binary);
auto output_filepath = m_pimpl->m_output_path / filepath.filename();
output_filepath.replace_extension("");
std::ofstream output(output_filepath, std::ios::out | std::ios::binary);
try
{
core::log::spy_logger::extract(input, output, password);
}
catch(const core::log::spy_logger::bad_password&)
{
throw;
}
catch(...)
{
throw core::log::spy_logger::bad_password();
}
}
_running_job.done();
},
this->worker()
);
core::jobs::aggregator::sptr jobs = std::make_shared<core::jobs::aggregator>(filepath.string() + " reader");
jobs->add(read_job);
jobs->set_cancelable(false);
m_pimpl->m_job_created_signal->emit(jobs);
const auto bad_password =
[&]
{
if(m_pimpl->m_password_retry == 0)
{
// First attempt to extract the archive: The user just discovers that it is encrypted
m_pimpl->m_password_retry++;
updating();
}
else
{
// Ask if the user want to retry.
sight::ui::dialog::message message_box;
message_box.set_title("Wrong password");
message_box.set_message(
"The file is password protected and the provided password is wrong.\n\nRetry with a different password ?"
);
message_box.set_icon(ui::dialog::message::question);
message_box.add_button(ui::dialog::message::retry);
message_box.add_button(ui::dialog::message::cancel);
if(message_box.show() == sight::ui::dialog::message::retry)
{
m_pimpl->m_password_retry++;
updating();
}
else
{
m_pimpl->m_password_retry = 0;
}
}
};
try
{
jobs->run().get();
m_pimpl->m_output_path.clear();
m_read_failed = false;
m_pimpl->m_password_retry = 0;
clear_locations();
sight::ui::dialog::message::show("Success", "The archive was successfully extracted.");
}
catch(sight::io::zip::exception::bad_password&)
{
bad_password();
}
catch(sight::core::log::spy_logger::bad_password&)
{
bad_password();
}
catch(const std::exception& e)
{
m_pimpl->m_output_path.clear();
clear_locations();
SIGHT_ERROR(e.what());
sight::ui::dialog::message::show(
"Session reader failed",
e.what(),
sight::ui::dialog::message::critical
);
}
catch(...)
{
m_pimpl->m_output_path.clear();
clear_locations();
sight::ui::dialog::message::show(
"Session reader aborted",
"Reading process aborted",
sight::ui::dialog::message::warning
);
}
}
//-----------------------------------------------------------------------------
void extract::open_location_dialog()
{
static auto default_location = std::make_shared<core::location::single_folder>();
default_location->set_folder("/");
sight::ui::dialog::location location_dialog;
location_dialog.set_title(*m_window_title);
location_dialog.set_default_location(default_location);
location_dialog.set_option(ui::dialog::location::read);
location_dialog.set_option(ui::dialog::location::file_must_exist);
location_dialog.set_type(ui::dialog::location::single_file);
const auto result = std::dynamic_pointer_cast<core::location::single_file>(location_dialog.show());
if(result)
{
const auto& filepath = result->get_file();
set_file(filepath);
// Save default location for later use
default_location->set_folder(filepath.parent_path());
location_dialog.save_default_location(default_location);
}
else
{
clear_locations();
}
}
//-----------------------------------------------------------------------------
} // namespace sight::module::io::zip
|