2014-05-26 21:45:10 +04:00
|
|
|
<?php
|
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
class NiceMatinBridge extends FeedExpander
|
|
|
|
{
|
|
|
|
const MAINTAINER = 'pit-fgfjiudghdf';
|
|
|
|
const NAME = 'NiceMatin';
|
|
|
|
const URI = 'https://www.nicematin.com/';
|
|
|
|
const DESCRIPTION = 'Returns the 10 newest posts from NiceMatin (full text)';
|
2015-11-04 12:47:21 +03:00
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
public function collectData()
|
|
|
|
{
|
|
|
|
$this->collectExpandableDatas(self::URI . 'derniere-minute/rss', 10);
|
|
|
|
}
|
2016-09-05 19:43:56 +03:00
|
|
|
|
2023-10-13 01:25:34 +03:00
|
|
|
protected function parseItem($item)
|
2022-07-01 16:10:30 +03:00
|
|
|
{
|
2023-10-13 01:25:34 +03:00
|
|
|
$item = parent::parseItem($item);
|
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
$item['content'] = $this->extractContent($item['uri']);
|
|
|
|
return $item;
|
|
|
|
}
|
2016-09-05 19:43:56 +03:00
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
private function extractContent($url)
|
|
|
|
{
|
|
|
|
$html = getSimpleHTMLDOMCached($url);
|
|
|
|
if (!$html) {
|
|
|
|
return 'Could not acquire content from url: ' . $url . '!';
|
|
|
|
}
|
2016-07-08 20:06:35 +03:00
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
$content = $html->find('article', 0);
|
|
|
|
if (!$content) {
|
|
|
|
return 'Could not find \'section\'!';
|
|
|
|
}
|
2016-07-08 20:06:35 +03:00
|
|
|
|
2022-07-01 16:10:30 +03:00
|
|
|
$text = preg_replace('#<script(.*?)>(.*?)</script>#is', '', $content->innertext);
|
|
|
|
$text = strip_tags($text, '<p><a><img>');
|
|
|
|
return $text;
|
|
|
|
}
|
2016-08-03 23:39:03 +03:00
|
|
|
}
|