forked from blallo/rss-bridge
a4b9611e66
- Do not add spaces after opening or before closing parenthesis // Wrong if( !is_null($var) ) { ... } // Right if(!is_null($var)) { ... } - Add space after closing parenthesis // Wrong if(true){ ... } // Right if(true) { ... } - Add body into new line - Close body in new line // Wrong if(true) { ... } // Right if(true) { ... } Notice: Spaces after keywords are not detected: // Wrong (not detected) // -> space after 'if' and missing space after 'else' if (true) { ... } else{ ... } // Right if(true) { ... } else { ... }
74 lines
2.3 KiB
PHP
74 lines
2.3 KiB
PHP
<?php
|
|
class NextgovBridge extends FeedExpander {
|
|
|
|
const MAINTAINER = 'ORelio';
|
|
const NAME = 'Nextgov Bridge';
|
|
const URI = 'https://www.nextgov.com/';
|
|
const DESCRIPTION = 'USA Federal technology news, best practices, and web 2.0 tools.';
|
|
|
|
const PARAMETERS = array( array(
|
|
'category' => array(
|
|
'name' => 'Category',
|
|
'type' => 'list',
|
|
'values' => array(
|
|
'All' => 'all',
|
|
'Technology News' => 'technology-news',
|
|
'CIO Briefing' => 'cio-briefing',
|
|
'Emerging Tech' => 'emerging-tech',
|
|
'Cloud' => 'cloud-computing',
|
|
'Cybersecurity' => 'cybersecurity',
|
|
'Mobile' => 'mobile',
|
|
'Health' => 'health',
|
|
'Defense' => 'defense',
|
|
'Big Data' => 'big-data'
|
|
)
|
|
)
|
|
));
|
|
|
|
public function collectData(){
|
|
$this->collectExpandableDatas(self::URI . 'rss/' . $this->getInput('category') . '/', 10);
|
|
}
|
|
|
|
protected function parseItem($newsItem){
|
|
$item = parent::parseItem($newsItem);
|
|
|
|
$item['content'] = '';
|
|
|
|
$namespaces = $newsItem->getNamespaces(true);
|
|
if(isset($namespaces['media'])) {
|
|
$media = $newsItem->children($namespaces['media']);
|
|
if(isset($media->content)) {
|
|
$attributes = $media->content->attributes();
|
|
$item['content'] = '<img src="' . $attributes['url'] . '">';
|
|
}
|
|
}
|
|
|
|
$item['content'] .= $this->extractContent($item['uri']);
|
|
return $item;
|
|
}
|
|
|
|
private function stripWithDelimiters($string, $start, $end){
|
|
while (strpos($string, $start) !== false) {
|
|
$section_to_remove = substr($string, strpos($string, $start));
|
|
$section_to_remove = substr($section_to_remove, 0, strpos($section_to_remove, $end) + strlen($end));
|
|
$string = str_replace($section_to_remove, '', $string);
|
|
}
|
|
|
|
return $string;
|
|
}
|
|
|
|
private function extractContent($url){
|
|
$article = getSimpleHTMLDOMCached($url)
|
|
or returnServerError('Could not request Nextgov: ' . $url);
|
|
|
|
$contents = $article->find('div.wysiwyg', 0)->innertext;
|
|
$contents = $this->stripWithDelimiters($contents, '<div class="ad-container">', '</div>');
|
|
$contents = $this->stripWithDelimiters($contents, '<div', '</div>'); //ad outer div
|
|
return $this->stripWithDelimiters($contents, '<script', '</script>');
|
|
$contents = ($article_thumbnail == '' ? '' : '<p><img src="' . $article_thumbnail . '" /></p>')
|
|
. '<p><b>'
|
|
. $article_subtitle
|
|
. '</b></p>'
|
|
. trim($contents);
|
|
}
|
|
}
|