mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-12 19:44:12 +02:00
Reformat codebase v4 (#2872)
Reformat code base to PSR12 Co-authored-by: rssbridge <noreply@github.com>
This commit is contained in:
@@ -1,42 +1,44 @@
|
||||
<?php
|
||||
class ScoopItBridge extends BridgeAbstract {
|
||||
|
||||
const MAINTAINER = 'Pitchoule';
|
||||
const NAME = 'ScoopIt';
|
||||
const URI = 'https://www.scoop.it/';
|
||||
const CACHE_TIMEOUT = 21600; // 6h
|
||||
const DESCRIPTION = 'Returns most recent results from ScoopIt.';
|
||||
class ScoopItBridge extends BridgeAbstract
|
||||
{
|
||||
const MAINTAINER = 'Pitchoule';
|
||||
const NAME = 'ScoopIt';
|
||||
const URI = 'https://www.scoop.it/';
|
||||
const CACHE_TIMEOUT = 21600; // 6h
|
||||
const DESCRIPTION = 'Returns most recent results from ScoopIt.';
|
||||
|
||||
const PARAMETERS = array( array(
|
||||
'u' => array(
|
||||
'name' => 'keyword',
|
||||
'exampleValue' => 'docker',
|
||||
'required' => true
|
||||
)
|
||||
));
|
||||
const PARAMETERS = [ [
|
||||
'u' => [
|
||||
'name' => 'keyword',
|
||||
'exampleValue' => 'docker',
|
||||
'required' => true
|
||||
]
|
||||
]];
|
||||
|
||||
public function collectData(){
|
||||
$this->request = $this->getInput('u');
|
||||
$link = self::URI . 'search?q=' . urlencode($this->getInput('u'));
|
||||
public function collectData()
|
||||
{
|
||||
$this->request = $this->getInput('u');
|
||||
$link = self::URI . 'search?q=' . urlencode($this->getInput('u'));
|
||||
|
||||
$html = getSimpleHTMLDOM($link);
|
||||
$html = getSimpleHTMLDOM($link);
|
||||
|
||||
foreach($html->find('div.post-view') as $element) {
|
||||
$item = array();
|
||||
$item['uri'] = $element->find('a', 0)->href;
|
||||
$item['title'] = preg_replace(
|
||||
'~[[:cntrl:]]~',
|
||||
'',
|
||||
$element->find('div.tCustomization_post_title', 0)->plaintext
|
||||
);
|
||||
foreach ($html->find('div.post-view') as $element) {
|
||||
$item = [];
|
||||
$item['uri'] = $element->find('a', 0)->href;
|
||||
$item['title'] = preg_replace(
|
||||
'~[[:cntrl:]]~',
|
||||
'',
|
||||
$element->find('div.tCustomization_post_title', 0)->plaintext
|
||||
);
|
||||
|
||||
$item['content'] = preg_replace(
|
||||
'~[[:cntrl:]]~',
|
||||
'',
|
||||
$element->find('div.tCustomization_post_description', 0)->plaintext
|
||||
);
|
||||
$item['content'] = preg_replace(
|
||||
'~[[:cntrl:]]~',
|
||||
'',
|
||||
$element->find('div.tCustomization_post_description', 0)->plaintext
|
||||
);
|
||||
|
||||
$this->items[] = $item;
|
||||
}
|
||||
}
|
||||
$this->items[] = $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user