aboutsummaryrefslogtreecommitdiffstats
path: root/src/init.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp72
1 files changed, 51 insertions, 21 deletions
diff --git a/src/init.cpp b/src/init.cpp
index da547674..ccfeca90 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -1,4 +1,6 @@
/**
+ * Copyright (C) 2021 Saturneric
+ *
* This file is part of GpgFrontend.
*
* GpgFrontend is free software: you can redistribute it and/or modify
@@ -6,29 +8,37 @@
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * Foobar is distributed in the hope that it will be useful,
+ * GpgFrontend 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with Foobar. If not, see <https://www.gnu.org/licenses/>.
+ * along with GpgFrontend. If not, see <https://www.gnu.org/licenses/>.
+ *
+ * The initial version of the source code is inherited from
+ * the gpg4usb project, which is under GPL-3.0-or-later.
*
- * The initial version of the source code is inherited from gpg4usb-team.
- * Their source code version also complies with GNU General Public License.
+ * All the source code of GpgFrontend was modified and released by
+ * Saturneric<[email protected]> starting on May 12, 2021.
*
- * The source code version of this software was modified and released
- * by Saturneric<[email protected]> starting on May 12, 2021.
+ * SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#include <boost/date_time.hpp>
-#include "ui/settings/GlobalSettingStation.h"
+#include "core/function/GlobalSettingStation.h"
-std::vector<boost::filesystem::path> get_files_of_directory(
- const boost::filesystem::path& _path) {
- namespace fs = boost::filesystem;
+/**
+ * @brief Get the files of a given directory
+ *
+ * @param _path target directory
+ * @return std::vector<std::filesystem::path>
+ */
+std::vector<std::filesystem::path> get_files_of_directory(
+ const std::filesystem::path& _path) {
+ namespace fs = std::filesystem;
std::vector<fs::path> path_list;
if (!_path.empty()) {
fs::recursive_directory_iterator end;
@@ -41,6 +51,10 @@ std::vector<boost::filesystem::path> get_files_of_directory(
return path_list;
}
+/**
+ * @brief setup logging system and do proper initialization
+ *
+ */
void init_logging() {
using namespace boost::posix_time;
using namespace boost::gregorian;
@@ -52,11 +66,13 @@ void init_logging() {
defaultConf.setToDefault();
el::Loggers::reconfigureLogger("default", defaultConf);
+ // apply settings
defaultConf.setGlobally(el::ConfigurationType::Format,
"%datetime %level %func %msg");
+ // get the log directory
auto logfile_path =
- (GpgFrontend::UI::GlobalSettingStation::GetInstance().GetLogDir() /
+ (GpgFrontend::GlobalSettingStation::GetInstance().GetLogDir() /
to_iso_string(now));
logfile_path.replace_extension(".log");
defaultConf.setGlobally(el::ConfigurationType::Filename,
@@ -64,26 +80,39 @@ void init_logging() {
el::Loggers::reconfigureLogger("default", defaultConf);
- LOG(INFO) << _("logfile Path") << logfile_path;
+ LOG(INFO) << _("log file path") << logfile_path;
}
+/**
+ * @brief load all certificates from the given path
+ * and add them to the given certificate store in GlobalSettingStation
+ */
void init_certs() {
- std::vector<vmime::shared_ptr<vmime::security::cert::X509Certificate>>
- root_certs;
+ // get the certificate directory
auto cert_file_paths = get_files_of_directory(
- GpgFrontend::UI::GlobalSettingStation::GetInstance().GetCertsDir());
+ GpgFrontend::GlobalSettingStation::GetInstance().GetCertsDir());
- auto& _instance = GpgFrontend::UI::GlobalSettingStation::GetInstance();
+ // get the instance of the GlobalSettingStation
+ auto& _instance = GpgFrontend::GlobalSettingStation::GetInstance();
for (const auto& cert_file_path : cert_file_paths) {
+ // add the certificate to the store
_instance.AddRootCert(cert_file_path);
}
+
+ // show the number of loaded certificates
LOG(INFO) << _("root certs loaded") << _instance.GetRootCerts().size();
}
+/**
+ * @brief setup the locale and load the translations
+ *
+ */
void init_locale() {
+ // get the instance of the GlobalSettingStation
auto& settings =
- GpgFrontend::UI::GlobalSettingStation::GetInstance().GetUISettings();
+ GpgFrontend::GlobalSettingStation::GetInstance().GetUISettings();
+ // create general settings if not exist
if (!settings.exists("general") ||
settings.lookup("general").getType() != libconfig::Setting::TypeGroup)
settings.add("general", libconfig::Setting::TypeGroup);
@@ -93,7 +122,8 @@ void init_locale() {
if (!general.exists("lang"))
general.add("lang", libconfig::Setting::TypeString) = "";
- GpgFrontend::UI::GlobalSettingStation::GetInstance().SyncSettings();
+ // sync the settings to the file
+ GpgFrontend::GlobalSettingStation::GetInstance().SyncSettings();
LOG(INFO) << "current system locale" << setlocale(LC_ALL, nullptr);
@@ -104,9 +134,9 @@ void init_locale() {
};
LOG(INFO) << "lang from settings" << lang;
- LOG(INFO) << "PROJECT_NAME" << PROJECT_NAME;
+ LOG(INFO) << "project name" << PROJECT_NAME;
LOG(INFO) << "locales path"
- << GpgFrontend::UI::GlobalSettingStation::GetInstance()
+ << GpgFrontend::GlobalSettingStation::GetInstance()
.GetLocaleDir()
.c_str();
@@ -147,7 +177,7 @@ void init_locale() {
#endif
bindtextdomain(PROJECT_NAME,
- GpgFrontend::UI::GlobalSettingStation::GetInstance()
+ GpgFrontend::GlobalSettingStation::GetInstance()
.GetLocaleDir()
.string()
.c_str());