Files
FreshRSS/app/Models/Factory.php
Luc SANCHEZ 15745d42b7 Upgrade code to php 8.1 (#6748)
* revert
Fix code indentation
Fix code

Upgrade code to php 8.1

* fix remarques

* code review

* code review

* code review

* Apply suggestions from code review

* code review

* Fixes

* Many remainging updates of array syntax

* Lost case 'reading-list'

* Uneeded PHPDoc

---------

Co-authored-by: Luc Sanchez <l.sanchez-prestataire@alptis.fr>
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
2024-11-28 17:11:04 +01:00

77 lines
2.6 KiB
PHP

<?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),
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),
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),
};
}
}