summaryrefslogtreecommitdiffstats
path: root/libraries/ganalytics/src/ganalytics.cpp
blob: 5f2d14844cc1b117221b90645462e2ca0facf371 (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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
#include "ganalytics.h"
#include "ganalytics_worker.h"
#include "sys.h"

#include <QDataStream>
#include <QDebug>
#include <QLocale>
#include <QNetworkAccessManager>
#include <QNetworkReply>
#include <QNetworkRequest>
#include <QQueue>
#include <QSettings>
#include <QTimer>
#include <QUrlQuery>
#include <QUuid>

GAnalytics::GAnalytics(const QString &trackingID, const QString &clientID, const int version, QObject *parent) : QObject(parent)
{
	d = new GAnalyticsWorker(this);
	d->m_trackingID = trackingID;
	d->m_clientID = clientID;
	d->m_version = version;
}

/**
 * Destructor of class GAnalytics.
 */
GAnalytics::~GAnalytics()
{
	delete d;
}

void GAnalytics::setLogLevel(GAnalytics::LogLevel logLevel)
{
	d->m_logLevel = logLevel;
}

GAnalytics::LogLevel GAnalytics::logLevel() const
{
	return d->m_logLevel;
}

// SETTER and GETTER
void GAnalytics::setViewportSize(const QString &viewportSize)
{
	d->m_viewportSize = viewportSize;
}

QString GAnalytics::viewportSize() const
{
	return d->m_viewportSize;
}

void GAnalytics::setLanguage(const QString &language)
{
	d->m_language = language;
}

QString GAnalytics::language() const
{
	return d->m_language;
}

void GAnalytics::setAnonymizeIPs(bool anonymize)
{
	d->m_anonymizeIPs = anonymize;
}

bool GAnalytics::anonymizeIPs()
{
	return d->m_anonymizeIPs;
}

void GAnalytics::setSendInterval(int milliseconds)
{
	d->m_timer.setInterval(milliseconds);
}

int GAnalytics::sendInterval() const
{
	return (d->m_timer.interval());
}

bool GAnalytics::isEnabled()
{
	return d->m_isEnabled;
}

void GAnalytics::enable(bool state)
{
	d->enable(state);
}

int GAnalytics::version()
{
	return d->m_version;
}

void GAnalytics::setNetworkAccessManager(QNetworkAccessManager *networkAccessManager)
{
	if (d->networkManager != networkAccessManager)
	{
		// Delete the old network manager if it was our child
		if (d->networkManager && d->networkManager->parent() == this)
		{
			d->networkManager->deleteLater();
		}

		d->networkManager = networkAccessManager;
	}
}

QNetworkAccessManager *GAnalytics::networkAccessManager() const
{
	return d->networkManager;
}

static void appendCustomValues(QUrlQuery &query, const QVariantMap &customValues)
{
	for (QVariantMap::const_iterator iter = customValues.begin(); iter != customValues.end(); ++iter)
	{
		query.addQueryItem(iter.key(), iter.value().toString());
	}
}

/**
 * Sent screen view is called when the user changed the applications view.
 * These action of the user should be noticed and reported. Therefore
 * a QUrlQuery is build in this method. It holts all the parameter for
 * a http POST. The UrlQuery will be stored in a message Queue.
 */
void GAnalytics::sendScreenView(const QString &screenName, const QVariantMap &customValues)
{
	d->logMessage(Info, QString("ScreenView: %1").arg(screenName));

	QUrlQuery query = d->buildStandardPostQuery("screenview");
	query.addQueryItem("cd", screenName);
	query.addQueryItem("an", d->m_appName);
	query.addQueryItem("av", d->m_appVersion);
	appendCustomValues(query, customValues);

	d->enqueQueryWithCurrentTime(query);
}

/**
 * This method is called whenever a button was pressed in the application.
 * A query for a POST message will be created to report this event. The
 * created query will be stored in a message queue.
 */
void GAnalytics::sendEvent(const QString &category, const QString &action, const QString &label, const QVariant &value, const QVariantMap &customValues)
{
	QUrlQuery query = d->buildStandardPostQuery("event");
	query.addQueryItem("an", d->m_appName);
	query.addQueryItem("av", d->m_appVersion);
	query.addQueryItem("ec", category);
	query.addQueryItem("ea", action);
	if (!label.isEmpty())
		query.addQueryItem("el", label);
	if (value.isValid())
		query.addQueryItem("ev", value.toString());

	appendCustomValues(query, customValues);

	d->enqueQueryWithCurrentTime(query);
}

/**
 * Method is called after an exception was raised. It builds a
 * query for a POST message. These query will be stored in a
 * message queue.
 */
void GAnalytics::sendException(const QString &exceptionDescription, bool exceptionFatal, const QVariantMap &customValues)
{
	QUrlQuery query = d->buildStandardPostQuery("exception");
	query.addQueryItem("an", d->m_appName);
	query.addQueryItem("av", d->m_appVersion);

	query.addQueryItem("exd", exceptionDescription);

	if (exceptionFatal)
	{
		query.addQueryItem("exf", "1");
	}
	else
	{
		query.addQueryItem("exf", "0");
	}
	appendCustomValues(query, customValues);

	d->enqueQueryWithCurrentTime(query);
}

/**
 * Session starts. This event will be sent by a POST message.
 * Query is setup in this method and stored in the message
 * queue.
 */
void GAnalytics::startSession()
{
	QVariantMap customValues;
	customValues.insert("sc", "start");
	sendEvent("Session", "Start", QString(), QVariant(), customValues);
}

/**
 * Session ends. This event will be sent by a POST message.
 * Query is setup in this method and stored in the message
 * queue.
 */
void GAnalytics::endSession()
{
	QVariantMap customValues;
	customValues.insert("sc", "end");
	sendEvent("Session", "End", QString(), QVariant(), customValues);
}

/**
 * Qut stream to persist class GAnalytics.
 */
QDataStream &operator<<(QDataStream &outStream, const GAnalytics &analytics)
{
	outStream << analytics.d->persistMessageQueue();

	return outStream;
}

/**
 * In stream to read GAnalytics from file.
 */
QDataStream &operator>>(QDataStream &inStream, GAnalytics &analytics)
{
	QList<QString> dataList;
	inStream >> dataList;
	analytics.d->readMessagesFromFile(dataList);

	return inStream;
}