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
|
<?php
declare(strict_types=1);
class FreshRSS_Factory {
/**
* @throws Minz_ConfigurationNamespaceException|Minz_PDOConnectionException
*/
public static function createUserDao(?string $username = null): FreshRSS_UserDAO {
return new FreshRSS_UserDAO($username);
}
/**
* @throws Minz_ConfigurationNamespaceException|Minz_PDOConnectionException
*/
public static function createCategoryDao(?string $username = null): FreshRSS_CategoryDAO {
return match (FreshRSS_Context::systemConf()->db['type'] ?? '') {
'sqlite' => new FreshRSS_CategoryDAOSQLite($username),
'pgsql' => new FreshRSS_CategoryDAOPGSQL($username),
default => new FreshRSS_CategoryDAO($username),
};
}
/**
* @throws Minz_ConfigurationNamespaceException|Minz_PDOConnectionException
*/
public static function createFeedDao(?string $username = null): FreshRSS_FeedDAO {
return match (FreshRSS_Context::systemConf()->db['type'] ?? '') {
'sqlite' => new FreshRSS_FeedDAOSQLite($username),
'pgsql' => new FreshRSS_FeedDAOPGSQL($username),
default => new FreshRSS_FeedDAO($username),
};
}
/**
* @throws Minz_ConfigurationNamespaceException|Minz_PDOConnectionException
*/
public static function createEntryDao(?string $username = null): FreshRSS_EntryDAO {
return match (FreshRSS_Context::systemConf()->db['type'] ?? '') {
'sqlite' => new FreshRSS_EntryDAOSQLite($username),
'pgsql' => new FreshRSS_EntryDAOPGSQL($username),
default => new FreshRSS_EntryDAO($username),
};
}
/**
* @throws Minz_ConfigurationNamespaceException|Minz_PDOConnectionException
*/
public static function createTagDao(?string $username = null): FreshRSS_TagDAO {
return match (FreshRSS_Context::systemConf()->db['type'] ?? '') {
'sqlite' => new FreshRSS_TagDAOSQLite($username),
'pgsql' => new FreshRSS_TagDAOPGSQL($username),
default => new FreshRSS_TagDAO($username),
};
}
/**
* @throws Minz_ConfigurationNamespaceException|Minz_PDOConnectionException
*/
public static function createStatsDAO(?string $username = null): FreshRSS_StatsDAO {
return match (FreshRSS_Context::systemConf()->db['type'] ?? '') {
'sqlite' => new FreshRSS_StatsDAOSQLite($username),
'pgsql' => new FreshRSS_StatsDAOPGSQL($username),
default => new FreshRSS_StatsDAO($username),
};
}
/**
* @throws Minz_ConfigurationNamespaceException|Minz_PDOConnectionException
*/
public static function createDatabaseDAO(?string $username = null): FreshRSS_DatabaseDAO {
return match (FreshRSS_Context::systemConf()->db['type'] ?? '') {
'sqlite' => new FreshRSS_DatabaseDAOSQLite($username),
'pgsql' => new FreshRSS_DatabaseDAOPGSQL($username),
default => new FreshRSS_DatabaseDAO($username),
};
}
}
|