Merge branch 'master' of ssh://git.carlh.net/home/carl/git/dcpomatic
[dcpomatic.git] / src / lib / cinema_kdms.cc
1 /*
2     Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "exceptions.h"
21 #include "cinema_kdms.h"
22 #include "cinema.h"
23 #include "screen.h"
24 #include "config.h"
25 #include "util.h"
26 #include "emailer.h"
27 #include "compose.hpp"
28 #include "log.h"
29 #include <zip.h>
30 #include <boost/foreach.hpp>
31
32 #include "i18n.h"
33
34 using std::list;
35 using std::cout;
36 using std::string;
37 using std::runtime_error;
38 using boost::shared_ptr;
39
40 void
41 CinemaKDMs::make_zip_file (string film_name, boost::filesystem::path zip_file) const
42 {
43         int error;
44         struct zip* zip = zip_open (zip_file.string().c_str(), ZIP_CREATE | ZIP_EXCL, &error);
45         if (!zip) {
46                 if (error == ZIP_ER_EXISTS) {
47                         throw FileError ("ZIP file already exists", zip_file);
48                 }
49                 throw FileError ("could not create ZIP file", zip_file);
50         }
51
52         list<shared_ptr<string> > kdm_strings;
53
54         BOOST_FOREACH (ScreenKDM const & i, screen_kdms) {
55                 shared_ptr<string> kdm (new string (i.kdm.as_xml ()));
56                 kdm_strings.push_back (kdm);
57
58                 struct zip_source* source = zip_source_buffer (zip, kdm->c_str(), kdm->length(), 0);
59                 if (!source) {
60                         throw runtime_error ("could not create ZIP source");
61                 }
62
63                 if (zip_add (zip, i.filename(film_name).c_str(), source) == -1) {
64                         throw runtime_error ("failed to add KDM to ZIP archive");
65                 }
66         }
67
68         if (zip_close (zip) == -1) {
69                 throw runtime_error ("failed to close ZIP archive");
70         }
71 }
72
73 list<CinemaKDMs>
74 CinemaKDMs::collect (list<ScreenKDM> screen_kdms)
75 {
76         list<CinemaKDMs> cinema_kdms;
77
78         while (!screen_kdms.empty ()) {
79
80                 /* Get all the screens from a single cinema */
81
82                 CinemaKDMs ck;
83
84                 list<ScreenKDM>::iterator i = screen_kdms.begin ();
85                 ck.cinema = i->screen->cinema;
86                 ck.screen_kdms.push_back (*i);
87                 list<ScreenKDM>::iterator j = i;
88                 ++i;
89                 screen_kdms.remove (*j);
90
91                 while (i != screen_kdms.end ()) {
92                         if (i->screen->cinema == ck.cinema) {
93                                 ck.screen_kdms.push_back (*i);
94                                 list<ScreenKDM>::iterator j = i;
95                                 ++i;
96                                 screen_kdms.remove (*j);
97                         } else {
98                                 ++i;
99                         }
100                 }
101
102                 cinema_kdms.push_back (ck);
103         }
104
105         return cinema_kdms;
106 }
107
108 void
109 CinemaKDMs::write_zip_files (string film_name, list<CinemaKDMs> cinema_kdms, boost::filesystem::path directory)
110 {
111         BOOST_FOREACH (CinemaKDMs const & i, cinema_kdms) {
112                 boost::filesystem::path path = directory;
113                 path /= tidy_for_filename (i.cinema->name) + ".zip";
114                 i.make_zip_file (film_name, path);
115         }
116 }
117
118 /** @param log Log to write email session transcript to, or 0 */
119 /* XXX: should probably get from/to from the KDMs themselves */
120 void
121 CinemaKDMs::email (
122         string film_name, string cpl_name, list<CinemaKDMs> cinema_kdms, dcp::LocalTime from, dcp::LocalTime to, shared_ptr<Job> job, shared_ptr<Log> log
123         )
124 {
125         Config* config = Config::instance ();
126
127         BOOST_FOREACH (CinemaKDMs const & i, cinema_kdms) {
128
129                 boost::filesystem::path zip_file = boost::filesystem::temp_directory_path ();
130                 zip_file /= boost::filesystem::unique_path().string() + ".zip";
131                 i.make_zip_file (film_name, zip_file);
132
133                 string subject = config->kdm_subject();
134                 SafeStringStream start;
135                 start << from.date() << " " << from.time_of_day();
136                 SafeStringStream end;
137                 end << to.date() << " " << to.time_of_day();
138                 boost::algorithm::replace_all (subject, "$CPL_NAME", cpl_name);
139                 boost::algorithm::replace_all (subject, "$START_TIME", start.str ());
140                 boost::algorithm::replace_all (subject, "$END_TIME", end.str ());
141                 boost::algorithm::replace_all (subject, "$CINEMA_NAME", i.cinema->name);
142
143                 string body = config->kdm_email().c_str();
144                 boost::algorithm::replace_all (body, "$CPL_NAME", cpl_name);
145                 boost::algorithm::replace_all (body, "$START_TIME", start.str ());
146                 boost::algorithm::replace_all (body, "$END_TIME", end.str ());
147                 boost::algorithm::replace_all (body, "$CINEMA_NAME", i.cinema->name);
148
149                 SafeStringStream screens;
150                 BOOST_FOREACH (ScreenKDM const & j, i.screen_kdms) {
151                         screens << j.screen->name << ", ";
152                 }
153                 boost::algorithm::replace_all (body, "$SCREENS", screens.str().substr (0, screens.str().length() - 2));
154
155                 Emailer email (config->kdm_from(), i.cinema->email, subject, body);
156
157                 if (!config->kdm_cc().empty ()) {
158                         email.add_cc (config->kdm_cc ());
159                 }
160                 if (!config->kdm_bcc().empty ()) {
161                         email.add_bcc (config->kdm_bcc ());
162                 }
163
164                 string const name = tidy_for_filename(i.cinema->name) + "_" + tidy_for_filename(film_name) + ".zip";
165                 email.add_attachment (zip_file, name, "application/zip");
166                 email.send (job);
167
168                 if (log) {
169                         log->log (email.notes(), LogEntry::TYPE_DEBUG_EMAIL);
170                 }
171         }
172 }