Fix the TFD filter and add Married to the sea
This commit is contained in:
parent
78fee22415
commit
32024bdf21
|
@ -2,11 +2,12 @@
|
||||||
class Af_Comics_Tfd extends Af_ComicFilter {
|
class Af_Comics_Tfd extends Af_ComicFilter {
|
||||||
|
|
||||||
function supported() {
|
function supported() {
|
||||||
return array("Toothpaste For Dinner");
|
return array("Toothpaste For Dinner", "Married to the Sea");
|
||||||
}
|
}
|
||||||
|
|
||||||
function process(&$article) {
|
function process(&$article) {
|
||||||
if (strpos($article["link"], "toothpastefordinner.com") !== FALSE) {
|
if (strpos($article["link"], "toothpastefordinner.com") !== FALSE ||
|
||||||
|
strpos($article["link"], "marriedtothesea.com") !== FALSE) {
|
||||||
$res = fetch_file_contents($article["link"], false, false, false,
|
$res = fetch_file_contents($article["link"], false, false, false,
|
||||||
false, false, 0,
|
false, false, 0,
|
||||||
"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)");
|
"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)");
|
||||||
|
@ -14,13 +15,13 @@ class Af_Comics_Tfd extends Af_ComicFilter {
|
||||||
if (!$res) return $article;
|
if (!$res) return $article;
|
||||||
|
|
||||||
$doc = new DOMDocument();
|
$doc = new DOMDocument();
|
||||||
$doc->loadHTML($res);
|
@$doc->loadHTML(fetch_file_contents($article["link"]));
|
||||||
|
|
||||||
$basenode = false;
|
$basenode = false;
|
||||||
|
|
||||||
if ($doc) {
|
if ($doc) {
|
||||||
$xpath = new DOMXPath($doc);
|
$xpath = new DOMXPath($doc);
|
||||||
$basenode = $xpath->query('//img[@class="comic"]')->item(0);
|
$basenode = $xpath->query('//img[contains(@src, ".gif")]')->item(0);
|
||||||
|
|
||||||
if ($basenode) {
|
if ($basenode) {
|
||||||
$article["content"] = $doc->saveXML($basenode);
|
$article["content"] = $doc->saveXML($basenode);
|
||||||
|
|
Loading…
Reference in New Issue