Esempio n. 1
0
 /**
  * returns the content of this item
  *
  * @return string content
  */
 public function getContent()
 {
     $contentFromInstapaper = $this->fetchFromInstapaper(parent::getLink());
     if ($contentFromInstapaper === false) {
         return "instapaper parse error <br />" . parent::getContent();
     }
     return $contentFromInstapaper;
 }
Esempio n. 2
0
 /**
  * returns the content of this item
  *
  * @return string content
  */
 public function getContent()
 {
     $contentFromReadability = $this->fetchFromReadability(parent::getLink());
     if ($contentFromReadability === false) {
         return "readability parse error <br />" . parent::getContent();
     }
     return $contentFromReadability;
 }
Esempio n. 3
0
 /**
  * returns the content of this item
  *
  * @return string content
  */
 public function getContent()
 {
     if ($this->items !== false && $this->valid()) {
         $content = parent::getContent();
         foreach (@current($this->items)->get_enclosures() as $enclosure) {
             if ($enclosure->get_medium() == 'image') {
                 $title = htmlspecialchars(strip_tags($enclosure->get_title()));
                 $content .= '<img src="' . $enclosure->get_link() . '" alt="' . $title . '" title="' . $title . '" />';
             }
         }
         return $content;
     }
     return parent::getContent();
 }
Esempio n. 4
0
 /**
  * returns the content of this item
  *
  * @return string content
  */
 public function getContent()
 {
     $start_marker = "<!-- Artikel -->";
     $end_marker = "<!-- NOPRINT Start -->";
     if ($this->items !== false && $this->valid()) {
         $originalContent = @file_get_contents($this->getLink());
         if ($originalContent) {
             $originalContent = mb_convert_encoding($originalContent, 'UTF-8', 'ISO-8859-1');
             // cut the article from the page
             $text_start_pos = strpos($originalContent, $start_marker);
             $text_end_pos = strrpos($originalContent, $end_marker);
             if ($text_start_pos != False && $text_end_pos != False) {
                 $content = substr($originalContent, $text_start_pos + strlen($start_marker), $text_end_pos - $text_start_pos - strlen($start_marker));
                 // remove most html coding and return result
                 return htmLawed($content, $this->htmLawedConfig);
             }
         }
     }
     return parent::getContent();
 }
Esempio n. 5
0
 /**
  * returns the content of this item
  *
  * @return string content
  */
 public function getContent()
 {
     if ($this->items !== false && $this->valid()) {
         $originalContent = file_get_contents($this->getLink());
         preg_match_all('|<!--content-->(.*?)<!--/content-->|ims', $originalContent, $matches, PREG_PATTERN_ORDER);
         if (is_array($matches) && is_array($matches[0]) && isset($matches[0][0])) {
             return $matches[0][0];
         }
     }
     return parent::getContent();
 }
Esempio n. 6
0
 /**
  * returns the content of this item
  *
  * @return string content
  */
 public function getContent()
 {
     if ($this->items !== false && $this->valid()) {
         $originalContent = file_get_contents($this->getLink());
         preg_match_all('|<div class="content">(.*?)</div>|ims', $originalContent, $matches, PREG_PATTERN_ORDER);
         if (is_array($matches) && is_array($matches[0]) && isset($matches[0][0])) {
             $content = utf8_encode($matches[0][0]);
             $content = preg_replace_callback(',<a([^>]+)href="([^>"\\s]+)",i', function ($matches) {
                 return "<ahref=\"" . \spouts\rss\mmospy::absolute("", "http://www.mmo-spy.de") . "\"";
             }, $content);
             $content = preg_replace_callback(',<img([^>]+)src="([^>"\\s]+)",i', function ($matches) {
                 return "<imgsrc=\"" . \spouts\rss\mmospy::absolute("", "http://www.mmo-spy.de") . "\"";
             }, $content);
             return $content;
         }
     }
     return parent::getContent();
 }
Esempio n. 7
0
 /**
  * returns the content of this item
  *
  * @return string content
  */
 public function getContent()
 {
     if ($this->items !== false && $this->valid()) {
         $originalContent = file_get_contents($this->getLink());
         foreach ($this->textDivs as $div) {
             $content = $this->getTag($div[1], $div[2], $originalContent, $div[0], $div[3]);
             if (is_array($content) && count($content) >= 1) {
                 return htmLawed($content[0], $this->htmLawedConfig);
             }
         }
     }
     return parent::getContent();
 }
Esempio n. 8
0
 /**
  * returns the content of this item
  *
  * @return string content
  */
 public function getContent()
 {
     if ($this->items !== false && $this->valid()) {
         $originalContent = @file_get_contents($this->getLink());
         foreach ($this->textDivs as $div) {
             $content = $this->getTag($div[1], $div[2], $originalContent, $div[0], $div[3]);
             if (is_array($content) && count($content) >= 1) {
                 $content[0] = "<p>" . mb_convert_encoding($content[0], 'UTF-8', 'Windows-1252');
                 return htmLawed($content[0], $this->htmLawedConfig);
             }
         }
     }
     return parent::getContent();
 }
Esempio n. 9
0
 /**
  * returns the content of this item
  *
  * @return string content
  */
 public function getContent()
 {
     if ($this->items !== false && $this->valid()) {
         $originalContent = file_get_contents($this->getLink());
         foreach ($this->textDivs as $div) {
             $content = $this->getTag($div[1], $div[2], $originalContent, $div[0], $div[3]);
             if (is_array($content) && count($content) >= 1) {
                 $content = $content[0];
                 $content = preg_replace_callback(',<a([^>]+)href="([^>"\\s]+)",i', function ($matches) {
                     return "<ahref=\"" . \spouts\rss\prolinux::absolute("", "http://www.pro-linux.de") . "\"";
                 }, $content);
                 $content = preg_replace_callback(',<img([^>]+)src="([^>"\\s]+)",i', function ($matches) {
                     return "<imgsrc=\"" . \spouts\rss\prolinux::absolute("", "http://www.pro-linux.de") . "\"";
                 }, $content);
                 return $content;
             }
         }
     }
     return parent::getContent();
 }
Esempio n. 10
0
 /**
  * returns the content of this item
  *
  * @return string content
  */
 public function getContent()
 {
     $url = parent::getLink();
     \F3::get('logger')->log($this->tag . ' - Loading page: ' . $url, \INFO);
     $content = $this->fetchFromWebSite($url);
     if ($content === false) {
         \F3::get('logger')->log($this->tag . ' - Failed loading page', \ERROR);
         return parent::getContent() . "<p><strong>Failed to get web page</strong></p>";
     }
     \F3::get('logger')->log($this->tag . ' - Extracting content', \INFO);
     $content = @$this->extractContent($content, parent::getLink());
     if ($content === false) {
         \F3::get('logger')->log($this->tag . ' - Failed extracting content', \ERROR);
         return parent::getContent() . "<p><strong>Full Text RSS extracting error</strong></p>";
     }
     \F3::get('logger')->log($this->tag . ' - Cleaning content', \INFO);
     $content = $this->cleanContent($content);
     if ($content === false) {
         \F3::get('logger')->log($this->tag . ' - Failed cleaning content from', \ERROR);
         return parent::getContent() . "<p><strong>Full Text RSS cleaning error</strong></p>";
     }
     return $content;
 }