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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
use crate::config::structs::configuration::Configuration;
use crate::database::database::quote_identifier;
use crate::database::enums::database_drivers::DatabaseDrivers;
use crate::database::structs::database_connector::DatabaseConnector;
use crate::database::structs::database_connector_mysql::DatabaseConnectorMySQL;
use crate::database::structs::database_connector_pgsql::DatabaseConnectorPgSQL;
use crate::database::structs::database_connector_sqlite::DatabaseConnectorSQLite;
use crate::tracker::enums::updates_action::UpdatesAction;
use crate::tracker::structs::info_hash::InfoHash;
use crate::tracker::structs::torrent_update_data::TorrentUpdateData;
use crate::tracker::structs::torrent_tracker::TorrentTracker;
use crate::tracker::structs::user_entry_item::UserEntryItem;
use crate::tracker::structs::user_id::UserId;
use sqlx::Error;
use std::collections::BTreeMap;
use std::sync::Arc;
impl DatabaseConnector {
/// Connects to the engine selected in the configuration (SQLite 3, MySQL or PostgreSQL),
/// optionally creating the database schema first.
pub async fn new(config: Arc<Configuration>, create_database: bool) -> DatabaseConnector
{
match &config.database.engine {
DatabaseDrivers::sqlite3 => { DatabaseConnectorSQLite::database_connector(config, create_database).await }
DatabaseDrivers::mysql => { DatabaseConnectorMySQL::database_connector(config, create_database).await }
DatabaseDrivers::pgsql => { DatabaseConnectorPgSQL::database_connector(config, create_database).await }
}
}
/// Loads all persisted torrents into the tracker; returns `(torrents, completed)` counts.
///
/// # Errors
///
/// Returns the underlying `sqlx` error when the database operation fails, or
/// `Error::RowNotFound` when no backend is initialised for the configured engine.
pub async fn load_torrents(&self, tracker: Arc<TorrentTracker>) -> Result<(u64, u64), Error>
{
let transaction = crate::utils::sentry_tracing::start_trace_transaction("db_load_torrents", "database");
let result: Result<(u64, u64), Error> = match self.engine.as_ref() {
Some(DatabaseDrivers::sqlite3) => {
if let Some(ref sqlite) = self.sqlite {
sqlite.load_torrents(tracker).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::mysql) => {
if let Some(ref mysql) = self.mysql {
mysql.load_torrents(tracker).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::pgsql) => {
if let Some(ref pgsql) = self.pgsql {
pgsql.load_torrents(tracker).await
} else {
Err(Error::RowNotFound)
}
}
None => Err(Error::RowNotFound)
};
if let Some(txn) = transaction {
match &result {
Ok((loaded, completed)) => {
txn.set_tag("result", "success");
txn.set_extra("torrents_loaded", (*loaded).into());
txn.set_extra("completed_count", (*completed).into());
}
Err(e) => {
txn.set_tag("result", "error");
txn.set_tag("error", e.to_string());
}
}
if let Some(engine) = &self.engine {
txn.set_tag("database_engine", format!("{engine:?}"));
}
txn.finish();
}
result
}
/// Loads the persisted whitelist into the tracker; returns the number of entries.
///
/// # Errors
///
/// Returns the underlying `sqlx` error when the database operation fails, or
/// `Error::RowNotFound` when no backend is initialised for the configured engine.
pub async fn load_whitelist(&self, tracker: Arc<TorrentTracker>) -> Result<u64, Error>
{
match self.engine.as_ref() {
Some(DatabaseDrivers::sqlite3) => {
if let Some(ref sqlite) = self.sqlite {
sqlite.load_whitelist(tracker).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::mysql) => {
if let Some(ref mysql) = self.mysql {
mysql.load_whitelist(tracker).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::pgsql) => {
if let Some(ref pgsql) = self.pgsql {
pgsql.load_whitelist(tracker).await
} else {
Err(Error::RowNotFound)
}
}
None => Err(Error::RowNotFound)
}
}
/// Loads the persisted blacklist into the tracker; returns the number of entries.
///
/// # Errors
///
/// Returns the underlying `sqlx` error when the database operation fails, or
/// `Error::RowNotFound` when no backend is initialised for the configured engine.
pub async fn load_blacklist(&self, tracker: Arc<TorrentTracker>) -> Result<u64, Error>
{
match self.engine.as_ref() {
Some(DatabaseDrivers::sqlite3) => {
if let Some(ref sqlite) = self.sqlite {
sqlite.load_blacklist(tracker).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::mysql) => {
if let Some(ref mysql) = self.mysql {
mysql.load_blacklist(tracker).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::pgsql) => {
if let Some(ref pgsql) = self.pgsql {
pgsql.load_blacklist(tracker).await
} else {
Err(Error::RowNotFound)
}
}
None => Err(Error::RowNotFound)
}
}
/// Loads the persisted announce keys into the tracker; returns the number of entries.
///
/// # Errors
///
/// Returns the underlying `sqlx` error when the database operation fails, or
/// `Error::RowNotFound` when no backend is initialised for the configured engine.
pub async fn load_keys(&self, tracker: Arc<TorrentTracker>) -> Result<u64, Error>
{
match self.engine.as_ref() {
Some(DatabaseDrivers::sqlite3) => {
if let Some(ref sqlite) = self.sqlite {
sqlite.load_keys(tracker).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::mysql) => {
if let Some(ref mysql) = self.mysql {
mysql.load_keys(tracker).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::pgsql) => {
if let Some(ref pgsql) = self.pgsql {
pgsql.load_keys(tracker).await
} else {
Err(Error::RowNotFound)
}
}
None => Err(Error::RowNotFound)
}
}
/// Loads the persisted users into the tracker; returns the number of entries.
///
/// # Errors
///
/// Returns the underlying `sqlx` error when the database operation fails, or
/// `Error::RowNotFound` when no backend is initialised for the configured engine.
pub async fn load_users(&self, tracker: Arc<TorrentTracker>) -> Result<u64, Error>
{
match self.engine.as_ref() {
Some(DatabaseDrivers::sqlite3) => {
if let Some(ref sqlite) = self.sqlite {
sqlite.load_users(tracker).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::mysql) => {
if let Some(ref mysql) = self.mysql {
mysql.load_users(tracker).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::pgsql) => {
if let Some(ref pgsql) = self.pgsql {
pgsql.load_users(tracker).await
} else {
Err(Error::RowNotFound)
}
}
None => Err(Error::RowNotFound)
}
}
/// Persists whitelist additions/removals; returns the number of rows written.
///
/// # Errors
///
/// Returns the underlying `sqlx` error when the database operation fails, or
/// `Error::RowNotFound` when no backend is initialised for the configured engine.
pub async fn save_whitelist(&self, tracker: Arc<TorrentTracker>, whitelists: Vec<(InfoHash, UpdatesAction)>) -> Result<u64, Error>
{
match self.engine.as_ref() {
Some(DatabaseDrivers::sqlite3) => {
if let Some(ref sqlite) = self.sqlite {
sqlite.save_whitelist(tracker, whitelists).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::mysql) => {
if let Some(ref mysql) = self.mysql {
mysql.save_whitelist(tracker, whitelists).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::pgsql) => {
if let Some(ref pgsql) = self.pgsql {
pgsql.save_whitelist(tracker, whitelists).await
} else {
Err(Error::RowNotFound)
}
}
None => Err(Error::RowNotFound)
}
}
/// Persists blacklist additions/removals; returns the number of rows written.
///
/// # Errors
///
/// Returns the underlying `sqlx` error when the database operation fails, or
/// `Error::RowNotFound` when no backend is initialised for the configured engine.
pub async fn save_blacklist(&self, tracker: Arc<TorrentTracker>, blacklists: Vec<(InfoHash, UpdatesAction)>) -> Result<u64, Error>
{
match self.engine.as_ref() {
Some(DatabaseDrivers::sqlite3) => {
if let Some(ref sqlite) = self.sqlite {
sqlite.save_blacklist(tracker, blacklists).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::mysql) => {
if let Some(ref mysql) = self.mysql {
mysql.save_blacklist(tracker, blacklists).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::pgsql) => {
if let Some(ref pgsql) = self.pgsql {
pgsql.save_blacklist(tracker, blacklists).await
} else {
Err(Error::RowNotFound)
}
}
None => Err(Error::RowNotFound)
}
}
/// Persists announce-key additions/removals with their expiry timestamps.
///
/// # Errors
///
/// Returns the underlying `sqlx` error when the database operation fails, or
/// `Error::RowNotFound` when no backend is initialised for the configured engine.
pub async fn save_keys(&self, tracker: Arc<TorrentTracker>, keys: BTreeMap<InfoHash, (i64, UpdatesAction)>) -> Result<u64, Error>
{
match self.engine.as_ref() {
Some(DatabaseDrivers::sqlite3) => {
if let Some(ref sqlite) = self.sqlite {
sqlite.save_keys(tracker, keys).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::mysql) => {
if let Some(ref mysql) = self.mysql {
mysql.save_keys(tracker, keys).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::pgsql) => {
if let Some(ref pgsql) = self.pgsql {
pgsql.save_keys(tracker, keys).await
} else {
Err(Error::RowNotFound)
}
}
None => Err(Error::RowNotFound)
}
}
/// Persists a batch of torrent updates, committing in `chunk_size` chunks to keep
/// transactions (and the locks they hold) short.
///
/// # Errors
///
/// Returns the underlying `sqlx` error when the database operation fails, or
/// `Error::RowNotFound` when no backend is initialised for the configured engine.
pub async fn save_torrents(&self, tracker: Arc<TorrentTracker>, torrents: BTreeMap<InfoHash, (TorrentUpdateData, UpdatesAction)>) -> Result<(), Error>
{
let transaction = crate::utils::sentry_tracing::start_trace_transaction("db_save_torrents", "database");
let result: Result<(), Error> = match self.engine.as_ref() {
Some(DatabaseDrivers::sqlite3) => {
if let Some(ref sqlite) = self.sqlite {
sqlite.save_torrents(tracker, torrents.clone()).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::mysql) => {
if let Some(ref mysql) = self.mysql {
mysql.save_torrents(tracker, torrents.clone()).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::pgsql) => {
if let Some(ref pgsql) = self.pgsql {
pgsql.save_torrents(tracker, torrents.clone()).await
} else {
Err(Error::RowNotFound)
}
}
None => Err(Error::RowNotFound)
};
if let Some(txn) = transaction {
match &result {
Ok(()) => {
txn.set_tag("result", "success");
}
Err(e) => {
txn.set_tag("result", "error");
txn.set_tag("error", e.to_string());
}
}
if let Some(engine) = &self.engine {
txn.set_tag("database_engine", format!("{engine:?}"));
}
txn.set_extra("torrents_to_save", (torrents.len() as i64).into());
txn.finish();
}
result
}
/// Persists a batch of user updates, committing in `chunk_size` chunks to keep
/// transactions (and the locks they hold) short.
///
/// # Errors
///
/// Returns the underlying `sqlx` error when the database operation fails, or
/// `Error::RowNotFound` when no backend is initialised for the configured engine.
pub async fn save_users(&self, tracker: Arc<TorrentTracker>, users: BTreeMap<UserId, (UserEntryItem, UpdatesAction)>) -> Result<(), Error>
{
match self.engine.as_ref() {
Some(DatabaseDrivers::sqlite3) => {
if let Some(ref sqlite) = self.sqlite {
sqlite.save_users(tracker, users).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::mysql) => {
if let Some(ref mysql) = self.mysql {
mysql.save_users(tracker, users).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::pgsql) => {
if let Some(ref pgsql) = self.pgsql {
pgsql.save_users(tracker, users).await
} else {
Err(Error::RowNotFound)
}
}
None => Err(Error::RowNotFound)
}
}
/// Deletes all rows from the given table.
///
/// # Errors
///
/// Returns the underlying `sqlx` error when the database operation fails, or
/// `Error::RowNotFound` when no backend is initialised for the configured engine.
pub async fn clear_table(&self, table_name: &str) -> Result<(), Error>
{
let query = match self.engine.as_ref() {
Some(engine) => format!("DELETE FROM {}", quote_identifier(*engine, table_name)),
None => return Err(Error::RowNotFound),
};
match self.engine.as_ref() {
Some(DatabaseDrivers::sqlite3) => {
if let Some(ref sqlite) = self.sqlite {
sqlx::query(sqlx::AssertSqlSafe(query)).execute(&sqlite.pool).await.map(|_| ())
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::mysql) => {
if let Some(ref mysql) = self.mysql {
sqlx::query(sqlx::AssertSqlSafe(query)).execute(&mysql.pool).await.map(|_| ())
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::pgsql) => {
if let Some(ref pgsql) = self.pgsql {
sqlx::query(sqlx::AssertSqlSafe(query)).execute(&pgsql.pool).await.map(|_| ())
} else {
Err(Error::RowNotFound)
}
}
None => Err(Error::RowNotFound)
}
}
/// Zeroes the seeds and peers columns of every torrent row (used at startup).
///
/// # Errors
///
/// Returns the underlying `sqlx` error when the database operation fails, or
/// `Error::RowNotFound` when no backend is initialised for the configured engine.
pub async fn reset_seeds_peers(&self, tracker: Arc<TorrentTracker>) -> Result<(), Error>
{
match self.engine.as_ref() {
Some(DatabaseDrivers::sqlite3) => {
if let Some(ref sqlite) = self.sqlite {
sqlite.reset_seeds_peers(tracker).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::mysql) => {
if let Some(ref mysql) = self.mysql {
mysql.reset_seeds_peers(tracker).await
} else {
Err(Error::RowNotFound)
}
}
Some(DatabaseDrivers::pgsql) => {
if let Some(ref pgsql) = self.pgsql {
pgsql.reset_seeds_peers(tracker).await
} else {
Err(Error::RowNotFound)
}
}
None => Err(Error::RowNotFound)
}
}
}