Barely-functioning GL playback with new arrangement.
[dcpomatic.git] / src / lib / emailer.h
1 /*
2     Copyright (C) 2015-2019 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include <curl/curl.h>
22 #include <boost/scoped_array.hpp>
23
24 class Emailer
25 {
26 public:
27         Emailer (std::string from, std::list<std::string> to, std::string subject, std::string body);
28
29         void add_cc (std::string cc);
30         void add_bcc (std::string bcc);
31         void add_attachment (boost::filesystem::path file, std::string name, std::string mime_type);
32
33         void send (std::string server, int port, EmailProtocol protocol, std::string user = "", std::string password = "");
34
35         std::string notes () const {
36                 return _notes;
37         }
38
39         size_t get_data (void* ptr, size_t size, size_t nmemb);
40         int debug (CURL* curl, curl_infotype type, char* data, size_t size);
41
42         /** @return full email, after send() has been called */
43         std::string email () const {
44                 return _email;
45         }
46
47         static std::string address_list (std::list<std::string> addresses);
48
49 private:
50
51         std::string fix (std::string s) const;
52
53         std::string _from;
54         std::list<std::string> _to;
55         std::string _subject;
56         std::string _body;
57         std::list<std::string> _cc;
58         std::list<std::string> _bcc;
59
60         struct Attachment {
61                 boost::filesystem::path file;
62                 std::string name;
63                 std::string mime_type;
64         };
65
66         std::list<Attachment> _attachments;
67         std::string _email;
68         size_t _offset;
69         std::string _notes;
70 };