function get_reader_config() { $config = new ReaderConfig(); $config->setTimezone(get('timezone')); // Client $config->setClientTimeout(HTTP_TIMEOUT); $config->setClientUserAgent(HTTP_USER_AGENT); $config->setGrabberUserAgent(HTTP_USER_AGENT); // Proxy $config->setProxyHostname(PROXY_HOSTNAME); $config->setProxyPort(PROXY_PORT); $config->setProxyUsername(PROXY_USERNAME); $config->setProxyPassword(PROXY_PASSWORD); // Filter $config->setFilterIframeWhitelist(get_iframe_whitelist()); if ((bool) get('debug_mode')) { Logger::enable(); } // Parser $config->setParserHashAlgo('crc32b'); return $config; }
public function __construct(array $urlParams = []) { parent::__construct('news', $urlParams); // files $this->registerFileContents('checksums', 'checksum.json'); $this->registerFileContents('info', 'info.xml'); // parameters $this->registerParameter('exploreDir', __DIR__ . '/../explore'); $this->registerParameter('configFile', 'config.ini'); // factories $this->registerFactory(ItemMapper::class, MapperFactory::class); /** * App config parser */ $this->registerService(AppConfig::class, function ($c) { $config = new AppConfig($c->query(INavigationManager::class), $c->query(IURLGenerator::class)); $config->loadConfig($c->query('info')); return $config; }); /** * Core */ $this->registerService('LoggerParameters', function ($c) { return ['app' => $c->query('AppName')]; }); $this->registerService('databaseType', function ($c) { return $c->query(IConfig::class)->getSystemValue('dbtype'); }); $this->registerService('ConfigView', function ($c) { $fs = $c->query(IRootFolder::class); $path = 'news/config'; if ($fs->nodeExists($path)) { return $fs->get($path); } else { return $fs->newFolder($path); } }); $this->registerService(Config::class, function ($c) { $config = new Config($c->query('ConfigView'), $c->query(ILogger::class), $c->query('LoggerParameters')); $config->read($c->query('configFile'), true); return $config; }); $this->registerService(HTMLPurifier::class, function ($c) { $directory = $c->query(IConfig::class)->getSystemValue('datadirectory') . '/news/cache/purifier'; if (!is_dir($directory)) { mkdir($directory, 0770, true); } $config = HTMLPurifier_Config::createDefault(); $config->set('HTML.ForbiddenAttributes', 'class'); $config->set('Cache.SerializerPath', $directory); $config->set('HTML.SafeIframe', true); $config->set('URI.SafeIframeRegexp', '%^https://(?:www\\.)?(' . 'youtube(?:-nocookie)?.com/embed/|' . 'player.vimeo.com/video/)%'); //allow YouTube and Vimeo $def = $config->getHTMLDefinition(true); $def->addAttribute('iframe', 'allowfullscreen', 'Bool'); return new HTMLPurifier($config); }); /** * Fetchers */ $this->registerService(PicoFeedConfig::class, function ($c) { // FIXME: move this into a separate class for testing? $config = $c->query(Config::class); $appConfig = $c->query(AppConfig::class); $proxy = $c->query(ProxyConfigParser::class); $userAgent = 'ownCloud News/' . $appConfig->getConfig('version') . ' (+https://owncloud.org/; 1 subscriber;)'; $pico = new PicoFeedConfig(); $pico->setClientUserAgent($userAgent)->setClientTimeout($config->getFeedFetcherTimeout())->setMaxRedirections($config->getMaxRedirects())->setMaxBodySize($config->getMaxSize())->setParserHashAlgo('md5'); // proxy settings $proxySettings = $proxy->parse(); $host = $proxySettings['host']; $port = $proxySettings['port']; $user = $proxySettings['user']; $password = $proxySettings['password']; if ($host) { $pico->setProxyHostname($host); if ($port) { $pico->setProxyPort($port); } } if ($user) { $pico->setProxyUsername($user)->setProxyPassword($password); } return $pico; }); $this->registerService(Fetcher::class, function ($c) { $fetcher = new Fetcher(); // register fetchers in order, the most generic fetcher should be // the last one $fetcher->registerFetcher($c->query(YoutubeFetcher::class)); $fetcher->registerFetcher($c->query(FeedFetcher::class)); return $fetcher; }); }
public function __construct(array $urlParams = []) { parent::__construct('news', $urlParams); $container = $this->getContainer(); /** * Mappers */ $container->registerService('OCA\\News\\Db\\ItemMapper', function ($c) { return $c->query('OCA\\News\\Db\\MapperFactory')->getItemMapper($c->query('OCP\\IDBConnection')); }); /** * App config parser */ $container->registerService('OCA\\News\\Config\\AppConfig', function ($c) { $config = new AppConfig($c->query('OCP\\INavigationManager'), $c->query('OCP\\IURLGenerator')); $config->loadConfig(__DIR__ . '/info.xml'); return $config; }); /** * Core */ $container->registerService('LoggerParameters', function ($c) { return ['app' => $c->query('AppName')]; }); $container->registerService('DatabaseType', function ($c) { return $c->query('OCP\\IConfig')->getSystemValue('dbtype'); }); /** * Utility */ $container->registerService('ConfigPath', function () { return 'config.ini'; }); $container->registerService('ConfigView', function ($c) { $fs = $c->query('OCP\\Files\\IRootFolder'); $path = 'news/config'; if ($fs->nodeExists($path)) { return $fs->get($path); } else { return $fs->newFolder($path); } }); $container->registerService('OCA\\News\\Config\\Config', function ($c) { $config = new Config($c->query('ConfigView'), $c->query('OCP\\ILogger'), $c->query('LoggerParameters')); $config->read($c->query('ConfigPath'), true); return $config; }); $container->registerService('HTMLPurifier', function ($c) { $directory = $c->query('OCP\\IConfig')->getSystemValue('datadirectory') . '/news/cache/purifier'; if (!is_dir($directory)) { mkdir($directory, 0770, true); } $config = HTMLPurifier_Config::createDefault(); $config->set('HTML.ForbiddenAttributes', 'class'); $config->set('Cache.SerializerPath', $directory); $config->set('HTML.SafeIframe', true); $config->set('URI.SafeIframeRegexp', '%^https://(?:www\\.)?(' . 'youtube(?:-nocookie)?.com/embed/|' . 'player.vimeo.com/video/)%'); //allow YouTube and Vimeo return new HTMLPurifier($config); }); $container->registerService('OCA\\News\\ArticleEnhancer\\Enhancer', function ($c) { $enhancer = new Enhancer(); // register simple enhancers from config json file $xpathEnhancerConfig = file_get_contents(__DIR__ . '/../articleenhancer/xpathenhancers.json'); $xpathEnhancerConfig = json_decode($xpathEnhancerConfig, true); foreach ($xpathEnhancerConfig as $feed => $config) { $articleEnhancer = new XPathArticleEnhancer($c->query('OCA\\News\\Utility\\PicoFeedClientFactory'), $config); $enhancer->registerEnhancer($feed, $articleEnhancer); } $regexEnhancerConfig = file_get_contents(__DIR__ . '/../articleenhancer/regexenhancers.json'); $regexEnhancerConfig = json_decode($regexEnhancerConfig, true); foreach ($regexEnhancerConfig as $feed => $config) { foreach ($config as $matchArticleUrl => $regex) { $articleEnhancer = new RegexArticleEnhancer($matchArticleUrl, $regex); $enhancer->registerEnhancer($feed, $articleEnhancer); } } return $enhancer; }); /** * Fetchers */ $container->registerService('PicoFeed\\Config\\Config', function ($c) { // FIXME: move this into a separate class for testing? $config = $c->query('OCA\\News\\Config\\Config'); $appConfig = $c->query('OCA\\News\\Config\\AppConfig'); $proxy = $c->query('OCA\\News\\Utility\\ProxyConfigParser'); $userAgent = 'ownCloud News/' . $appConfig->getConfig('version') . ' (+https://owncloud.org/; 1 subscriber;)'; $pico = new PicoFeedConfig(); $pico->setClientUserAgent($userAgent)->setClientTimeout($config->getFeedFetcherTimeout())->setMaxRedirections($config->getMaxRedirects())->setMaxBodySize($config->getMaxSize())->setParserHashAlgo('md5'); // proxy settings $proxySettings = $proxy->parse(); $host = $proxySettings['host']; $port = $proxySettings['port']; $user = $proxySettings['user']; $password = $proxySettings['password']; if ($host) { $pico->setProxyHostname($host); if ($port) { $pico->setProxyPort($port); } } if ($user) { $pico->setProxyUsername($user)->setProxyPassword($password); } return $pico; }); $container->registerService('OCA\\News\\Fetcher\\Fetcher', function ($c) { $fetcher = new Fetcher(); // register fetchers in order // the most generic fetcher should be the last one $fetcher->registerFetcher($c->query('OCA\\News\\Fetcher\\YoutubeFetcher')); $fetcher->registerFetcher($c->query('OCA\\News\\Fetcher\\FeedFetcher')); return $fetcher; }); $container->registerService('OCA\\News\\Explore\\RecommendedSites', function () { return new RecommendedSites(__DIR__ . '/../explore'); }); }