summaryrefslogtreecommitdiff
path: root/src/lib/analytics.cc
blob: 638f59f71ae1fdc74a739cbe775b8461bdb7a9dc (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*
    Copyright (C) 2018-2021 Carl Hetherington <cth@carlh.net>

    This file is part of DCP-o-matic.

    DCP-o-matic is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    DCP-o-matic 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 DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.

*/


#include "analytics.h"
#include "compose.hpp"
#include "exceptions.h"
#include "variant.h"
#include <dcp/filesystem.h>
#include <dcp/raw_convert.h>
#include <dcp/warnings.h>
#include <libcxml/cxml.h>
LIBDCP_DISABLE_WARNINGS
#include <libxml++/libxml++.h>
LIBDCP_ENABLE_WARNINGS
#include <boost/algorithm/string.hpp>
#include <boost/filesystem.hpp>

#include "i18n.h"


using std::string;
using dcp::raw_convert;
using boost::algorithm::trim;


Analytics* Analytics::_instance;
int const Analytics::_current_version = 1;


Analytics::Analytics ()
{

}


void
Analytics::successful_dcp_encode ()
{
	++_successful_dcp_encodes;
	write ();

	if (_successful_dcp_encodes == 20) {
		emit (
			boost::bind(
				boost::ref(Message),
				_("Congratulations!"),
				String::compose(_(
					"<h2>You have made %1 DCPs with %2!</h2>"
					"<img width=\"20%%\" src=\"memory:me.jpg\" align=\"center\">"
                                        "<p>Hello. I'm Carl and I'm the "
					"developer of %3. I work on it in my spare time (with the help "
					"of a fine volunteer team of testers and translators) and I release it "
					"as free software."

					"<p>If you find %4 useful, please consider a donation to the "
					"project. Financial support will help me to spend more "
					"time developing %5 and making it better!"

					"<p><ul>"
					"<li><a href=\"https://dcpomatic.com/donate_amount?amount=40\">Go to Paypal to donate €40</a>"
					"<li><a href=\"https://dcpomatic.com/donate_amount?amount=20\">Go to Paypal to donate €20</a>"
					"<li><a href=\"https://dcpomatic.com/donate_amount?amount=10\">Go to Paypal to donate €10</a>"
					"</ul>"

					"<p>Thank you!"),
					_successful_dcp_encodes,
					variant::dcpomatic(),
					variant::dcpomatic(),
					variant::dcpomatic(),
					variant::dcpomatic()
					)
				)
			);
	}
}


void
Analytics::write () const
{
	xmlpp::Document doc;
	auto root = doc.create_root_node ("Analytics");

	cxml::add_text_child(root, "Version", raw_convert<string>(_current_version));
	cxml::add_text_child(root, "SuccessfulDCPEncodes", raw_convert<string>(_successful_dcp_encodes));

	try {
		doc.write_to_file_formatted(write_path("analytics.xml").string());
	} catch (xmlpp::exception& e) {
		string s = e.what ();
		trim (s);
		throw FileError (s, write_path("analytics.xml"));
	}
}


void
Analytics::read ()
try
{
	cxml::Document f ("Analytics");
	f.read_file(dcp::filesystem::fix_long_path(read_path("analytics.xml")));
	_successful_dcp_encodes = f.number_child<int>("SuccessfulDCPEncodes");
} catch (...) {
	/* Never mind */
}


Analytics*
Analytics::instance ()
{
	if (!_instance) {
		_instance = new Analytics();
		_instance->read();
	}

	return _instance;
}