summaryrefslogtreecommitdiffstats
path: root/dependencyinjection
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2013-09-25 22:29:34 +0200
committerRobin Appelman <icewind@owncloud.com>2013-09-25 22:29:34 +0200
commit5c9bd98c12c958392a6ff0c77338732dac21237d (patch)
tree6a4a13e136d379f8a1f025519a8d653cc55098f8 /dependencyinjection
parent5ea27804abb01645a64d7e5a63bb87d7b2e4e27b (diff)
add article enhancer for use cad-comic.com
Diffstat (limited to 'dependencyinjection')
-rw-r--r--dependencyinjection/dicontainer.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/dependencyinjection/dicontainer.php b/dependencyinjection/dicontainer.php
index ecdf0b3df..891b59bd6 100644
--- a/dependencyinjection/dicontainer.php
+++ b/dependencyinjection/dicontainer.php
@@ -63,6 +63,7 @@ use \OCA\News\Utility\SimplePieFileFactory;
use \OCA\News\Utility\ArticleEnhancer\Enhancer;
use \OCA\News\Utility\ArticleEnhancer\CyanideAndHappinessEnhancer;
use \OCA\News\Utility\ArticleEnhancer\ThemeRepublicEnhancer;
+use OCA\News\Utility\ArticleEnhancer\CADEnhancer;
use \OCA\News\Middleware\CORSMiddleware;
@@ -261,6 +262,7 @@ class DIContainer extends BaseContainer {
// the most generic enhancer should be the last one
$enhancer->registerEnhancer('explosm.net', $c['CyanideAndHappinessEnhancer']);
$enhancer->registerEnhancer('themerepublic.net', $c['ThemeRepublicEnhancer']);
+ $enhancer->registerEnhancer('cad-comic.com', $c['CADEnhancer']);
return $enhancer;
});
@@ -285,6 +287,14 @@ class DIContainer extends BaseContainer {
);
});
+ $this['CADEnhancer'] = $this->share(function($c){
+ return new CADEnhancer(
+ $c['SimplePieFileFactory'],
+ $c['HTMLPurifier'],
+ $c['feedFetcherTimeout']
+ );
+ });
+
$this['Fetcher'] = $this->share(function($c){
$fetcher = new Fetcher();