summaryrefslogtreecommitdiff
path: root/src/file/mail.cpp
blob: 4da36c526d05ab134d6a39b0fb00402b9b1b44c0 (plain)
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
#include <fstream>

#include "mail.hpp"

namespace smtp::file
{
    Mail::Mail( std::string const& path_file )
        : mPathFile( path_file )
    {

    }

    manage::MailsSet Mail::Read() const
    {
        std::ifstream mail_file{ mPathFile };
        if ( !mail_file.is_open() )
        {
            //TODO new file
           // std::cerr << "Failed to open pcie_devices database \n";
        }
        std::string line{};
        manage::MailsSet result;

        while ( std::getline( mail_file, line ) )
        {
            auto parsed_data = GetMailFromLine( line );
            if( parsed_data )
            {
                result.push_back( *parsed_data );
            }
        }
        return result;
    }

    bool Mail::Write( manage::MailsSet const& data ) const
    {
        std::ofstream settings_file{ mPathFile };
        if ( !settings_file.is_open() )
        {
            //TODO new file
           // std::cerr << "Failed to open pcie_devices database \n";
            return false;
        }
        for( const auto& pair : data )
        {
            settings_file << pair << "\n";
        }
        return true;
    }

    std::optional<std::string> Mail::GetMailFromLine( std::string const& line ) const
    {
        //TODO parsing
        return line;
    }

}