Merge branch 'MangareaderBridge' of https://github.com/logmanoriginal/rss-bridge
This commit is contained in:
commit
c365f35e47
1 changed files with 189 additions and 151 deletions
|
@ -1,6 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
define('MANGAREADER_LIMIT', 10); // The default limit
|
class MangareaderBridge extends BridgeAbstract {
|
||||||
class MangareaderBridge extends BridgeAbstract{
|
|
||||||
|
|
||||||
const MAINTAINER = "logmanoriginal";
|
const MAINTAINER = "logmanoriginal";
|
||||||
const NAME = "Mangareader Bridge";
|
const NAME = "Mangareader Bridge";
|
||||||
|
@ -10,72 +9,72 @@ class MangareaderBridge extends BridgeAbstract{
|
||||||
const PARAMETERS = array(
|
const PARAMETERS = array(
|
||||||
'Get latest updates' => array(),
|
'Get latest updates' => array(),
|
||||||
'Get popular mangas' => array(
|
'Get popular mangas' => array(
|
||||||
'category'=>array(
|
'category' => array(
|
||||||
'name'=>'Category',
|
'name' => 'Category',
|
||||||
'type'=>'list',
|
'type' => 'list',
|
||||||
'required'=>true,
|
'required' => true,
|
||||||
'values'=>array(
|
'values' => array(
|
||||||
'All'=>'all',
|
'All' => 'all',
|
||||||
'Action'=>'action',
|
'Action' => 'action',
|
||||||
'Adventure'=>'adventure',
|
'Adventure' => 'adventure',
|
||||||
'Comedy'=>'comedy',
|
'Comedy' => 'comedy',
|
||||||
'Demons'=>'demons',
|
'Demons' => 'demons',
|
||||||
'Drama'=>'drama',
|
'Drama' => 'drama',
|
||||||
'Ecchi'=>'ecchi',
|
'Ecchi' => 'ecchi',
|
||||||
'Fantasy'=>'fantasy',
|
'Fantasy' => 'fantasy',
|
||||||
'Gender Bender'=>'gender-bender',
|
'Gender Bender' => 'gender-bender',
|
||||||
'Harem'=>'harem',
|
'Harem' => 'harem',
|
||||||
'Historical'=>'historical',
|
'Historical' => 'historical',
|
||||||
'Horror'=>'horror',
|
'Horror' => 'horror',
|
||||||
'Josei'=>'josei',
|
'Josei' => 'josei',
|
||||||
'Magic'=>'magic',
|
'Magic' => 'magic',
|
||||||
'Martial Arts'=>'martial-arts',
|
'Martial Arts' => 'martial-arts',
|
||||||
'Mature'=>'mature',
|
'Mature' => 'mature',
|
||||||
'Mecha'=>'mecha',
|
'Mecha' => 'mecha',
|
||||||
'Military'=>'military',
|
'Military' => 'military',
|
||||||
'Mystery'=>'mystery',
|
'Mystery' => 'mystery',
|
||||||
'One Shot'=>'one-shot',
|
'One Shot' => 'one-shot',
|
||||||
'Psychological'=>'psychological',
|
'Psychological' => 'psychological',
|
||||||
'Romance'=>'romance',
|
'Romance' => 'romance',
|
||||||
'School Life'=>'school-life',
|
'School Life' => 'school-life',
|
||||||
'Sci-Fi'=>'sci-fi',
|
'Sci-Fi' => 'sci-fi',
|
||||||
'Seinen'=>'seinen',
|
'Seinen' => 'seinen',
|
||||||
'Shoujo'=>'shoujo',
|
'Shoujo' => 'shoujo',
|
||||||
'Shoujoai'=>'shoujoai',
|
'Shoujoai' => 'shoujoai',
|
||||||
'Shounen'=>'shounen',
|
'Shounen' => 'shounen',
|
||||||
'Shounenai'=>'shounenai',
|
'Shounenai' => 'shounenai',
|
||||||
'Slice of Life'=>'slice-of-life',
|
'Slice of Life' => 'slice-of-life',
|
||||||
'Smut'=>'smut',
|
'Smut' => 'smut',
|
||||||
'Sports'=>'sports',
|
'Sports' => 'sports',
|
||||||
'Super Power'=>'super-power',
|
'Super Power' => 'super-power',
|
||||||
'Supernatural'=>'supernatural',
|
'Supernatural' => 'supernatural',
|
||||||
'Tragedy'=>'tragedy',
|
'Tragedy' => 'tragedy',
|
||||||
'Vampire'=>'vampire',
|
'Vampire' => 'vampire',
|
||||||
'Yaoi'=>'yaoi',
|
'Yaoi' => 'yaoi',
|
||||||
'Yuri'=>'yuri'
|
'Yuri' => 'yuri'
|
||||||
),
|
),
|
||||||
'exampleValue'=>'All',
|
'exampleValue' => 'All',
|
||||||
'title'=>'Select your category'
|
'title' => 'Select your category'
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
'Get manga updates' => array(
|
'Get manga updates' => array(
|
||||||
'path'=>array(
|
'path' => array(
|
||||||
'name'=>'Path',
|
'name' => 'Path',
|
||||||
'required'=>true,
|
'required' => true,
|
||||||
'pattern'=>'[a-zA-Z0-9-_]*',
|
'pattern' => '[a-zA-Z0-9-_]*',
|
||||||
'exampleValue'=>'bleach, umi-no-kishidan',
|
'exampleValue' => 'bleach, umi-no-kishidan',
|
||||||
'title'=>'URL part of desired manga'
|
'title' => 'URL part of desired manga'
|
||||||
),
|
),
|
||||||
'limit'=>array(
|
'limit' => array(
|
||||||
'name'=>'Limit',
|
'name' => 'Limit',
|
||||||
'type'=>'number',
|
'type' => 'number',
|
||||||
'exampleValue'=>10,
|
'defaultValue' => 10,
|
||||||
'title'=>'Number of items to return [-1 returns all]'
|
'title' => 'Number of items to return [-1 returns all]'
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
private $request='';
|
private $request = '';
|
||||||
|
|
||||||
public function collectData(){
|
public function collectData(){
|
||||||
// We'll use the DOM parser for this as it makes navigation easier
|
// We'll use the DOM parser for this as it makes navigation easier
|
||||||
|
@ -95,7 +94,38 @@ class MangareaderBridge extends BridgeAbstract{
|
||||||
switch($this->queriedContext){
|
switch($this->queriedContext){
|
||||||
case 'Get latest updates':
|
case 'Get latest updates':
|
||||||
$this->request = 'Latest updates';
|
$this->request = 'Latest updates';
|
||||||
|
$this->get_latest_updates($xpath);
|
||||||
|
break;
|
||||||
|
case 'Get popular mangas':
|
||||||
|
// Find manga name within "Popular mangas for ..."
|
||||||
|
$pagetitle = $xpath->query(".//*[@id='bodyalt']/h1")->item(0)->nodeValue;
|
||||||
|
$this->request = substr($pagetitle, 0, strrpos($pagetitle, " -"));
|
||||||
|
$this->get_popular_mangas($xpath);
|
||||||
|
break;
|
||||||
|
case 'Get manga updates':
|
||||||
|
$limit = $this->getInput('limit');
|
||||||
|
if(empty($limit)){
|
||||||
|
$limit = self::PARAMETERS[$this->queriedContext]['limit']['defaultValue'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->request = $xpath->query(".//*[@id='mangaproperties']//*[@class='aname']")
|
||||||
|
->item(0)
|
||||||
|
->nodeValue;
|
||||||
|
|
||||||
|
$this->get_manga_updates($xpath, $limit);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return some dummy-data if no content available
|
||||||
|
if(empty($this->items)){
|
||||||
|
$item = array();
|
||||||
|
$item['content'] = "<p>No updates available</p>";
|
||||||
|
|
||||||
|
$this->items[] = $item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private function get_latest_updates($xpath){
|
||||||
// Query each item (consists of Manga + chapters)
|
// Query each item (consists of Manga + chapters)
|
||||||
$nodes = $xpath->query("//*[@id='latestchapters']/table//td");
|
$nodes = $xpath->query("//*[@id='latestchapters']/table//td");
|
||||||
|
|
||||||
|
@ -108,7 +138,7 @@ class MangareaderBridge extends BridgeAbstract{
|
||||||
|
|
||||||
if (isset($manga) && $chapters->length >= 1){
|
if (isset($manga) && $chapters->length >= 1){
|
||||||
$item = array();
|
$item = array();
|
||||||
$item['uri'] = self::URI. htmlspecialchars($manga->getAttribute('href'));
|
$item['uri'] = self::URI . htmlspecialchars($manga->getAttribute('href'));
|
||||||
$item['title'] = htmlspecialchars($manga->nodeValue);
|
$item['title'] = htmlspecialchars($manga->nodeValue);
|
||||||
|
|
||||||
// Add each chapter to the feed
|
// Add each chapter to the feed
|
||||||
|
@ -118,18 +148,21 @@ class MangareaderBridge extends BridgeAbstract{
|
||||||
if($item['content'] <> ""){
|
if($item['content'] <> ""){
|
||||||
$item['content'] .= "<br>";
|
$item['content'] .= "<br>";
|
||||||
}
|
}
|
||||||
$item['content'] .= "<a href='" .self::URI. htmlspecialchars($chapter->getAttribute('href')) . "'>" . htmlspecialchars($chapter->nodeValue) . "</a>";
|
$item['content'] .=
|
||||||
|
"<a href='"
|
||||||
|
. self::URI
|
||||||
|
. htmlspecialchars($chapter->getAttribute('href'))
|
||||||
|
. "'>"
|
||||||
|
. htmlspecialchars($chapter->nodeValue)
|
||||||
|
. "</a>";
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
}
|
||||||
|
|
||||||
case 'Get popular mangas':
|
|
||||||
$pagetitle = $xpath->query(".//*[@id='bodyalt']/h1")->item(0)->nodeValue;
|
|
||||||
$this->request = substr($pagetitle, 0, strrpos($pagetitle, " -")); // "Popular mangas for ..."
|
|
||||||
|
|
||||||
|
private function get_popular_mangas($xpath){
|
||||||
// Query all mangas
|
// Query all mangas
|
||||||
$mangas = $xpath->query("//*[@id='mangaresults']/*[@class='mangaresultitem']");
|
$mangas = $xpath->query("//*[@id='mangaresults']/*[@class='mangaresultitem']");
|
||||||
|
|
||||||
|
@ -137,53 +170,58 @@ class MangareaderBridge extends BridgeAbstract{
|
||||||
|
|
||||||
// The thumbnail is encrypted in a css-style...
|
// The thumbnail is encrypted in a css-style...
|
||||||
// format: "background-image:url('<the part which is actually interesting>')"
|
// format: "background-image:url('<the part which is actually interesting>')"
|
||||||
$mangaimgelement = $xpath->query(".//*[@class='imgsearchresults']", $manga)->item(0)->getAttribute('style');
|
$mangaimgelement = $xpath->query(".//*[@class='imgsearchresults']", $manga)
|
||||||
|
->item(0)
|
||||||
|
->getAttribute('style');
|
||||||
$thumbnail = substr($mangaimgelement, 22, strlen($mangaimgelement) - 24);
|
$thumbnail = substr($mangaimgelement, 22, strlen($mangaimgelement) - 24);
|
||||||
|
|
||||||
$item = array();
|
$item = array();
|
||||||
$item['title'] = htmlspecialchars($xpath->query(".//*[@class='manga_name']//a", $manga)->item(0)->nodeValue);
|
$item['title'] = htmlspecialchars($xpath->query(".//*[@class='manga_name']//a", $manga)
|
||||||
$item['uri'] = self::URI . $xpath->query(".//*[@class='manga_name']//a", $manga)->item(0)->getAttribute('href');
|
->item(0)
|
||||||
$item['author'] = htmlspecialchars($xpath->query("//*[@class='author_name']", $manga)->item(0)->nodeValue);
|
->nodeValue);
|
||||||
$item['chaptercount'] = $xpath->query(".//*[@class='chapter_count']", $manga)->item(0)->nodeValue;
|
$item['uri'] = self::URI . $xpath->query(".//*[@class='manga_name']//a", $manga)
|
||||||
$item['genre'] = htmlspecialchars($xpath->query(".//*[@class='manga_genre']", $manga)->item(0)->nodeValue);
|
->item(0)
|
||||||
$item['content'] = '<a href="' . $item['uri'] . '"><img src="' . $thumbnail . '" alt="' . $item['title'] . '" /></a><p>' . $item['genre'] . '</p><p>' . $item['chaptercount'] . '</p>';
|
->getAttribute('href');
|
||||||
|
$item['author'] = htmlspecialchars($xpath->query("//*[@class='author_name']", $manga)
|
||||||
|
->item(0)
|
||||||
|
->nodeValue);
|
||||||
|
$item['chaptercount'] = $xpath->query(".//*[@class='chapter_count']", $manga)
|
||||||
|
->item(0)
|
||||||
|
->nodeValue;
|
||||||
|
$item['genre'] = htmlspecialchars($xpath->query(".//*[@class='manga_genre']", $manga)
|
||||||
|
->item(0)
|
||||||
|
->nodeValue);
|
||||||
|
$item['content'] = <<<EOD
|
||||||
|
<a href="{$item['uri']}"><img src="{$thumbnail}" alt="{$item['title']}" /></a>
|
||||||
|
<p>{$item['genre']}</p>
|
||||||
|
<p>{$item['chaptercount']}</p>
|
||||||
|
EOD;
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
|
|
||||||
case 'Get manga updates':
|
|
||||||
$limit = $this->getInput('limit');
|
|
||||||
if(empty($limit)){
|
|
||||||
$limit = MANGAREADER_LIMIT;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->request = $xpath->query(".//*[@id='mangaproperties']//*[@class='aname']")->item(0)->nodeValue;
|
private function get_manga_updates($xpath, $limit){
|
||||||
|
|
||||||
$query = "(.//*[@id='listing']//tr)[position() > 1]";
|
$query = "(.//*[@id='listing']//tr)[position() > 1]";
|
||||||
|
|
||||||
if($limit !== -1){
|
if($limit !== -1){
|
||||||
$query = "(.//*[@id='listing']//tr)[position() > 1][position() > last() - " . $limit . "]";
|
$query = "(.//*[@id='listing']//tr)[position() > 1][position() > last() - {$limit}]";
|
||||||
}
|
}
|
||||||
|
|
||||||
$chapters = $xpath->query($query);
|
$chapters = $xpath->query($query);
|
||||||
|
|
||||||
foreach ($chapters as $chapter){
|
foreach ($chapters as $chapter){
|
||||||
$item = array();
|
$item = array();
|
||||||
$item['title'] = htmlspecialchars($xpath->query("td[1]", $chapter)->item(0)->nodeValue);
|
$item['title'] = htmlspecialchars($xpath->query("td[1]", $chapter)
|
||||||
$item['uri'] = self::URI . $xpath->query("td[1]/a", $chapter)->item(0)->getAttribute('href');
|
->item(0)
|
||||||
$item['timestamp'] = strtotime($xpath->query("td[2]", $chapter)->item(0)->nodeValue);
|
->nodeValue);
|
||||||
|
$item['uri'] = self::URI . $xpath->query("td[1]/a", $chapter)
|
||||||
|
->item(0)
|
||||||
|
->getAttribute('href');
|
||||||
|
$item['timestamp'] = strtotime($xpath->query("td[2]", $chapter)
|
||||||
|
->item(0)
|
||||||
|
->nodeValue);
|
||||||
array_unshift($this->items, $item);
|
array_unshift($this->items, $item);
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Return some dummy-data if no content available
|
|
||||||
if(empty($this->items)){
|
|
||||||
$item = array();
|
|
||||||
$item['content'] = "<p>No updates available</p>";
|
|
||||||
|
|
||||||
$this->items[] = $item;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getURI(){
|
public function getURI(){
|
||||||
|
|
Loading…
Reference in a new issue