mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 17:45:40 +03:00
fece9ed344
* [NotAlwaysBridge] add new tags * [NotAlwaysBridge] Remove duplicate header and social meta * [NotAlwaysBridge] Add space to fix lint issues
68 lines
2.2 KiB
PHP
68 lines
2.2 KiB
PHP
<?php
|
|
|
|
class NotAlwaysBridge extends BridgeAbstract
|
|
{
|
|
const MAINTAINER = 'mozes';
|
|
const NAME = 'Not Always family Bridge';
|
|
const URI = 'https://notalwaysright.com/';
|
|
const DESCRIPTION = 'Returns the latest stories';
|
|
const CACHE_TIMEOUT = 1800; // 30 minutes
|
|
|
|
const PARAMETERS = [ [
|
|
'filter' => [
|
|
'type' => 'list',
|
|
'name' => 'Filter',
|
|
'values' => [
|
|
'All' => '',
|
|
'Right' => 'right',
|
|
'Working' => 'working',
|
|
'Romantic' => 'romantic',
|
|
'Related' => 'related',
|
|
'Learning' => 'learning',
|
|
'Hopeless' => 'hopeless',
|
|
'Healthy' => 'healthy',
|
|
'Legal' => 'legal',
|
|
'Friendly' => 'friendly',
|
|
'Unfiltered' => 'unfiltered'
|
|
]
|
|
]
|
|
]];
|
|
|
|
public function getIcon()
|
|
{
|
|
return self::URI . 'favicon_nar.png';
|
|
}
|
|
|
|
public function collectData()
|
|
{
|
|
$html = getSimpleHTMLDOM($this->getURI());
|
|
foreach ($html->find('.post') as $post) {
|
|
#print_r($post);
|
|
$item = [];
|
|
$item['uri'] = $post->find('h1', 0)->find('a', 0)->href;
|
|
$postHeader = $post->find('.post_header', 0);
|
|
$storyContent = $post->find('.storycontent', 0);
|
|
$item['content'] = $postHeader . '<br/><br/>' . $storyContent;
|
|
$item['title'] = $post->find('h1', 0)->find('a', 0)->innertext;
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
|
|
public function getName()
|
|
{
|
|
if (!is_null($this->getInput('filter'))) {
|
|
return $this->getInput('filter') . ' - NotAlways Bridge';
|
|
}
|
|
|
|
return parent::getName();
|
|
}
|
|
|
|
public function getURI()
|
|
{
|
|
if (!is_null($this->getInput('filter'))) {
|
|
return self::URI . $this->getInput('filter') . '/';
|
|
}
|
|
|
|
return parent::getURI();
|
|
}
|
|
}
|