Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create ScoopItBridge.php #2

Open
wants to merge 1 commit into
base: patch-12
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions bridges/ScoopItBridge.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?php
/**
* RssBridgeScoopIt
* Search DScoopIt for most recent pages regarding a specific topic.
* Returns the most recent links in results, sorting by date (most recent first).
* 2014-06-13
*
* @name ScoopIt
* @homepage http://www.scoop.it
* @description Returns most recent results from ScoopIt.
* @maintainer Pitchoule
* @use1(u="keyword")
*/
class ScoopItBridge extends BridgeAbstract{

public function collectData(array $param){
$html = '';
$this->request = $param['u'];
$link = 'http://scoop.it/search?q=' .urlencode($this->request);

$html = file_get_html($link) or $this->returnError('Could not request ScoopIt. for : ' . $link , 404);

foreach($html->find('div.post-view') as $element) {
$item = new Item();
$item->uri = $element->find('a', 0)->href;
$item->title = $element->find('div.tCustomization_post_title',0)->innertext;
$item->content = $element->find('div.tCustomization_post_description', 0)->plaintext;
$this->items[] = $item;
}
}

public function getName(){
return 'ScooptIt';
}

public function getURI(){
return 'http://Scoop.it';
}

public function getCacheDuration(){
return 21600; // 6 hours
}
}