diff options
Diffstat (limited to 'src/file/converter/file.hpp')
-rw-r--r-- | src/file/converter/file.hpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/file/converter/file.hpp b/src/file/converter/file.hpp new file mode 100644 index 0000000..63ff6dd --- /dev/null +++ b/src/file/converter/file.hpp @@ -0,0 +1,30 @@ +#pragma once + +#include <unordered_map> +#include <string> + +#include "managment/general.hpp" + +namespace smtp::file::converter +{ + class File + { + public: + File() = default; + ~File() = default; + + manage::SettingsFields Convert( manage::SettingsFileDataType const& from ) const; + private: + void ApplyAuth( manage::SettingsFields& result, manage::SettingsFileDataType const& from ) const; + void ApplySsl( manage::SettingsFields& result, manage::SettingsFileDataType const& from ) const; + void ApplyBool( manage::SettingsFileDataType const& from, std::string const& search_field, bool& field ) const; + + void ApplyUsername( manage::SettingsFields& result, manage::SettingsFileDataType const& from ) const; + void ApplyPassword( manage::SettingsFields& result, manage::SettingsFileDataType const& from ) const; + void ApplyHost( manage::SettingsFields& result, manage::SettingsFileDataType const& from ) const; + void ApplyPort( manage::SettingsFields& result, manage::SettingsFileDataType const& from ) const; + void ApplyString( manage::SettingsFileDataType const& from, std::string const& search_field, std::string& field ) const; + }; +} + + |