<-- useful data in table rows
+
+ //Process each release of that day, ignoring first table row: contains table headers
+ while (!is_null($release = $release->next_sibling())) {
+ if (count($release->find('td')) > 0) {
+
+ //Retrieve metadata from table columns
+ $item_link_element = $release->find('td', 0)->find('a', 0);
+ $item_uri = $website.$item_link_element->href;
+ $item_name = html_entity_decode($item_link_element->plaintext);
+ $item_image = $website.substr($item_link_element->onmouseover, 37, strpos($item_link_element->onmouseover, ' ', 37) - 37);
+ $item_episode = html_entity_decode(str_pad($release->find('td', 1)->plaintext, 2, '0', STR_PAD_LEFT));
+ $item_fansub = $release->find('td', 2)->plaintext;
+ $item_type = $release->find('td', 4)->plaintext;
+
+ if (!empty($item_uri)) {
+
+ //Retrieve description from description page and convert relative image src info absolute image src
+ $html_item = file_get_contents($item_uri) or $this->returnError('Could not request Anime-Ultime: '.$item_uri, 500);
+ $item_description = substr($html_item, strpos($html_item, 'class="principal_contain" align="center">') + 41);
+ $item_description = substr($item_description, 0, strpos($item_description, ''));
+ $item_description = str_replace('src="images', 'src="'.$website.'images', $item_description);
+ $item_description = str_replace("\r", '', $item_description);
+ $item_description = str_replace("\n", '', $item_description);
+ $item_description = utf8_encode($item_description);
+
+ //Build and add final item
+ $item = new \Item();
+ $item->uri = $item_uri;
+ $item->title = $item_name.' '.$item_type.' '.$item_episode;
+ $item->author = $item_fansub;
+ $item->timestamp = $item_date;
+ $item->thumbnailUri = $item_image;
+ $item->content = $item_description;
+ $this->items[] = $item;
+ $processedOK++;
+
+ //Stop processing once limit is reached
+ if ($processedOK >= 10)
+ return;
+ }
+ }
+ }
+ }
+ }
+ }
+
+ public function getName() {
+ return 'Latest '.$this->filter.' - Anime-Ultime Bridge';
+ }
+
+ public function getURI() {
+ return 'http://www.anime-ultime.net/';
+ }
+
+ public function getCacheDuration() {
+ return 3600*3; // 3 hours
+ }
+
+}
diff --git a/bridges/CNETBridge.php b/bridges/CNETBridge.php
new file mode 100644
index 0000000..0450d1e
--- /dev/null
+++ b/bridges/CNETBridge.php
@@ -0,0 +1,99 @@
+ You may specify a topic, else all topics are selected.
+* @maintainer ORelio
+* @update 2015-09-10
+* @use1(topic="Topic name")
+*/
+class CNETBridge extends BridgeAbstract {
+
+ private $topicName = '';
+
+ public function collectData(array $param) {
+
+ function ExtractFromDelimiters($string, $start, $end) {
+ if (strpos($string, $start) !== false) {
+ $section_retrieved = substr($string, strpos($string, $start) + strlen($start));
+ $section_retrieved = substr($section_retrieved, 0, strpos($section_retrieved, $end));
+ return $section_retrieved;
+ } return false;
+ }
+
+ 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;
+ }
+
+ function CleanArticle($article_html) {
+ $article_html = '
'.substr($article_html, strpos($article_html, '
') + 18);
+ $article_html = StripWithDelimiters($article_html, '');
+ $article_html = StripWithDelimiters($article_html, '
', '');
+ return $article_html;
+ }
+
+ if (!empty($param['topic']))
+ $this->topicName = $param['topic'];
+
+ $pageUrl = 'http://www.cnet.com/'.(empty($this->topicName) ? '' : 'topics/'.$this->topicName.'/');
+ $html = file_get_html($pageUrl) or $this->returnError('Could not request CNET: '.$pageUrl, 500);
+ $limit = 0;
+
+ foreach($html->find('div.socialSharingSmall') as $element) {
+ if ($limit < 4) {
+
+ $article_meta = json_decode(ExtractFromDelimiters($element->outertext, 'data-social-counts-options=\'', '\'>'));
+ $article_title = $article_meta->title;
+ $article_uri = $article_meta->url;
+
+ if (!empty($article_title) && !empty($article_uri) && strpos($article_uri, '/news/') !== false) {
+
+ $article_html = file_get_html($article_uri) or $this->returnError('Could not request CNET: '.$article_uri, 500);
+ $article_timestamp = strtotime(ExtractFromDelimiters($article_html->innertext, '
', '