summaryrefslogtreecommitdiffstats
blob: 0a14b996a8b349ede64e79931b35043fbcfd518f (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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
/*
 * Copyright (c) 2010 Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#include <iostream>
#include <boost/lexical_cast.hpp>

#include <sqlite3.h>
#include <Swiften/History/SQLiteHistoryManager.h>

inline std::string getEscapedString(const std::string& s) {
	std::string result(s);

	size_t pos = result.find('\'');
	while (pos != std::string::npos) {
		result.insert(pos, "'");
		pos = result.find('\'', pos + 2);
	}
	return result;
}

namespace Swift {

SQLiteHistoryManager::SQLiteHistoryManager(const std::string& file) : db_(0) {
	sqlite3_open(file.c_str(), &db_);
	if (!db_) {
		std::cerr << "Error opening database " << file << std::endl; // FIXME
	}

	char* errorMessage;
	int result = sqlite3_exec(db_, "CREATE TABLE IF NOT EXISTS messages('message' STRING, 'fromBare' INTEGER, 'fromResource' STRING, 'toBare' INTEGER, 'toResource' STRING, 'type' INTEGER, 'time' INTEGER)", 0, 0, &errorMessage);
	if (result != SQLITE_OK) {
		std::cerr << "SQL Error: " << errorMessage << std::endl;
		sqlite3_free(errorMessage);
	}

	result = sqlite3_exec(db_, "CREATE TABLE IF NOT EXISTS jids('id' INTEGER PRIMARY KEY ASC AUTOINCREMENT, 'jid' STRING UNIQUE NOT NULL)", 0, 0, &errorMessage);
	if (result != SQLITE_OK) {
		std::cerr << "SQL Error: " << errorMessage << std::endl;
		sqlite3_free(errorMessage);
	}
}

SQLiteHistoryManager::~SQLiteHistoryManager() {
	sqlite3_close(db_);
}

void SQLiteHistoryManager::addMessage(const HistoryMessage& message) {
	int secondsSinceEpoch = (message.getTime() - boost::posix_time::ptime(boost::gregorian::date(1970, 1, 1))).total_seconds();

	std::string statement = std::string("INSERT INTO messages('message', 'fromBare', 'fromResource', 'toBare', 'toResource', 'type', 'time') VALUES(") +
					"'" + getEscapedString(message.getMessage()) + "', " +
					boost::lexical_cast<std::string>(getIDForJID(message.getFromJID().toBare())) + ", '" +
					getEscapedString(message.getFromJID().getResource()) + "', " +
					boost::lexical_cast<std::string>(getIDForJID(message.getToJID().toBare())) + ", '" +
					getEscapedString(message.getToJID().getResource()) + "', " +
					boost::lexical_cast<std::string>(message.getType()) + ", " +
					boost::lexical_cast<std::string>(secondsSinceEpoch) + ")";
	char* errorMessage;
	int result = sqlite3_exec(db_, statement.c_str(), 0, 0, &errorMessage);
	if (result != SQLITE_OK) {
		std::cerr << "SQL Error: " << errorMessage << std::endl;
		sqlite3_free(errorMessage);
	}
}

std::vector<HistoryMessage> SQLiteHistoryManager::getMessages(const JID& selfJID, const JID& contactJID, HistoryMessage::Type type) const {
	sqlite3_stmt* selectStatement;

	boost::optional<int> selfID = getIDFromJID(selfJID.toBare());
	boost::optional<int> contactID = getIDFromJID(contactJID.toBare());

	if (!selfID || !contactID) {
		// JIDs missing from the database
		return std::vector<HistoryMessage>();
	}

	std::string selectQuery = "SELECT * FROM messages WHERE type=" + boost::lexical_cast<std::string>(type);
	if (contactJID.isBare()) {
		// match only bare jid
		selectQuery += " AND ((fromBare=" + boost::lexical_cast<std::string>(*selfID) + " AND toBare=" +
				boost::lexical_cast<std::string>(*contactID) + ") OR (fromBare=" +
				boost::lexical_cast<std::string>(*contactID) + " AND toBare=" + boost::lexical_cast<std::string>(*selfID) + "))";
	}
	else {
		// match resource too
		selectQuery += " AND ((fromBare=" + boost::lexical_cast<std::string>(*selfID) + " AND (toBare=" +
				boost::lexical_cast<std::string>(*contactID) +" AND toResource='" +
				getEscapedString(contactJID.getResource()) + "')) OR ((fromBare=" +
				boost::lexical_cast<std::string>(*contactID) + " AND fromResource='" +
				getEscapedString(contactJID.getResource()) + "') AND toBare=" +
				boost::lexical_cast<std::string>(*selfID) + "))";
	}

	int r = sqlite3_prepare(db_, selectQuery.c_str(), selectQuery.size(), &selectStatement, NULL);
	if (r != SQLITE_OK) {
		std::cout << "Error: " << sqlite3_errmsg(db_) << std::endl;
	}
	r = sqlite3_step(selectStatement);

	// Retrieve result
	std::vector<HistoryMessage> result;
	while (r == SQLITE_ROW) {
		std::string message(reinterpret_cast<const char*>(sqlite3_column_text(selectStatement, 0)));

		// fromJID
		boost::optional<JID> fromJID(getJIDFromID(sqlite3_column_int(selectStatement, 1)));
		std::string fromResource(reinterpret_cast<const char*>(sqlite3_column_text(selectStatement, 2)));
		if (fromJID) {
			fromJID = boost::optional<JID>(JID(fromJID->getNode(), fromJID->getDomain(), fromResource));
		}

		// toJID
		boost::optional<JID> toJID(getJIDFromID(sqlite3_column_int(selectStatement, 3)));
		std::string toResource(reinterpret_cast<const char*>(sqlite3_column_text(selectStatement, 4)));
		if (toJID) {
			toJID = boost::optional<JID>(JID(toJID->getNode(), toJID->getDomain(), toResource));
		}

		// message type
		HistoryMessage::Type type = static_cast<HistoryMessage::Type>(sqlite3_column_int(selectStatement, 5));

		// timestamp
		int secondsSinceEpoch(sqlite3_column_int(selectStatement, 6));
		boost::posix_time::ptime time(boost::gregorian::date(1970, 1, 1), boost::posix_time::seconds(secondsSinceEpoch));

		result.push_back(HistoryMessage(message, (fromJID ? *fromJID : JID()), (toJID ? *toJID : JID()), type, time));
		r = sqlite3_step(selectStatement);
	}
	if (r != SQLITE_DONE) {
		std::cout << "Error: " << sqlite3_errmsg(db_) << std::endl;
	}
	sqlite3_finalize(selectStatement);

	return result;
}

int SQLiteHistoryManager::getIDForJID(const JID& jid) {
	boost::optional<int> id = getIDFromJID(jid);
	if (id) {
		return *id;
	}
	else {
		return addJID(jid);
	}
}

int SQLiteHistoryManager::addJID(const JID& jid) {
	std::string statement = std::string("INSERT INTO jids('jid') VALUES('") + getEscapedString(jid.toString()) + "')";
	char* errorMessage;
	int result = sqlite3_exec(db_, statement.c_str(), 0, 0, &errorMessage);
	if (result != SQLITE_OK) {
		std::cerr << "SQL Error: " << errorMessage << std::endl;
		sqlite3_free(errorMessage);
	}
	return sqlite3_last_insert_rowid(db_);
}

boost::optional<JID> SQLiteHistoryManager::getJIDFromID(int id) const {
	boost::optional<JID> result;
	sqlite3_stmt* selectStatement;
	std::string selectQuery("SELECT jid FROM jids WHERE id=" + boost::lexical_cast<std::string>(id));
	int r = sqlite3_prepare(db_, selectQuery.c_str(), selectQuery.size(), &selectStatement, NULL);
	if (r != SQLITE_OK) {
		std::cout << "Error: " << sqlite3_errmsg(db_) << std::endl;
	}
	r = sqlite3_step(selectStatement);
	if (r == SQLITE_ROW) {
		result = boost::optional<JID>(reinterpret_cast<const char*>(sqlite3_column_text(selectStatement, 0)));
	}
	sqlite3_finalize(selectStatement);
	return result;
}

boost::optional<int> SQLiteHistoryManager::getIDFromJID(const JID& jid) const {
	boost::optional<int> result;
	sqlite3_stmt* selectStatement;
	std::string selectQuery("SELECT id FROM jids WHERE jid='" + jid.toString() + "'");
	int r = sqlite3_prepare(db_, selectQuery.c_str(), selectQuery.size(), &selectStatement, NULL);
	if (r != SQLITE_OK) {
		std::cout << "Error: " << sqlite3_errmsg(db_) << std::endl;
	}
	r = sqlite3_step(selectStatement);
	if (r == SQLITE_ROW) {
		result = boost::optional<int>(sqlite3_column_int(selectStatement, 0));
	}
	sqlite3_finalize(selectStatement);
	return result;
}

std::set<JID> SQLiteHistoryManager::getContacts(const JID& selfJID, HistoryMessage::Type type, const std::string& keyword) const {
	std::set<JID> result;
	sqlite3_stmt* selectStatement;

	// get id
	boost::optional<int> id = getIDFromJID(selfJID);
	if (!id) {
		return result;
	}

	// get contacts
	std::string query = "SELECT DISTINCT messages.'fromBare', messages.'fromResource', messages.'toBare', messages.'toResource' FROM messages WHERE type="
		+ boost::lexical_cast<std::string>(type) + " AND (toBare="
		+ boost::lexical_cast<std::string>(*id) + " OR fromBare=" + boost::lexical_cast<std::string>(*id) + ")";

	int r = sqlite3_prepare(db_, query.c_str(), query.size(), &selectStatement, NULL);
	if (r != SQLITE_OK) {
		std::cout << "Error: " << sqlite3_errmsg(db_) << std::endl;
	}

	r = sqlite3_step(selectStatement);
	while (r == SQLITE_ROW) {
		int fromBareID = sqlite3_column_int(selectStatement, 0);
		std::string fromResource(reinterpret_cast<const char*>(sqlite3_column_text(selectStatement, 1)));
		int toBareID = sqlite3_column_int(selectStatement, 2);
		std::string toResource(reinterpret_cast<const char*>(sqlite3_column_text(selectStatement, 3)));
		std::string resource;

		boost::optional<JID> contactJID;

		if (fromBareID == *id) {
			contactJID = getJIDFromID(toBareID);
			resource = toResource;
		}
		else {
			contactJID = getJIDFromID(fromBareID);
			resource = fromResource;
		}

		// check if it is a MUC contact (from a private conversation)
		if (type == HistoryMessage::PrivateMessage) {
			contactJID = boost::optional<JID>(JID(contactJID->getNode(), contactJID->getDomain(), resource));
		}

		if (contactJID) {
			result.insert(*contactJID);
		}

		r = sqlite3_step(selectStatement);
	}

	if (r != SQLITE_DONE) {
		std::cout << "Error: " << sqlite3_errmsg(db_) << std::endl;
	}
	sqlite3_finalize(selectStatement);

	return result;
}

}