Skip to content

Commit

Permalink
[ScribdBridge] Add bridge (#1391)
Browse files Browse the repository at this point in the history
  • Loading branch information
VerifiedJoseph committed Feb 4, 2020
1 parent 00dbde2 commit 5bd0772
Showing 1 changed file with 83 additions and 0 deletions.
83 changes: 83 additions & 0 deletions bridges/ScribdBridge.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
<?php
class ScribdBridge extends BridgeAbstract {
const NAME = 'Scribd Bridge';
const URI = 'https://www.scribd.com';
const DESCRIPTION = 'Returns documents uploaded by a user.';
const MAINTAINER = 'VerifiedJoseph';
const PARAMETERS = array(array(
'profile' => array(
'name' => 'Profile URL',
'type' => 'text',
'required' => true,
'title' => 'Profile URL. Example: https://www.scribd.com/user/489040929/number10leaks-com',
'exampleValue' => 'https://www.scribd.com/user/'
),
));

const CACHE_TIMEOUT = 3600;

private $profileUrlRegex = '/scribd\.com\/(user\/[0-9]+\/[\w-]+)\/?/';
private $feedName = '';

public function collectData() {

$html = getSimpleHTMLDOM($this->getURI())
or returnServerError('Could not request: ' . $this->getURI());

$header = $html->find('div.header', 0);
$this->feedName = $header->find('a', 0)->plaintext;

foreach($html->find('div.content ul li') as $index => $li) {
$item = array();

$item['title'] = $li->find('div.under_title', 0)->plaintext;
$item['uri'] = $li->find('a', 0)->href;
$item['author'] = $li->find('span.uploader', 0)->plaintext;
//$item['timestamp'] =
$item['uid'] = $li->find('a', 0)->href;

$pageHtml = getSimpleHTMLDOMCached($item['uri'], 3600)
or returnServerError('Could not request: ' . $item['uri']);

$image = $pageHtml->find('meta[property="og:image"]', 0)->content;
$description = $pageHtml->find('meta[property="og:description"]', 0)->content;

foreach ($pageHtml->find('ul.interest_pills li') as $pills) {
$item['categories'][] = $pills->plaintext;
}

$item['content'] = <<<EOD
<p>{$description}<p><p><img src="{$image}"></p>
EOD;

$item['enclosures'][] = $image;

$this->items[] = $item;

if (count($this->items) >= 15) {
break;
}
}
}

public function getName() {

if ($this->feedName) {
return $this->feedName . ' - Scribd';
}

return parent::getName();
}

public function getURI() {

if (!is_null($this->getInput('profile'))) {
preg_match($this->profileUrlRegex, $this->getInput('profile'), $user)
or returnServerError('Could not extract user ID and name from given profile URL.');

return self::URI . '/' . $user[1] . '/uploads';
}

return parent::getURI();
}
}

0 comments on commit 5bd0772

Please sign in to comment.