summaryrefslogtreecommitdiffstats
path: root/db/mapperfactory.php
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-09-07 23:00:34 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-09-07 23:00:34 +0200
commitee861fa6dd80378be60cb76d2fb28c5e0e808ab6 (patch)
treeee068e63498b9bfddff3cda366607b43cef688de /db/mapperfactory.php
parent4a36e0e4af8df6971be40f08c8ab0fd65c78fdd6 (diff)
extra work for postgres, fix #338
Diffstat (limited to 'db/mapperfactory.php')
-rw-r--r--db/mapperfactory.php52
1 files changed, 52 insertions, 0 deletions
diff --git a/db/mapperfactory.php b/db/mapperfactory.php
new file mode 100644
index 000000000..cf64f90d6
--- /dev/null
+++ b/db/mapperfactory.php
@@ -0,0 +1,52 @@
+<?php
+
+/**
+* ownCloud - News
+*
+* @author Alessandro Cosentino
+* @author Bernhard Posselt
+* @copyright 2012 Alessandro Cosentino cosenal@gmail.com
+* @copyright 2012 Bernhard Posselt dev@bernhard-posselt.com
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+* License as published by the Free Software Foundation; either
+* version 3 of the License, or any later version.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+*
+* You should have received a copy of the GNU Affero General Public
+* License along with this library. If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+namespace OCA\News\Db;
+
+use \OCA\AppFramework\Core\API;
+
+
+class MapperFactory {
+
+ private $api;
+
+ public function __construct(API $api) {
+ $this->api = $api;
+ }
+
+
+ public function getItemMapper() {
+ switch($this->api->getSystemValue('dbtype')) {
+ case 'pgsql':
+ return new \OCA\News\Db\Postgres\ItemMapper($this->api);
+ break;
+ default:
+ return new ItemMapper($this->api);
+ break;
+ }
+ }
+
+
+} \ No newline at end of file