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
|
/************************************************************************
*
* Copyright (C) 2009-2023 IRCAD France
* Copyright (C) 2012-2021 IHU Strasbourg
*
* 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 NOLINTNEXTLINE
#include "module/ui/__/plugin.hpp"
#include <core/crypto/password_keeper.hpp>
#include <core/runtime/path.hpp>
#include <core/tools/os.hpp>
#include <service/op.hpp>
#include <ui/__/preferences.hpp>
namespace sight::module::ui
{
using sight::core::crypto::secure_string;
using sight::core::crypto::password_keeper;
using sight::ui::preferences;
constexpr static auto PREFERENCES_ENABLED = "preferences_enabled";
constexpr static auto PREFERENCES_PASSWORD_POLICY = "preferences_password_policy";
constexpr static auto PREFERENCES_ENCRYPTION_POLICY = "preferences_encryption_policy";
constexpr static auto PREFERENCES_PASSWORD = "preferences_password";
constexpr static auto PREFERENCES_EXIT_ON_PASSWORD_ERROR = "preferences_exit_on_password_error";
constexpr static auto PREFERENCES_PASSWORD_DIALOG_TITLE = "preferences_password_dialog_title";
constexpr static auto PREFERENCES_PASSWORD_DIALOG_MESSAGE = "preferences_password_dialog_message";
constexpr static auto PREFERENCES_PASSWORD_DIALOG_ICON = "preferences_password_dialog_icon";
constexpr static auto PREFERENCES_NEW_PASSWORD_DIALOG_TITLE = "preferences_new_password_dialog_title";
constexpr static auto PREFERENCES_NEW_PASSWORD_DIALOG_MESSAGE = "preferences_new_password_dialog_message";
constexpr static auto PREFERENCES_NEW_PASSWORD_DIALOG_ICON = "preferences_new_password_dialog_icon";
SIGHT_REGISTER_PLUGIN("sight::module::ui::plugin");
//-----------------------------------------------------------------------------
void plugin::start()
{
const auto module = get_module();
// By default enable preferences
const bool enabled = !module->has_parameter(PREFERENCES_ENABLED)
|| module->get_parameter_value(PREFERENCES_ENABLED) != "false";
preferences::set_enabled(enabled);
// Set the password policy
const password_keeper::password_policy password_policy =
!module->has_parameter(PREFERENCES_PASSWORD_POLICY)
? password_keeper::password_policy::never
: password_keeper::string_to_password_policy(module->get_parameter_value(PREFERENCES_PASSWORD_POLICY));
SIGHT_THROW_IF("Invalid password policy.", password_policy == password_keeper::password_policy::invalid);
preferences::set_password_policy(password_policy);
// Set the encryption policy
const password_keeper::encryption_policy encryption_policy =
!module->has_parameter(PREFERENCES_ENCRYPTION_POLICY)
? password_keeper::encryption_policy::password
: password_keeper::string_to_encryption_policy(module->get_parameter_value(PREFERENCES_ENCRYPTION_POLICY));
SIGHT_THROW_IF("Invalid encryption policy.", encryption_policy == password_keeper::encryption_policy::invalid);
preferences::set_encryption_policy(encryption_policy);
// Set an hardcoded password
if(module->has_parameter(PREFERENCES_PASSWORD))
{
// NOLINTNEXTLINE(readability-redundant-string-cstr)
preferences::set_password(module->get_parameter_value(PREFERENCES_PASSWORD).c_str());
}
if(module->has_parameter(PREFERENCES_EXIT_ON_PASSWORD_ERROR))
{
preferences::exit_on_password_error(
module->get_parameter_value(PREFERENCES_EXIT_ON_PASSWORD_ERROR)
!= "false"
);
}
if(module->has_parameter(PREFERENCES_PASSWORD_DIALOG_TITLE))
{
preferences::set_password_dialog_strings(
{.title = module->get_parameter_value(PREFERENCES_PASSWORD_DIALOG_TITLE)
});
}
if(module->has_parameter(PREFERENCES_NEW_PASSWORD_DIALOG_TITLE))
{
preferences::set_password_dialog_strings(
{.new_title = module->get_parameter_value(PREFERENCES_NEW_PASSWORD_DIALOG_TITLE)
});
}
if(module->has_parameter(PREFERENCES_PASSWORD_DIALOG_ICON))
{
const auto& icon_path = core::runtime::get_module_resource_file_path(
module->get_parameter_value(PREFERENCES_PASSWORD_DIALOG_ICON)
);
std::string message = "<img src='" + icon_path.string() + "' />";
if(module->has_parameter(PREFERENCES_PASSWORD_DIALOG_MESSAGE))
{
message += "<br><strong>" + module->get_parameter_value(PREFERENCES_PASSWORD_DIALOG_MESSAGE)
+ "</strong>";
}
preferences::set_password_dialog_strings({.message = message});
}
else if(module->has_parameter(PREFERENCES_PASSWORD_DIALOG_MESSAGE))
{
preferences::set_password_dialog_strings(
{.message = module->get_parameter_value(PREFERENCES_PASSWORD_DIALOG_MESSAGE)
});
}
if(module->has_parameter(PREFERENCES_NEW_PASSWORD_DIALOG_ICON))
{
const auto& icon_path = core::runtime::get_module_resource_file_path(
module->get_parameter_value(PREFERENCES_NEW_PASSWORD_DIALOG_ICON)
);
std::string message = "<img src='" + icon_path.string() + "' />";
if(module->has_parameter(PREFERENCES_NEW_PASSWORD_DIALOG_MESSAGE))
{
message += "<br><strong>"
+ module->get_parameter_value(PREFERENCES_NEW_PASSWORD_DIALOG_MESSAGE)
+ "</strong>";
}
preferences::set_password_dialog_strings({.new_message = message});
}
else if(module->has_parameter(PREFERENCES_NEW_PASSWORD_DIALOG_MESSAGE))
{
preferences::set_password_dialog_strings(
{.new_message = module->get_parameter_value(PREFERENCES_NEW_PASSWORD_DIALOG_MESSAGE)
});
}
}
//-----------------------------------------------------------------------------
void plugin::stop() noexcept
{
preferences::set_enabled(false);
}
} // namespace sight::module::ui
|