summaryrefslogtreecommitdiffstats
path: root/utility
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-10-22 22:19:14 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-10-22 22:19:14 +0200
commitea6f93d515f226f67202aafc107b1e4098ddf036 (patch)
tree5293b982086fa51e4274e955a9217b8436940c74 /utility
parent1d0d912870adcb4ed0dfba31c68f61340ed3304d (diff)
use factories for reader and favicon since they have state and cant be reused
Diffstat (limited to 'utility')
-rw-r--r--utility/picofeedfaviconfactory.php38
-rw-r--r--utility/picofeedreaderfactory.php38
2 files changed, 76 insertions, 0 deletions
diff --git a/utility/picofeedfaviconfactory.php b/utility/picofeedfaviconfactory.php
new file mode 100644
index 000000000..8438765cd
--- /dev/null
+++ b/utility/picofeedfaviconfactory.php
@@ -0,0 +1,38 @@
+<?php
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Alessandro Cosentino <cosenal@gmail.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Alessandro Cosentino 2012
+ * @copyright Bernhard Posselt 2012, 2014
+ */
+
+
+namespace OCA\News\Utility;
+
+use \PicoFeed\Config;
+use \PicoFeed\Favicon;
+
+class PicoFeedFaviconFactory {
+
+ private $config;
+
+ public function __construct(Config $config) {
+ $this->config = $config;
+ }
+
+
+ /**
+ * Returns a new instance of an PicoFeed Http client
+ * @return \PicoFeed\Favicon instance
+ */
+ public function build() {
+ return new Favicon($this->config);
+ }
+
+
+} \ No newline at end of file
diff --git a/utility/picofeedreaderfactory.php b/utility/picofeedreaderfactory.php
new file mode 100644
index 000000000..844a0e402
--- /dev/null
+++ b/utility/picofeedreaderfactory.php
@@ -0,0 +1,38 @@
+<?php
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Alessandro Cosentino <cosenal@gmail.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Alessandro Cosentino 2012
+ * @copyright Bernhard Posselt 2012, 2014
+ */
+
+
+namespace OCA\News\Utility;
+
+use \PicoFeed\Config;
+use \PicoFeed\Reader;
+
+class PicoFeedReaderFactory {
+
+ private $config;
+
+ public function __construct(Config $config) {
+ $this->config = $config;
+ }
+
+
+ /**
+ * Returns a new instance of an PicoFeed Http Reader
+ * @return \PicoFeed\Reader instance
+ */
+ public function build() {
+ return new Reader($this->config);
+ }
+
+
+} \ No newline at end of file